/* CSS Root Variables - Dark Theme Color Palette */
:root {
    /* Color Palette - Gaming Yellow/Gold Theme */
    --bg-primary: #1a1a1d;
    --bg-secondary: #2d2d30;
    --bg-card: #2a2a2e;
    --accent-primary: #F7B529;      /* Gaming Yellow */
    --accent-secondary: #E6A01D;    /* Dark Yellow */
    --accent-hover: #FFC940;        /* Light Yellow Hover */
    --text-primary: #f5f5f5;
    --text-secondary: #b8b8b8;
    --text-muted: #8a8a8a;
    --border: #404040;
    --success: #28a745;
    --warning: #F7B529;             /* Yellow warning to match theme */
    --danger: #dc3545;
    --info: #E6A01D;                /* Dark yellow info to match theme */
    
    /* Typography */
    --font-heading: 'Oswald', 'Roboto Condensed', 'Russo One', 'Orbitron', sans-serif;
    --font-body: 'Roboto', 'Source Sans Pro', 'Noto Sans', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --padding-section: 80px 0;
    --padding-container: 0 20px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-yellow: 0 4px 20px rgba(247, 181, 41, 0.3);
    --shadow-yellow-lg: 0 8px 32px rgba(247, 181, 41, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--padding-container);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* YouTube Button Specific Style */
.btn-secondary .fa-youtube {
    color: #FF0000;
}

.btn-secondary:hover .fa-youtube {
    color: #FF0000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 29, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem;
}

.nav-logo a {
    display: block;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 2px;
}

.nav-logo a:hover {
    transform: scale(1.1);
    background: rgba(247, 181, 41, 0.1);
}

.logo {
    height: 28px;
    width: auto;
    transition: all 0.2s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.logo:hover {
    filter: drop-shadow(0 2px 6px rgba(247, 181, 41, 0.6)) brightness(1.1);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    position: relative;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.nav-link:hover {
    color: #000000;
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(247, 181, 41, 0.3);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid rgba(247, 181, 41, 0.2);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.75rem;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid rgba(247, 181, 41, 0.2);
    border-top: 1px solid rgba(247, 181, 41, 0.2);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.dropdown-link:last-child {
    margin-bottom: 0;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

.dropdown-link i {
    font-size: 1.3rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    min-width: 25px;
}

.dropdown-link:hover {
    background: linear-gradient(135deg, rgba(247, 181, 41, 0.15), rgba(230, 160, 29, 0.1));
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(247, 181, 41, 0.2);
}

.dropdown-link:hover i {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.dropdown-link:hover .link-title {
    color: var(--accent-primary);
}

.nav-button {
    background: var(--accent-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
}

.nav-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), 
                url('https://i.imgur.com/YpBi6TX.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(247, 181, 41, 0.08), 
                rgba(230, 160, 29, 0.05), 
                rgba(26, 26, 29, 0.92),
                rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5),
                 0 0 10px rgba(247, 181, 41, 0.3);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Hero Title Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(247, 181, 41, 0.3), 
                     0 0 40px rgba(247, 181, 41, 0.2);
    }
    100% {
        text-shadow: 0 0 30px rgba(247, 181, 41, 0.5), 
                     0 0 60px rgba(247, 181, 41, 0.3),
                     0 0 80px rgba(247, 181, 41, 0.1);
    }
}

/* Sequential Animation System */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Sequential Animation Classes */
.animate-sequence {
    opacity: 0;
    animation-fill-mode: both;
}

.animate-sequence[data-delay="0"] {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.animate-sequence[data-delay="1"] {
    animation: slideInLeft 0.8s ease-out 1.2s both;
}

.animate-sequence[data-delay="2"] {
    animation: scaleIn 0.6s ease-out 1.8s both;
}

/* Button Bounce Animation */
@keyframes buttonBounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Letter Animation System */
@keyframes letterFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.letter-animation {
    display: inline-block;
}

.hero-line {
    display: block;
    text-align: center;
}

.letter-animation .letter {
    display: inline-block;
    opacity: 0;
    animation: letterFadeIn 0.6s ease-out forwards;
    color: inherit;
    text-shadow: inherit;
}

.letter-animation .letter.space {
    width: 0.3em;
}

/* Typewriter Animation (backup) */
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    0%, 50% {
        border-right-color: var(--accent-primary);
    }
    51%, 100% {
        border-right-color: transparent;
    }
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--accent-primary);
    animation: typewriter 3s steps(20) 0.5s both, blinkCursor 1s infinite 3.5s;
    max-width: 100%;
}

.typewriter-text::before {
    content: "GTA TR DÜNYASINA HOŞ GELDİN";
}

/* Server Status Widget */
.server-status {
    padding: 2rem 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.status-widget {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-indicator.online {
    background: rgba(40, 167, 69, 0.2);
    color: var(--success);
    border: 1px solid var(--success);
}

.status-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-item .label {
    color: var(--text-secondary);
    font-weight: 500;
}

.status-item .value {
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-item code {
    background: var(--bg-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--accent-primary);
}

.copy-btn {
    background: var(--accent-primary);
    border: none;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* Features Section */
.features {
    padding: var(--padding-section);
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
    border-color: var(--accent-primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* News Section */
.news {
    padding: var(--padding-section);
    background: var(--bg-secondary);
}

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

.news-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.news-date {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.news-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.read-more {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--accent-hover);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-normal);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-primary);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: var(--text-muted);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
}

/* Copy Notification */
.copy-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(400px);
    transition: var(--transition-normal);
    z-index: 1001;
    font-weight: 500;
}

.copy-notification.show {
    transform: translateX(0);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.7);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    text-align: center;
    position: relative;
    color: var(--text-primary);
    margin: 0 auto;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--accent-primary);
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: var(--accent-hover);
}

/* Hemen Oyna Dropdown Styles */
.dropdown-play {
    position: relative;
    display: inline-block;
}

.dropdown-arrow {
    margin-left: 0.3rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-play:hover .dropdown-arrow,
.dropdown-play.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-play-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border);
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 0.75rem;
    animation: dropdownFadeIn 0.3s ease;
    border: 1px solid rgba(247, 181, 41, 0.2);
}

.dropdown-play-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid rgba(247, 181, 41, 0.2);
    border-top: 1px solid rgba(247, 181, 41, 0.2);
}

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

.dropdown-play-link {
    color: var(--text-primary);
    padding: 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.dropdown-play-link:last-child {
    margin-bottom: 0;
}

.dropdown-play-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-play-link:hover::before {
    transform: scaleY(1);
}

.dropdown-play-link i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
    min-width: 30px;
}

.dropdown-link-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.link-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.link-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 400;
}

.dropdown-play-link:hover {
    background: linear-gradient(135deg, rgba(247, 181, 41, 0.15), rgba(230, 160, 29, 0.1));
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(247, 181, 41, 0.2);
}

.dropdown-play-link:hover i {
    transform: scale(1.1);
    color: var(--accent-hover);
}

.dropdown-play-link:hover .link-title {
    color: var(--accent-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 82px;
        flex-direction: column;
        background-color: var(--bg-secondary);
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: 0.75rem;
        display: block;
        border-bottom: 1px solid var(--border);
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-primary);
        margin-top: 0;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        letter-spacing: 1px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .status-info {
        grid-template-columns: 1fr;
    }

    .status-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.2rem, 7vw, 1.8rem);
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.news-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}