﻿/* CSS Variables for Theme */
 
:root {
    /* Light Theme Colors */
    --primary: #d4af37;
    --primary-foreground: #0f0f0f;
    --background: #ffffff;
    --foreground: #0f0f0f;
    --card: #f8f9fa;
    --card-foreground: #0f0f0f;
    --popover: #ffffff;
    --popover-foreground: #0f0f0f;
    --secondary: #e9ecef;
    --secondary-foreground: #d4af37;
    --muted: #f1f3f5;
    --muted-foreground: #6c757d;
    --accent: #d4af37;
    --accent-foreground: #0f0f0f;
    --destructive: #ef4444;
    --destructive-foreground: #ffffff;
    --border: #dee2e6;
    --input: #ffffff;
    --ring: #d4af37;
    --radius: 0.5rem;
    /* Sidebar Light */
    --sidebar: #f8f9fa;
    --sidebar-foreground: #0f0f0f;
    --sidebar-primary: #b8941f;
    --sidebar-primary-foreground: #f5f5f5;
    --sidebar-accent: #d4af37;
    --sidebar-accent-foreground: #0f0f0f;
    --sidebar-border: #dee2e6;
    --sidebar-ring: #d4af37;
    /* Charts Light */
    --chart-1: #d4af37;
    --chart-2: #f4d03f;
    --chart-3: #c9a227;
    --chart-4: #a68c1f;
    --chart-5: #8a7015;
    /* Legacy variables for backwards compatibility */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #0f0f0f;
    --text-secondary: #4a4a4a;
    --text-muted: #6c757d;
    --accent-primary: #d4af37;
    --accent-secondary: #b8941f;
    --accent-hover: #f4d03f;
    --border-color: #dee2e6;
    --shadow-color: rgba(212, 175, 55, 0.15);
    --card-bg: #ffffff;
    --navbar-bg: rgba(255, 255, 255, 0.95);
}

[data-theme="dark"], .dark {
    /* Dark Theme Colors */
    --primary: #d4af37;
    --primary-foreground: #0f0f0f;
    --background: #0f0f0f;
    --foreground: #f5f5f5;
    --card: #0F0F0F;
    --card-foreground: #f5f5f5;
    --popover: #1a1a1a;
    --popover-foreground: #f5f5f5;
    --secondary: #1a1a1a;
    --secondary-foreground: #d4af37;
    --muted: #3a3a3a;
    --muted-foreground: #a0a0a0;
    --accent: #d4af37;
    --accent-foreground: #0f0f0f;
    --destructive: #ef4444;
    --destructive-foreground: #f5f5f5;
    --border: #2a2a2a;
    --input: #1a1a1a;
    --ring: #d4af37;
    --radius: 0.5rem;
    /* Sidebar Dark */
    --sidebar: #1a1a1a;
    --sidebar-foreground: #f5f5f5;
    --sidebar-primary: #b8941f;
    --sidebar-primary-foreground: #f5f5f5;
    --sidebar-accent: #d4af37;
    --sidebar-accent-foreground: #0f0f0f;
    --sidebar-border: #2a2a2a;
    --sidebar-ring: #d4af37;
    /* Charts Dark */
    --chart-1: #d4af37;
    --chart-2: #f4d03f;
    --chart-3: #c9a227;
    --chart-4: #a68c1f;
    --chart-5: #8a7015;
    /* Legacy variables for backwards compatibility */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;
    --accent-primary: #d4af37;
    --accent-secondary: #b8941f;
    --accent-hover: #f4d03f;
    --border-color: #2a2a2a;
    --shadow-color: rgba(212, 175, 55, 0.15);
    --card-bg: #1a1a1a;
    --navbar-bg: rgba(15, 15, 15, 0.95);
} 

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ol, ul {
     padding-left: unset; 
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Gaming Font for Headings and Logo */
h1, h2, h3, h4, h5, h6 {
    /*font-family: 'Mortal Kombat 4', 'Mephisto', sans-serif;*/
    font-family: Orbitron, sans-serif;
    font-weight: 700;
}
 

/* Navigation */
.navbar {
    background-color: var(--navbar-bg);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--foreground);
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: unset;
}

.mobile-menu-toggle {
    display: none;
}

