:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f7;
    --bg-tertiary: #e8e8ed;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --text-tertiary: #515154;
    --accent: #00CED1;
    --accent-hover: #40E0D0;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: rgba(0, 0, 0, 0.1);
    --header-bg: rgba(255, 255, 255, 0.72);
    --card-bg: #ffffff;
    --gradient-start: #00FFFF;
    --gradient-end: #00CED1;
}

[data-theme="dark"] {
    --bg-primary: #000000;
    --bg-secondary: #1d1d1f;
    --bg-tertiary: #2d2d2d;
    --text-primary: #f5f5f7;
    --text-secondary: #86868b;
    --text-tertiary: #a1a1a6;
    --accent: #00FFFF;
    --accent-hover: #40E0D0;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.3);
    --header-bg: rgba(0, 0, 0, 0.72);
    --card-bg: #1d1d1f;
    --gradient-start: #00FFFF;
    --gradient-end: #00CED1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 980px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 24px var(--shadow);
}

.purchase-notification {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 999;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 980px;
    padding: 8px 20px 8px 8px;
    box-shadow: 0 4px 24px var(--shadow);
    transform: translateX(150%) scale(0.8);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    overflow: hidden;
}

.purchase-notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.notification-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--gradient-start), transparent 70%);
    opacity: 0.1;
    pointer-events: none;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.notification-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 2px;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.notification-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.notification-badge {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 2px 6px;
    border-radius: 980px;
    letter-spacing: 0.5px;
}

.notification-details {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
}

.notification-action {
    color: var(--text-secondary);
}

.notification-item {
    font-weight: 600;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    width: 0%;
    transition: width 4s linear;
}

.purchase-notification.show .notification-progress {
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 6px 12px;
    border-radius: 980px;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    min-width: 200px;
    box-shadow: 0 8px 32px var(--shadow);
    padding: 8px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
    animation: dropdownFadeIn 0.2s ease forwards;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-link {
    display: block;
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-link:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-secondary);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
}

.icon-sun,
.icon-moon {
    transition: opacity 0.2s ease;
}

[data-theme="dark"] .icon-sun {
    display: none;
}

[data-theme="light"] .icon-moon,
:root:not([data-theme]) .icon-moon {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: scale(1.02);
}

.btn-animated {
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.btn-animated .btn-text {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-animated.switching .btn-text {
    transform: translateY(-100%);
    opacity: 0;
}

.btn-animated.switching-in .btn-text {
    transform: translateY(0);
    opacity: 1;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 17px;
}

.hero-wrapper {
    position: relative;
    height: 400vh;
}

.hero {
    position: sticky;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    perspective: 1000px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    transition: transform 0.05s linear, opacity 0.05s linear;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--gradient-start), transparent),
                radial-gradient(ellipse 60% 40% at 80% 60%, var(--gradient-end), transparent);
    opacity: 0.15;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

[data-theme="dark"] .hero-noise {
    opacity: 0.05;
}

[data-theme="dark"] .hero-gradient {
    opacity: 0.25;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #30d158;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(180deg, var(--text-primary) 0%, var(--text-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.server-ip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.ip-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.ip-address {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    font-family: 'SF Mono', SFMono-Regular, ui-monospace, monospace;
}

.copy-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: var(--accent);
    color: #ffffff;
}

.copy-btn.copied {
    background: #30d158;
    color: #ffffff;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-row {
    display: flex;
    align-items: baseline;
}

.hero-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.hero-stat-suffix {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    font-size: 24px;
    color: var(--border);
    font-weight: 300;
}

.explore-more {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.explore-more:hover {
    color: var(--text-primary);
}

.explore-text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.explore-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

.stats {
    padding: 80px 24px;
    background: var(--bg-secondary);
}

.features {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 120px 24px;
    background: transparent;
    z-index: 10;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.05s linear, opacity 0.05s linear;
    will-change: transform, opacity;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.05s linear, opacity 0.05s linear;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.features-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.features-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animate-in {
    animation: featureSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.2s; }
.feature-card:nth-child(4) { animation-delay: 0.3s; }
.feature-card:nth-child(5) { animation-delay: 0.4s; }
.feature-card:nth-child(6) { animation-delay: 0.5s; }

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--gradient-start), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 0.15;
}

