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

:root {
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --background: #0a0e1a;
    --text-primary: #ffffff;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-cyan: rgba(0, 212, 255, 0.3);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

/* Hero Background Video */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(2px);
    z-index: 1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    background: rgba(10, 14, 26, 0.4);
    z-index: 2;
}

.background-image {
    position: absolute;
    inset: 0;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: 0;
}

.background-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
    background: rgba(10, 14, 26, 0.6);
    z-index: 2;
}

/* Glow Effects */
.glow-effects {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.glow {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(120px);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.glow-top {
    top: 0;
    left: 25%;
    background: var(--primary-color);
}

.glow-bottom {
    bottom: 0;
    right: 25%;
    background: var(--primary-color);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.15; }
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.nav-wrapper {
    position: relative;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-glow {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(to right, rgba(0, 212, 255, 0.05), transparent, rgba(0, 212, 255, 0.05));
}

.nav-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 60px;
    width: auto;
}

.nav-items {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .nav-items.desktop-nav {
        display: flex;
    }
}

.nav-item {
    position: relative;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    background: transparent;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.nav-item:hover {
    color: var(--primary-color);
    background: var(--bg-glass-hover);
    border-color: var(--border-cyan);
}

.nav-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(4px);
}

.nav-item:hover::before {
    opacity: 1;
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
    background: var(--bg-glass-hover);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.mobile-nav-item:hover {
    color: var(--primary-color);
    background: var(--bg-glass-hover);
    border-color: var(--border-cyan);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
}

.hero-logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 256px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
    animation: scaleIn 0.8s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 768px) {
    .hero-logo {
        width: 320px;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        width: 384px;
    }
}

.hero-tagline {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 3rem;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
}

.highlight {
    color: var(--primary-color);
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.cta-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.cta-button:hover::after {
    opacity: 0.2;
}

.cta-button .icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

.stat-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: background 0.3s, box-shadow 0.3s;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.stat-text {
    color: var(--primary-color);
}

.stat-icon-small {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    cursor: pointer;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    animation: bounce 2s infinite;
    padding: 0.75rem;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateX(-50%) translateY(-5px) scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.scroll-indicator:active {
    transform: translateX(-50%) translateY(0) scale(1.05);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-indicator:hover .scroll-icon {
    opacity: 1;
    transform: translateY(2px);
}

/* Section Styles */
section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: #9ca3af;
    font-size: 1rem;
}

/* Server Monitor Section */
.server-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .server-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .server-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.server-stat-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    overflow: hidden;
}

.server-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.server-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.server-stat-card:hover::before {
    opacity: 1;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.stat-icon-green {
    background: rgba(74, 222, 128, 0.1);
}

.stat-icon-cyan {
    background: rgba(0, 212, 255, 0.1);
}

.stat-icon-purple {
    background: rgba(192, 132, 252, 0.1);
}

.stat-icon-yellow {
    background: rgba(250, 204, 21, 0.1);
}

.stat-icon-red {
    background: rgba(239, 68, 68, 0.1);
}

.stat-icon {
    width: 24px;
    height: 24px;
}

.stat-icon-green .stat-icon {
    color: #4ade80;
}

.stat-icon-cyan .stat-icon {
    color: var(--primary-color);
}

.stat-icon-purple .stat-icon {
    color: #c084fc;
}

.stat-icon-yellow .stat-icon {
    color: #facc15;
}

.stat-icon-red .stat-icon {
    color: #ef4444;
}

.stat-info {
    position: relative;
    z-index: 10;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 768px) {
    .stat-value {
        font-size: 1.25rem;
    }
}

.stat-value-green {
    color: #4ade80;
}

.stat-value-cyan {
    color: var(--primary-color);
}

.stat-value-purple {
    color: #c084fc;
}

.stat-value-yellow {
    color: #facc15;
}

.stat-value-red {
    color: #ef4444;
}

.stat-corner-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    filter: blur(32px);
}

.stat-corner-green {
    background: rgba(74, 222, 128, 0.1);
}

.stat-corner-cyan {
    background: rgba(0, 212, 255, 0.1);
}

.stat-corner-purple {
    background: rgba(192, 132, 252, 0.1);
}

.stat-corner-yellow {
    background: rgba(250, 204, 21, 0.1);
}

.stat-corner-red {
    background: rgba(239, 68, 68, 0.1);
}

/* Updates Section */
.updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .updates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.update-card {
    position: relative;
    height: 100%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-cyan);
}

.update-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.update-card:hover::before {
    opacity: 1;
}

.update-category {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-cyan);
    margin-bottom: 1rem;
    width: fit-content;
}

.category-icon {
    width: 12px;
    height: 12px;
    color: var(--primary-color);
}

.update-category span {
    font-size: 0.75rem;
    color: var(--primary-color);
}

.update-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    transition: color 0.3s;
    position: relative;
    z-index: 10;
}

.update-card:hover .update-title {
    color: var(--primary-color);
}

.update-description {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    flex-grow: 1;
    position: relative;
    z-index: 10;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.date-icon {
    width: 16px;
    height: 16px;
}

.update-corner-glow {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 96px;
    height: 96px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0;
    transition: opacity 0.3s;
}

.update-card:hover .update-corner-glow {
    opacity: 1;
}

/* Community Section */
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.community-card {
    position: relative;
    display: block;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
}

.community-card:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.community-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--bg-glass);
    margin: 0 auto 1rem;
    transition: background 0.3s;
}

.community-card:hover .community-icon-wrapper {
    background: var(--bg-glass-hover);
}