.nav-menu a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        color: var(--primary);
    }

        .nav-menu a:hover::after {
            width: 100%;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

    .theme-toggle:hover {
        background-color: var(--secondary);
        border-color: var(--primary);
    }

[data-theme="light"] .sun-icon {
    display: none;
}

[data-theme="light"] .moon-icon {
    display: block;
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--muted-foreground);
    position: relative;
}

    .language-selector:hover {
        background-color: var(--muted);
        border-color: var(--primary);
    }

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}

    .language-option:last-child {
        border-bottom: none;
    }

    .language-option:hover {
        background-color: var(--muted);
        color: var(--primary);
    }

    .language-option.active {
        background-color: var(--muted);
        color: var(--primary);
    }

.flag-icon {
    font-size: 1.25rem;
}

/* Account Dropdown Styles */
.account-dropdown {
    position: relative;
}

.btn-account {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-account:hover {
        background-color: var(--muted);
        border-color: var(--primary);
    }

    .btn-account .chevron {
        transition: transform 0.3s ease;
    }

.account-dropdown.active .btn-account .chevron {
    transform: rotate(180deg);
}

.account-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.account-dropdown.active .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--foreground);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .account-menu-item:hover {
        background-color: var(--muted);
        color: var(--primary);
    }

    .account-menu-item.logout {
        color: var(--destructive);
    }

        .account-menu-item.logout:hover {
            background-color: rgba(239, 68, 68, 0.1);
        }

.account-menu-divider {
    height: 1px;
    background-color: var(--border);
    margin: 4px 0;
}

.nav-menu a.active {
    color: var(--primary);
    position: relative;
}

    .nav-menu a.active::after {
        width: 100%;
    }

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 24px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background-color: var(--chart-2);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px var(--shadow-color);
    }

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    padding: 10px 24px;
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-secondary:hover {
        background-color: var(--muted);
        transform: translateY(-2px);
    }

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}
 
/* Section Headers */
.section-header {
    text-align: left;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    max-width: 600px;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background-color: var(--secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding-top:40px;
}

.feature-card {
    background-color: var(--card);
    padding: 40px 32px;
    border-radius: calc(var(--radius) * 2);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--sidebar-primary) 0%, var(--primary) 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px var(--shadow-color);
        border-color: var(--primary);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: calc(var(--radius) * 1.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

    .feature-icon.lightning {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 148, 31, 0.2) 100%);
        color: var(--primary);
    }

    .feature-icon.community {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
        color: #60a5fa;
    }

    .feature-icon.trophy {
        background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
        color: #a78bfa;
    }

    .feature-icon.gamepad {
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
        color: #f87171;
    }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--card-foreground);
    font-weight: 700;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Latest News Section */
.latest-news {
    padding: 100px 0;
    background-color: var(--background);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.news-card {
    background-color: var(--secondary);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px var(--shadow-color);
    }

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: 6px 12px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-content {
    padding: 28px;
}

.news-date {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--card-foreground);
    font-weight: 700;
}

.news-description {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

    .news-link:hover {
        gap: 10px;
    }

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .cta {
    background: linear-gradient(85deg, rgba(26, 26, 26, 0.30) 20%, rgba(255, 178, 89, 0.24) 50%, rgba(26, 26, 26, 0.30) 80%), #1A1A1A;
    box-shadow: 0 0 4px 0 #000 inset;
}
[data-theme="light"] .cta {
    background: linear-gradient(85deg, rgba(240, 240, 240, 0.30) 20%, rgba(255, 178, 89, 0.24) 50%, rgba(240, 240, 240, 0.30) 80%), #f5f5f5;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1) inset;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--foreground);
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--secondary);
    padding: 80px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 1rem;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--foreground);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 800;
}