.feature-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.feature-card:hover .feature-shine {
    animation: shine 0.6s ease-out;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) translateZ(20px);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.4);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features {
        padding: 80px 16px;
    }
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--shadow);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    display: inline;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 16px 60px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .server-ip {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        max-width: 300px;
    }
    
    .stats {
        padding: 60px 16px;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

.store {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 120px 24px;
    background: transparent;
    z-index: 20;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.1s linear, opacity 0.1s linear;
    will-change: transform, opacity;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 4px 24px var(--shadow);
    transition: transform 0.1s linear, opacity 0.1s linear;
    will-change: transform, opacity;
    transform-style: preserve-3d;
}

.store-header {
    text-align: center;
    margin-bottom: 64px;
}

.store-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.store-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.store-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.store-additional {
    font-size: 15px;
    color: var(--text-tertiary);
    max-width: 500px;
    margin: 12px auto 0;
    font-style: italic;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.store-card {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.store-card.featured {
    border-color: var(--gradient-start);
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.2);
}

.store-card:hover {
    box-shadow: 0 20px 40px var(--shadow);
}

.store-popular {
    z-index: 1111231132131;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 980px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.store-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--gradient-start), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.store-card:hover .store-glow {
    opacity: 0.15;
}

.store-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.store-card:hover .store-shine {
    animation: shine 0.6s ease-out;
}

.store-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 16px;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover .store-icon {
    transform: scale(1.1) translateZ(20px);
    box-shadow: 0 12px 32px rgba(56, 189, 248, 0.4);
}

.store-rank {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.store-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.store-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.store-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.store-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

@media (max-width: 1024px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
    
    .store {
        padding: 80px 16px;
    }
}

.community {
    position: sticky;
    top: 0;
    min-height: 100vh;
    padding: 120px 24px;
    background: transparent;
    z-index: 30;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.1s linear, opacity 0.1s linear;
    will-change: transform, opacity;
}

.community-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 4px 24px var(--shadow);
}

.community-header {
    text-align: center;
    margin-bottom: 64px;
}

.community-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--header-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.community-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.community-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.community-grid .community-card:nth-child(4),
.community-grid .community-card:nth-child(5) {
    grid-column: span 1;
}

.community-grid .community-card:nth-child(4) {
    margin-left: auto;
    margin-right: 12px;
}

.community-grid .community-card:nth-child(5) {
    margin-left: 12px;
    margin-right: auto;
}

.community-card {
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    display: block;
}

.community-card:hover {
    box-shadow: 0 20px 40px var(--shadow);
}

.community-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--gradient-start), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.community-card:hover .community-glow {
    opacity: 0.15;
}

.community-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    pointer-events: none;
}

.community-card:hover .community-shine {
    animation: shine 0.6s ease-out;
}

.community-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: 0 auto 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.community-icon.discord {
    background: #5865F2;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.3);
}

.community-icon.twitter {
    background: #000000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .community-icon.twitter {
    background: #ffffff;
    color: #000000;
}

.community-icon.youtube {
    background: #FF0000;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.3);
}

.community-icon.wiki {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.3);
}

.community-icon.rules {
    background: linear-gradient(135deg, #FF6B00, #FF8C00);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.community-card:hover .community-icon {
    transform: scale(1.1) translateZ(20px);
}

.community-card:hover .community-icon.discord {
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.4);
}

.community-card:hover .community-icon.twitter {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.community-card:hover .community-icon.youtube {
    box-shadow: 0 12px 32px rgba(255, 0, 0, 0.4);
}

.community-card:hover .community-icon.wiki {
    box-shadow: 0 12px 32px rgba(0, 255, 0, 0.4);
}

.community-card:hover .community-icon.rules {
    box-shadow: 0 12px 32px rgba(255, 107, 0, 0.4);
}

.community-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.community-card-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-members {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-tertiary);
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .community {
        padding: 80px 16px;
    }
}