* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    overflow-x: hidden;
    user-select: none;
    /* -webkit-user-drag: none; */
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 30, 30, 0.95);
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #ff4757;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
}

.nav a:hover {
    color: #ff4757;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff4757;
    transition: width 0.3s;
}

.nav a:hover::after {
    width: 100%;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 50px 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 71, 87, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1419px;
    margin: 0 auto;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1419px;
    aspect-ratio: 1419 / 802;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.placeholder-icon {
    font-size: 80px;
    color: #444;
}

.placeholder-text {
    font-size: 24px;
    color: #666;
    text-align: center;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: 20px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #ff4757 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(255, 71, 87, 0.6))
                drop-shadow(0 0 60px rgba(255, 71, 87, 0.4)); 
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(255, 71, 87, 0.9))
                drop-shadow(0 0 80px rgba(255, 71, 87, 0.6)); 
    }
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

.cta-button {
    background: #ff4757;
    color: #fff;
    border: none;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    letter-spacing: 3px;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.cta-button:hover {
    background: #ff6b7a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
}

.download-link {
    display: inline-block;
    margin-top: 20px;
    color: #ff4757;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

.download-link:hover {
    color: #ff6b7a;
}

/* Updates Section */
.updates {
    padding: 100px 50px;
    max-width: 100%;
    margin: 0 auto;
}

.updates-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 3px;
}

.scroll-hint {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 15px;
    animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.updates-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ff4757 #1a1a1a;
}

.updates-grid::-webkit-scrollbar {
    height: 12px;
}

.updates-grid::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
    margin: 0 10px;
}

.updates-grid::-webkit-scrollbar-thumb {
    background: #ff4757;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
}

.updates-grid::-webkit-scrollbar-thumb:hover {
    background: #ff6b7a;
}

.updates-grid::-webkit-scrollbar-thumb:active {
    background: #ff3343;
}

.update-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.update-card:hover {
    border-color: #ff4757;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 71, 87, 0.3);
}

.update-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.update-placeholder {
    width: 100%;
    height: 180px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    font-size: 40px;
}

.update-content {
    padding: 25px;
}

.update-date {
    color: #ff4757;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.update-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.update-description {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.empty-updates {
    text-align: center;
    padding: 60px;
    color: #666;
}

.empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 30px 50px;
    text-align: center;
    border-top: 2px solid #ff4757;
    margin-top: 50px;
}

.footer-text {
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav {
        gap: 20px;
    }

    .user-info {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero {
        padding: 100px 20px 50px;
    }

    .hero-image-container {
        border-width: 2px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 80px);
        letter-spacing: 8px;
    }

    .section-title {
        font-size: 32px;
    }

    .updates {
        padding: 50px 20px;
    }

    .updates-grid {
        gap: 20px;
    }

    .update-card {
        min-width: 280px;
        max-width: 280px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 16px;
    }
}

body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #1A1A24;
}

body::-webkit-scrollbar-thumb {
    background: #FF4747;
    border-radius: 10px;
    border: 2px solid #1A1A24;
}

body::-webkit-scrollbar-thumb:hover {
    background: #ff6b7a;
}

body::-webkit-scrollbar-thumb:active {
    background: #ff3343;
}