.footer-section p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 12px;
    }

        .footer-section ul li a {
            color: var(--muted-foreground);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

            .footer-section ul li a:hover {
                color: var(--primary);
            }

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background-color: var(--primary);
        color: var(--primary-foreground);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    gap: 24px;
}

    .footer-links a {
        color: var(--muted-foreground);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
    }

        .footer-links a:hover {
            color: var(--primary);
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    /* Mobile Navigation */
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        order: 3;
        z-index: 1001;
    }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--foreground);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--card);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        border-bottom: 1px solid var(--border);
        order: 4;
        width: 100%;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

        .nav-menu.active {
            max-height: 500px;
            padding: 8px 0;
        }

        .nav-menu li {
            width: 100%;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .nav-menu.active li {
            opacity: 1;
            transform: translateX(0);
        }

            .nav-menu.active li:nth-child(1) {
                transition-delay: 0.1s;
            }

            .nav-menu.active li:nth-child(2) {
                transition-delay: 0.15s;
            }

            .nav-menu.active li:nth-child(3) {
                transition-delay: 0.2s;
            }

            .nav-menu.active li:nth-child(4) {
                transition-delay: 0.25s;
            }

        .nav-menu a {
            display: block;
            padding: 14px 24px;
            border-bottom: 1px solid var(--border);
            font-size: 1rem;
        }

        .nav-menu li:last-child a {
            border-bottom: none;
        }

        .nav-menu a::after {
            display: none;
        }

    .nav-actions {
        gap: 8px;
        order: 2;
    }

    .language-selector {
        padding: 6px 10px;
    }

    .language-dropdown {
        right: auto;
        left: 0;
    }

    .btn-secondary,
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 60px 0;
        margin-top: 72px;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

        .hero-buttons .btn-primary,
        .hero-buttons .btn-secondary {
            width: 100%;
            justify-content: center;
        }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Sections Mobile */
    .why-choose,
    .latest-news,
    .cta {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 32px 24px;
    }

        .feature-card h3 {
            font-size: 1.25rem;
        }

    /* News Grid Mobile */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 20px;
    }

    .news-title {
        font-size: 1.25rem;
    }

    /* CTA Mobile */
    .cta-title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Footer Mobile */
    footer {
        padding: 60px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .cta-title {
        font-size: 1.625rem;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

        .feature-icon svg {
            width: 32px;
            height: 32px;
        }

    .nav-actions .btn-secondary {
        display: none;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}



.slider-area {
    margin-top: -1px;
    background-image: url('../images/slider-image.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}
 
/* --- Hero Content --- */
.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}
 

.hero-tagline {
    font-size: 1.3rem;
    max-width: 600px;
    color: var(--foreground);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta-button {
    background: var(--primary);
    background-image: linear-gradient(to bottom, #f4d03f, var(--primary));
    border: 1px solid var(--accent-secondary, #a68c1f);
    border-top-color: #f4d03f;
    border-bottom-color: #a68c1f;
    color: var(--primary-foreground);
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hero-cta-button:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 10px 25px var(--shadow-color);
    }
 

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(10px);
    }

    60% {
        transform: translateY(5px);
    }
}


.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

    .hero-logo img {
        height: 120px;
        width: auto;
        filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
        animation: logoFloat 3s ease-in-out infinite;
    }

.hero-description {
    font-size: 1.3rem;
    color: #f0f0f0;
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    animation: fadeIn 1.5s ease-out;
    font-weight: 400;
}

.hero-download-btn {
    /*    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5), 0 0 40px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 1.5px;
    animation: fadeInUp 1.8s ease-out;*/

    transition: all 0.3s ease;
    text-transform: uppercase;
    color: var(--W, #FFF);
    text-shadow: 0 0 5px #000;
    font-family: Cinzel;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.075rem;
    border-radius: 0.625rem;
    border: 2px solid var(--F, #D4AF37);
    background: var(--G, #B8941F);
    box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.25) inset;
    animation: fadeInUp 1.8s ease-out;
    padding: 18px 48px;
    text-decoration:auto;
}

    .hero-download-btn svg {
        width: 22px;
        height: 22px;
        stroke-width: 2.5;
    }

    .hero-download-btn:hover {
        /*transform: translateY(-4px);*/
        /*transform: scale(1.05);*/
        box-shadow: 0 4px 20px var(--shadow-color);
    }

.hero-scroll-indicator {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.8));
}

    .hero-scroll-indicator svg {
        color: #d4af37;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    }

        .hero-scroll-indicator svg:first-child {
            margin-bottom: -14px;
            animation: arrowMove1 2s infinite;
        }

        .hero-scroll-indicator svg:last-child {
            animation: arrowMove2 2s infinite;
        }

    .hero-scroll-indicator:hover svg {
        color: #f4d03f;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes arrowMove1 {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(6px);
    }
}

@keyframes arrowMove2 {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(6px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 72px;
        min-height: calc(100vh - 72px);
    }

    .hero-logo img {
        height: 90px;
    }

    .hero-description {
        font-size: 1.05rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .hero-download-btn {
        padding: 16px 40px;
        font-size: 1rem;
        gap: 8px;
    }

        .hero-download-btn svg {
            width: 20px;
            height: 20px;
        }

    .hero-scroll-indicator {
        bottom: 30px;
    }

        .hero-scroll-indicator svg {
            width: 24px;
            height: 24px;
        }
}

@media (max-width: 480px) {
    .hero-logo img {
        height: 70px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-download-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}



/* Latest News Swiper Section */
.latest-news-swiper {
    padding: 100px 0;
    background-color: var(--background);
    overflow: hidden;
}

.newsSwiper {
    width: 100%;
    padding: 40px 0 60px;
}

.swiper-slide {
    width: auto;
    max-width: 420px;
}

/* News Card */
.news-card-swiper {
    background-color: var(--card);
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

    .news-card-swiper:hover {
        box-shadow: 0 16px 40px var(--shadow-color);
        border-color: var(--primary);
    }

.news-image-swiper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

    .news-image-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.news-card-swiper:hover .news-image-swiper img {
    transform: scale(1.1);
}

.news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.news-content-swiper {
    padding: 28px;
}

.news-date-swiper {
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: lowercase;
}

.news-title-swiper {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.3;
}

.news-description-swiper {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--chart-2) 100%);
    border-radius: 15%;
    transition: all 0.3s ease;
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
        font-weight: 900;
        color: var(--primary-foreground);
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 20px var(--shadow-color);
    }

    .swiper-button-next.swiper-button-disabled,
    .swiper-button-prev.swiper-button-disabled {
        opacity: 0.3;
    }

/* Responsive */
@media (max-width: 768px) {
    .latest-news-swiper {
        padding: 60px 0;
    }

    .newsSwiper {
        padding: 20px 0 40px;
    }

    .swiper-slide {
        max-width: 340px;
    }

    .news-image-swiper {
        height: 220px;
    }

    .news-content-swiper {
        padding: 20px;
    }

    .news-title-swiper {
        font-size: 1.3rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 44px;
        height: 44px;
    }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 16px;
        }
}


 


/* Profile Page Styles */

.profile-section {
    min-height: calc(100vh - 80px); /* Account for header */
    background: var(--bg-primary);
    padding: 0;
    margin-top: 80px;
}

/* Welcome Header Section - Full Width */
.profile-welcome-header {
    background: var(--bg-secondary);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.profile-welcome-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.profile-welcome-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.welcome-greeting {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 400;
}

.welcome-username {
    color: var(--accent-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Navigation Tabs */
.profile-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.profile-nav-link {
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

    .profile-nav-link:hover {
        color: var(--accent-primary);
    }

    .profile-nav-link.active {
        color: var(--accent-primary);
    }

/* Stats Section */
.profile-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.stat-label {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 400;
}

.stat-value {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Account Details Section */
.account-details-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

/* Account Details Grid - 2 columns */
.account-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    /*background-color: var(--secondary);*/
    /*border-radius: 0.5rem;
    padding:1rem;*/
}

.detail-card { 
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
    /*padding: 0.5rem 8.125rem 0.5rem 1rem;*/
    border-radius: 0.625rem;
    border-left: 2px solid var(--border-color);
    background: var(--bg-secondary);
}

    .detail-card:hover {
        border-color: var(--accent-primary);
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
    }

.detail-label {
    color: var(--accent-primary);
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5rem; /* 100% */
    letter-spacing: 0.075rem;
    text-transform: uppercase;
}

.detail-value {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.02063rem;
    word-break: break-word;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-welcome-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-nav {
        width: 100%;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .profile-stats {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-welcome-header {
        padding: 1.25rem 0;
    }

    .account-details-section {
        padding: 2rem 0;
    }

    .account-details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .profile-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .profile-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .profile-welcome-header {
        padding: 1rem 0;
    }

    .profile-welcome-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .account-details-section {
        padding: 1.5rem 0;
    }

    .detail-card {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .profile-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}