.community-icon {
    width: 32px;
    height: 32px;
    color: var(--text-primary);
    transition: color 0.3s;
}

.community-icon-svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, opacity 0.3s;
}

.community-card:hover .community-icon {
    color: var(--primary-color);
}

.community-card:hover .community-icon-svg {
    transform: scale(1.1);
    opacity: 0.9;
}

.community-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.community-description {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.community-members {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.community-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
    filter: blur(32px);
    pointer-events: none;
}

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

.community-glow-discord {
    box-shadow: inset 0 0 60px rgba(88, 101, 242, 0.3);
}

.community-glow-youtube {
    box-shadow: inset 0 0 60px rgba(255, 0, 0, 0.3);
}

.community-glow-instagram {
    box-shadow: inset 0 0 60px rgba(228, 64, 95, 0.3);
}

.community-glow-tiktok {
    box-shadow: inset 0 0 60px rgba(0, 242, 234, 0.3);
}

.community-message {
    text-align: center;
}

.community-message p {
    color: #9ca3af;
    max-width: 512px;
    margin: 0 auto;
}

/* Launcher Section */
.launcher-section {
    padding: 5rem 1rem;
}

.launcher-card {
    position: relative;
    max-width: 896px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-cyan);
    overflow: hidden;
}

@media (min-width: 768px) {
    .launcher-card {
        padding: 3rem;
    }
}

.launcher-gradient-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.1), transparent, rgba(147, 51, 234, 0.1));
    opacity: 0.5;
}

.launcher-glow {
    position: absolute;
    width: 192px;
    height: 192px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.launcher-glow-top {
    top: -96px;
    right: -96px;
    background: var(--primary-color);
}

.launcher-glow-bottom {
    bottom: -96px;
    left: -96px;
    background: #9333ea;
}

.launcher-content {
    position: relative;
    z-index: 10;
}

.launcher-header {
    text-align: center;
    margin-bottom: 2rem;
}

.launcher-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
    margin: 0 auto 1.5rem;
}

.launcher-main-icon {
    width: 40px;
    height: 40px;
    color: #000000;
}

.launcher-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

@media (min-width: 768px) {
    .launcher-title {
        font-size: 3rem;
    }
}

.launcher-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
}

.launcher-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .launcher-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
}

.benefit-icon-wrapper {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.benefit-item span {
    font-size: 0.875rem;
    color: #d1d5db;
}

.launcher-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .launcher-buttons {
        flex-direction: row;
    }
}

.launcher-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: #000000;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transition: all 0.3s;
}

.launcher-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.launcher-btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.launcher-btn-primary:hover::after {
    opacity: 0.2;
}

.launcher-btn-primary .icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.launcher-btn-secondary {
    padding: 1rem 2rem;
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.launcher-btn-secondary:hover {
    border-color: var(--border-cyan);
    background: var(--bg-glass-hover);
}

.launcher-version {
    text-align: center;
}

.launcher-version p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Statistics Section */
.statistics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .statistics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.statistic-card {
    position: relative;
    padding: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    overflow: hidden;
}

.statistic-card:hover {
    border-color: var(--border-cyan);
}

.statistic-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 212, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.statistic-card:hover::before {
    opacity: 1;
}

.statistic-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-cyan);
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.statistic-card:hover .statistic-icon-circle {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary-color);
}

.statistic-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.statistic-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    position: relative;
    z-index: 10;
}

.statistic-card:hover .statistic-value {
    color: var(--primary-color);
}

.statistic-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
}

.statistic-description {
    font-size: 0.875rem;
    color: #9ca3af;
    position: relative;
    z-index: 10;
}

.statistic-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.statistic-card:hover .statistic-accent-line {
    opacity: 1;
}

.statistic-glow {
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 128px;
    height: 128px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0;
    transition: opacity 0.3s;
}

.statistic-card:hover .statistic-glow {
    opacity: 0.2;
}

.statistics-info {
    margin-top: 4rem;
    text-align: center;
}

.info-box {
    display: inline-block;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.info-box p {
    color: #d1d5db;
}

/* Footer */
.footer {
    position: relative;
    padding: 3rem 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1152px;
    margin: 0 auto;
}

.footer-logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 128px;
    height: auto;
    margin: 0 auto 0.5rem;
    opacity: 0.9;
}

.footer-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin-bottom: 2rem;
}

.footer-info {
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    color: #6b7280;
    font-size: 0.75rem;
    max-width: 512px;
    margin: 0 auto 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-accent {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.footer-accent::before {
    content: '';
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 9999px;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 384px;
    height: 128px;
    background: var(--primary-color);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
    pointer-events: none;
}

/* Skaistas scroll reveal animācijas */
.fade-in-up,
.fade-in-scale,
[data-reveal] {
    will-change: opacity, transform;
}

/* Revealed stāvoklis - kad elements ir parādījies */
.revealed {
    opacity: 1 !important;
}

/* Hero sekcijas animācijas - šīs darbojas uzreiz */
.fade-in-delay {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.7s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Smooth scroll uz visu lapu */
html {
    scroll-behavior: smooth;
}

/* Sekciju animācijas */
section {
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Kartes ar skaistu reveal efektu */
.server-stat-card,
.update-card,
.community-card,
.statistic-card,
.benefit-item {
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Papildu glow efekts reveal laikā */
.server-stat-card.revealed,
.update-card.revealed,
.community-card.revealed,
.statistic-card.revealed {
    animation: revealGlow 0.8s ease-out;
}

@keyframes revealGlow {
    0% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
}

/* Icon Styles */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
}

