/* Wiki Page Specific Styles */
:root {
    --primary-color: #7FB3D5;
    --secondary-color: #82E0AA;
    --accent-color: #D7BDE2;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #F0F6FC;
    --bg-primary: #0D1117;
    --bg-secondary: #161B22;
    --card-bg: #21262D;
    --border-color: #30363D;
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0D1117 50%, var(--bg-secondary) 100%);
    overflow-x: hidden;
}

/* Header Styles - Matching index.html */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background:
        rgba(13, 17, 23, 0.96),
        url('VRChat-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(127, 179, 213, 0.4);
    z-index: 1000;
    transition: var(--transition);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(127, 179, 213, 0.05), transparent, rgba(127, 179, 213, 0.05));
    pointer-events: none;
}

[data-theme="dark"] .header {
    background:
        rgba(13, 17, 23, 0.95),
        url('https://i0.wp.com/www.oqplay.com/wp-content/uploads/2019/03/VRChat-banner.jpg?fit=1024%2C341&ssl=1');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(48, 54, 61, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nav-logo a {
    text-decoration: none;
}

.nav-logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
    margin: 0;
}

.nav-logo h1:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.nav-logo .fa-magic {
    color: var(--primary-color);
    animation: magic-glow 2s ease-in-out infinite alternate;
}

.nav-subtitle {
    font-size: 0.75rem;
    color: #FFD700;
    font-weight: 500;
    margin-left: 6px;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 16px;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@keyframes magic-glow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(127, 179, 213, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(127, 179, 213, 0.8));
    }
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Wiki Hero Section */
.wiki-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.wiki-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.1) 0%, transparent 50%);
    animation: wiki-float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes wiki-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, 25px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(15px, -15px) rotate(270deg);
        opacity: 0.9;
    }
}

