/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Global Link Styles */
a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e3d72;
}

a:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin: 0 0.8rem;
    color: #6c757d;
    font-size: 1.1rem;
}

.breadcrumb-list a {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #1e3d72;
    text-decoration: underline;
}

.breadcrumb-list [aria-current="page"] {
    color: #6c757d;
    font-size: 0.9rem;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
}

.main-nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2c5aa0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 2px 0;
    transition: 0.3s;
}

/* Domain Notice */
.domain-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

.domain-notice h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.domain-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem 2rem;
    margin: 1rem auto;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.domain-url {
    font-weight: 500;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.access-btn {
    background: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.access-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

.access-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.access-btn:active {
    transform: translateY(0);
}

.update-text {
    margin: 1rem 0;
    opacity: 0.9;
}

.follow-text {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.discord:hover {
    background: #7289da;
}

.social-link.website:hover {
    background: rgba(255, 255, 255, 0.4);
}

.social-link i {
    font-size: 1rem;
}

/* Manga Updates */
.manga-updates {
    padding: 3rem 0;
    background: #f8f9fa;
}

.manga-updates h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.manga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.manga-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.manga-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.manga-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.manga-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.manga-info {
    padding: 1rem;
}

.manga-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
    transition: color 0.3s ease;
}

.manga-card:hover .manga-info h3 {
    color: #2c5aa0;
}

.manga-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Why Love Section */
.why-love {
    padding: 4rem 0;
}

.why-love h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Popular Genres */
.popular-genres {
    padding: 4rem 0;
    background: #f8f9fa;
}

.popular-genres h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.genres-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.genres-list {
    display: grid;
    gap: 1.5rem;
}

.genre-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.genre-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5aa0;
}

.genre-item h3 a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.genre-item h3 a:hover {
    color: #1e3d72;
    text-decoration: underline;
}

.genre-item p {
    color: #666;
}

.genres-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Exclusive Experiences */
.exclusive-experiences {
    padding: 4rem 0;
}

.exclusive-experiences h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.exclusive-experiences > div > p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.experiences-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experiences-list h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.experiences-list ul {
    list-style: none;
    margin-bottom: 2rem;
}

.experiences-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
}

.experiences-list li::before {
    content: "•";
    color: #2c5aa0;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    color: #fff;
    position: relative;
    text-align: center;
}

.featured-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.featured-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-shadow: none;
}

/* Stands Out */
.stands-out {
    padding: 4rem 0;
    background: #f8f9fa;
}

.stands-out h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.stands-out-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.stands-out-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.stands-out-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Ideal Destination */
.ideal-destination {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.ideal-destination h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.ideal-destination p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

/* FAQs */
.faqs {
    padding: 4rem 0;
}

.faqs h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #2c5aa0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

.faq-answer a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #1e3d72;
    border-bottom-color: #2c5aa0;
    text-decoration: none;
}

.faq-answer a:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-nav {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .social-links {
        gap: 2rem;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .manga-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1000px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .genres-content,
    .stands-out-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .genres-image {
        order: -1;
    }
    
    .manga-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .domain-box {
        flex-direction: column;
        gap: 1rem;
    }
    
    .access-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 8px;
        text-align: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-links {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .experiences-content {
        padding: 2rem 1.5rem;
    }
    
    .featured-content h2 {
        font-size: 2rem;
    }
    
    .featured-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .featured-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .manga-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .manga-card img {
        height: 200px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}