.wiki-hero-container {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wiki-hero-content {
    position: relative;
    z-index: 3;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.wiki-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: title-shine 3s ease-in-out infinite alternate;
}

@keyframes title-shine {
    from {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    to {
        text-shadow: 0 4px 12px rgba(255, 255, 255, 0.1), 0 0 20px rgba(127, 179, 213, 0.2);
    }
}

.wiki-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.wiki-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wiki-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vrchat-banner-hero {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: var(--transition-fast);
}

.vrchat-banner-hero:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.vrchat-banner-hero-img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 500px;
}

.wiki-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: blur(1px);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Featured Mods Section */
.featured-mods {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.featured-mods::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.mod-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.mod-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(2deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(127, 179, 213, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mod-link {
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.mod-link:hover {
    text-decoration: none;
}

.mod-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.wiki-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: badge-pulse-wiki 2s ease-in-out infinite;
    margin-bottom: 2rem;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badge-pulse-wiki {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
        transform: scale(1.05);
    }
}

.mod-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(127, 179, 213, 0.3);
}

.mod-card.featured .mod-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}

.mod-card.featured {
    background: linear-gradient(135deg, rgba(127, 179, 213, 0.15), rgba(130, 224, 170, 0.12));
    border: 2px solid rgba(127, 179, 213, 0.3);
    box-shadow:
        0 10px 30px rgba(127, 179, 213, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.mod-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.mod-card.featured:hover {
    box-shadow:
        0 25px 50px rgba(127, 179, 213, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) scale(1.02);
}

.mod-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.mod-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.mod-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin: 0.25rem;
}

.btn-mod, .btn-mod-outline {
    width: 100%;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-mod {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(127, 179, 213, 0.3);
}

.btn-mod:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 179, 213, 0.4);
}

.btn-mod-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-mod-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.mod-preview {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mod-link:hover .mod-preview {
    opacity: 1;
}

.card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.video-overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: 18px;
}

.play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(127, 179, 213, 0.4);
    animation: pulse-play 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.play-indicator i {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-left: 4px;
    filter: drop-shadow(0 0 4px rgba(127, 179, 213, 0.6));
}

.play-indicator::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: ring-pulse 2s ease-in-out infinite;
}

@keyframes pulse-play {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    }
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* Categories Section */
.mod-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.category-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 6px 15px rgba(127, 179, 213, 0.3);
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.category-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(127, 179, 213, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(127, 179, 213, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .wiki-hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .wiki-header h1 {
        font-size: 2.8rem;
    }

    .wiki-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .mods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mod-card {
        padding: 1.5rem;
    }
}

/* Ultra Modern Enhancements for wiki.html */
[data-theme="dark"] body {
    background: linear-gradient(135deg, #0D1117 0%, #161B22 50%, #0F0F0F 100%);
}

/* Ultra Modern Section Backgrounds */
.wiki-hero, .featured-mods, .mod-categories {
    position: relative;
    overflow: hidden;
}

.wiki-hero::before, .featured-mods::before, .mod-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(127, 179, 213, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(130, 224, 170, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(215, 189, 226, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Ultra Modern Card Effects */
.mod-card, .category-card {
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.mod-card:hover, .category-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(127, 179, 213, 0.1) !important;
}

/* Ultra Modern Button Effects */
.btn-mod, .btn-mod-outline {
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.btn-mod::before, .btn-mod-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-mod:hover::before, .btn-mod-outline:hover::before {
    left: 100%;
}

/* Ultra Modern Animations */
@keyframes float-wiki {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mod-card:nth-child(odd) {
    animation: float-wiki 6s ease-in-out infinite;
}

.mod-card:nth-child(even) {
    animation: float-wiki 6s ease-in-out infinite reverse;
}

.category-card:nth-child(odd) {
    animation: float-wiki 8s ease-in-out infinite;
}

.category-card:nth-child(even) {
    animation: float-wiki 8s ease-in-out infinite reverse;
}

/* Ultra Modern Glassmorphism */
.mod-card, .category-card {
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Ultra Modern Text Effects */
.wiki-hero h1, .section-header h2 {
    position: relative;
    z-index: 1;
}

.wiki-hero h1::after, .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Ultra Modern Hover Effects */
.mod-card, .category-card {
    cursor: pointer;
}

.mod-card::before, .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.mod-card:hover::before, .category-card:hover::before {
    opacity: 1;
}

/* Ultra Modern Badge Effects */
.wiki-badge {
    position: relative;
    overflow: hidden;
}

.wiki-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.wiki-badge:hover::before {
    left: 100%;
}

/* Ultra Modern Particle Effects */
.wiki-hero::after, .featured-mods::after, .mod-categories::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particles-float 25s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes particles-float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100px, -100px);
    }
}

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vrchat-banner-hero {
        transform: none;
    }

    .vrchat-banner-hero-img {
        max-width: 100%;
    }
}

/* Particle Effects */
.wiki-hero::after,
.showcase-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: particles-float 25s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes particles-float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100px, -100px);
    }
}

/* Button Effects */
.btn-mod, .btn-mod-outline, .btn-primary-large, .btn-secondary-large {
    position: relative;
    overflow: hidden;
}

.btn-mod::before, .btn-mod-outline::before, .btn-primary-large::before, .btn-secondary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-mod:hover::before, .btn-mod-outline:hover::before, .btn-primary-large:hover::before, .btn-secondary-large:hover::before {
    left: 100%;
}

/* Comparison Section */
.comparison {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.comparison-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    gap: 1.5rem;
}

.comparison-feature {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.feature-label {
    font-weight: 600;
    color: white;
}

.comparison-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-fill.standard {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.bar-fill.vrmodding {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.comparison-values {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 40px;
}

.standard-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.vrmodding-value {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.standard {
    background: linear-gradient(90deg, #ff6b6b, #ee5a52);
}

.legend-color.vrmodding {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.legend-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}




    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.user-label {
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.optimization-arrow {
    text-align: center;
    margin: 2rem 0;
}

.optimization-arrow i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.arrow-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.schematic-server {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.server-stack {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.server-unit {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
}

.server-unit i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.server-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.server-label-main {
    font-weight: 700;
    color: white;
    text-align: center;
}

.result-arrow {
    text-align: center;
    margin: 2rem 0;
}

.result-arrow i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.schematic-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vrchat-optimized {
    text-align: center;
    margin-bottom: 1rem;
}

.vrchat-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.vrchat-icon i {
    color: var(--primary-color);
}

.optimization-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge i {
    color: var(--primary-color);
}

.result-label {
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.schematic-description {
    margin-top: 2rem;
    text-align: center;
}

.schematic-description h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.schematic-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Modern Animations */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(127, 179, 213, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(127, 179, 213, 0.4);
    }
}

/* Enhanced Buttons */
.btn {
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(127, 179, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(127, 179, 213, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}




/* Comparison Section */
.comparison {
    padding: 120px 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(10, 10, 10, 0.85) 100%),
        url('VRChat-banner.webp') center/cover no-repeat,
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    background-blend-mode: multiply, screen, normal;
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.comparison-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.comparison-cards {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    min-width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(127, 179, 213, 0.2);
}

.comparison-card.standard {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-card.premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 10px 30px rgba(255, 215, 0, 0.1),
        0 0 20px rgba(255, 215, 0, 0.05);
}

.comparison-card.premium:hover {
    box-shadow:
        0 30px 60px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.15);
}

.card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(127, 179, 213, 0.3);
}

.comparison-card.premium .card-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.card-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 1.5s ease-out;
}

.stat-fill.premium {
    background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    align-self: flex-end;
}

.vs-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(127, 179, 213, 0.3),
        0 0 0 3px rgba(255, 255, 255, 0.1);
    position: relative;
}

.vs-circle span {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vs-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    position: relative;
}

.vs-line::before,
.vs-line::after {
    content: '';
    position: absolute;
    left: -4px;
    width: 10px;
    height: 2px;
    background: var(--primary-color);
}

.vs-line::before {
    top: 20px;
}

.vs-line::after {
    bottom: 20px;
}

.premium-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 27px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.comparison-card.premium:hover .premium-glow {
    opacity: 0.2;
}

.comparison-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.comparison-metrics .metric-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    margin-top: 2rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.metric-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.metric-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-values {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.metric-standard,
.metric-premium {
    font-size: 1.2rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
}

.metric-standard {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.metric-premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Footer */
.footer {
    background:
        linear-gradient(135deg, rgba(13, 17, 23, 0.85) 0%, rgba(22, 27, 34, 0.8) 100%),
        url('wallpaper.jpg') center/cover no-repeat,
        url('wallpaper2.jpg') center/cover no-repeat;
    background-blend-mode: multiply, screen, normal;
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(13, 17, 23, 0.8) 0%, rgba(22, 27, 34, 0.6) 30%, transparent 70%, rgba(13, 17, 23, 0.8) 100%),
        radial-gradient(circle at 30% 70%, rgba(127, 179, 213, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(130, 224, 170, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 6px);
    animation: pattern-flow 20s linear infinite;
    z-index: 0;
}

@keyframes pattern-flow {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-logo .fa-vr-cardboard {
    color: var(--primary-color);
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 8px rgba(127, 179, 213, 0.5));
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-section a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.footer-section a:hover::before {
    opacity: 1;
    left: -20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(13, 17, 23, 0.9) 0%, rgba(22, 27, 34, 0.8) 50%, rgba(15, 15, 15, 0.9) 100%),
        url('wallpaper2.jpg') center/cover no-repeat,
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, #0F0F0F 100%);
    background-blend-mode: multiply, normal, normal;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    align-items: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-title-main {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-title-sub {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 71, 87, 0.2), rgba(255, 87, 87, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    animation: pulse-glow 3s ease-in-out infinite;
}

.nsfw-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff4757;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.feature-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
}

.feature-modern:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-modern i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-modern span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.hero-link:hover {
    color: #ffffff;
}

.hero-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.hero-link:hover::after {
    width: 100%;
}

.link-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.hero-buttons .btn {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.hero-buttons .btn:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card.top-left {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-card.top-right {
    top: 15%;
    right: 8%;
    animation-delay: 1.5s;
}

.floating-card.bottom-left {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

.floating-card.bottom-right {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

.floating-card.center-main {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.5s;
    z-index: 3;
}

.character-card.small {
    width: 160px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: var(--transition-fast);
}

.character-card.small:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-3deg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(127, 179, 213, 0.3);
}

.character-card.premium.featured {
    width: 280px;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 215, 0, 0.2),
        0 0 40px rgba(255, 215, 0, 0.1);
    transform-style: preserve-3d;
    transition: var(--transition-smooth);
}

.character-card.premium.featured:hover {
    transform: translateY(-20px) scale(1.05) rotateX(2deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(255, 215, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.character-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: var(--transition-fast);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
}

.character-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.character-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-fast);
}

.character-card:hover .character-img {
    transform: scale(1.05);
}

.character-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        transparent 100%);
    padding: 3rem 1rem 1rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.character-card:hover .character-overlay {
    opacity: 1;
}

.character-label {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.character-label.premium {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.character-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.nsfw-label {
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.character-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border-radius: 27px;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.character-card.premium:hover .character-glow {
    opacity: 0.3;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(127, 179, 213, 0.03) 0%, transparent 50%);
    animation: hero-float 30s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    animation: pattern-shift 20s linear infinite;
    opacity: 0.3;
}

@keyframes pattern-shift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

@keyframes hero-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-30px, 40px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(25px, -25px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

    .nsfw-icon {
        width: 16px;
        height: 16px;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    .hero-features-modern {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .feature-modern {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .feature-modern i {
        font-size: 0.9rem;
    }

    .feature-modern span {
        font-size: 0.8rem;
    }

    .character-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }

    .character-card.featured {
        grid-column: auto;
        max-width: none;
    }

    .character-img {
        width: 140px;
        height: 210px;
    }

    .comparison-item {
        padding: 2rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-feature {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .comparison-bar {
        order: -1;
        width: 100%;
        height: 16px;
    }

    .comparison-values {
        justify-content: center;
        order: -1;
    }

    .comparison-legend {
        gap: 2rem;
    }


    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .comparison-cards {
        flex-direction: column;
        gap: 3rem;
    }

    .vs-indicator {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        justify-content: center;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
    }

    .vs-circle span {
        font-size: 1rem;
    }

    .vs-line {
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    }

    .vs-line::before,
    .vs-line::after {
        top: -4px;
        left: auto;
        width: 2px;
        height: 10px;
        right: 20px;
    }

    .vs-line::after {
        right: auto;
        left: 20px;
    }

    .comparison-metrics {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-metrics .metric-item:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }

    .metric-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .metric-values {
        justify-content: center;
    }

    .comparison-item {
        padding: 1.5rem;
    }


    .character-card.small {
        width: 120px;
        height: 160px;
    }

    .character-card.premium.featured {
        width: 200px;
        height: 280px;
    }

    .floating-card.top-left,
    .floating-card.top-right,
    .floating-card.bottom-left,
    .floating-card.bottom-right {
        position: static;
        animation: none;
    }

    .floating-elements {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        height: auto;
        padding: 2rem;
    }

    .floating-card.center-main {
        grid-column: 1 / -1;
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
    }


    .cta-stats {
        gap: 2rem;
    }

    .cta-stats .stat-number {
        font-size: 2rem;
    }
}
