/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f1419;
    --primary-blue: #1a1f2e;
    --accent-blue: #2d3748;
    --accent-cyan: #4a5568;
    --glow-blue: #4299e1;
    --glow-cyan: #63b3ed;
    --text-light: #f7fafc;
    --text-gray: #cbd5e0;
    --border-color: rgba(66, 153, 225, 0.2);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f1419;
    position: relative;
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar Styles - Modern & Minimal */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(66, 153, 225, 0.3);
    border-radius: 3px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(66, 153, 225, 0.6);
}

::-webkit-scrollbar-thumb:active {
    background: rgba(99, 179, 237, 0.8);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(66, 153, 225, 0.3) transparent;
}

/* Stars Background */
.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    background: rgba(66, 153, 225, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 1px rgba(66, 153, 225, 0.5);
    animation: flyUp linear;
}

.stars-layer-1 .star {
    background: rgba(66, 153, 225, 0.7);
    box-shadow: 0 0 1px rgba(66, 153, 225, 0.5);
}

.stars-layer-2 .star {
    background: rgba(99, 179, 237, 0.6);
    box-shadow: 0 0 0.5px rgba(99, 179, 237, 0.4);
}

.stars-layer-3 .star {
    background: rgba(66, 153, 225, 0.5);
    box-shadow: 0 0 0.5px rgba(66, 153, 225, 0.3);
}

@keyframes flyUp {
    0% {
        transform: translateY(0);
        opacity: 0.3;
    }
    5% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(-100vh - 50px));
        opacity: 0;
    }
}

main {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.logo-container:hover .logo-image {
    opacity: 1;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Legacy support for logo class */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--glow-blue), var(--glow-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    display: block;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    width: 0;
    height: 2px;
    background: var(--glow-blue);
    transition: width 0.3s ease;
}

.nav-links > li:hover > a::after {
    width: calc(100% - 2.5rem);
}

.nav-links > li > a:hover {
    color: var(--glow-blue);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.nav-dropdown > a.dropdown-toggle {
    pointer-events: auto;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    opacity: 1;
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 20, 25, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown > a.dropdown-toggle:focus {
    outline: none;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(66, 153, 225, 0.1);
    color: var(--glow-blue);
    border-left-color: var(--glow-blue);
    padding-left: 1.75rem;
}

.language-switcher {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    min-width: 40px;
}

.lang-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--glow-blue);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.lang-btn.active {
    background: rgba(0, 212, 255, 0.3);
    border-color: var(--glow-blue);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Language Modal */
.language-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.language-modal {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border: 2px solid rgba(0, 212, 255, 0.5);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
    animation: slideUp 0.3s ease;
}

.language-modal h2 {
    color: var(--glow-cyan);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-subtitle strong {
    color: var(--glow-blue);
}

.modal-hint {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.language-modal-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.language-modal-two-options {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto 2rem;
}

.lang-modal-btn {
    background: rgba(0, 49, 77, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.lang-modal-btn:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--glow-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.lang-modal-btn.suggested {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--glow-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.suggested-badge {
    font-size: 0.75rem;
    color: var(--glow-cyan);
    font-weight: bold;
    text-transform: uppercase;
}

.modal-continue-btn {
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid var(--glow-blue);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-continue-btn:hover {
    background: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

/* Two option layout */
.language-modal-two-options .lang-modal-btn {
    padding: 1.5rem;
    font-size: 1.1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    background: transparent;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-btn:hover {
    background: var(--glow-blue);
    border-color: var(--glow-blue);
    color: var(--primary-dark);
}

/* News Section */
.news-section {
    padding: 4rem 0;
}

.news-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--glow-blue);
}

.news-date {
    color: var(--glow-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.news-title {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-read-more {
    color: var(--glow-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}

.news-read-more:hover {
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.view-all-link {
    color: var(--glow-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--text-light);
}

/* Games Section */
.games-section {
    padding: 4rem 0;
}

.games-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

.games-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.game-image-wrapper {
    width: 100%;
    height: 500px;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: rgba(15, 20, 25, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85);
}

.game-card:hover .game-image {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Overlay gradient */
.game-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.game-card:hover .game-image-wrapper::after {
    opacity: 0.7;
}

.game-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(66, 153, 225, 0.1);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--glow-blue);
}

.game-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    padding: 2.5rem;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    transition: transform 0.4s ease, font-size 0.4s ease;
    letter-spacing: 1px;
}

.game-card:hover .game-name {
    transform: translateY(-8px);
    font-size: 2.7rem;
}

/* Quick Actions Section */
.quick-actions-section {
    padding: 4rem 0;
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.action-btn:hover {
    transform: translateY(-3px);
    border-color: var(--glow-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: rgba(66, 153, 225, 0.1);
}

.action-text {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
}

/* Matches Section */
.matches-section {
    padding: 4rem 0;
}

.matches-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.match-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.match-card:hover {
    border-color: var(--glow-blue);
}

.match-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.match-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.match-info span {
    color: var(--text-gray);
}

.match-info strong {
    color: var(--text-light);
}

/* Sponsors Section */
.sponsors-section {
    padding: 4rem 0;
}

.sponsors-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-light);
    font-weight: 600;
}

.sponsors-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
}

.sponsors-grid::-webkit-scrollbar {
    height: 8px;
}

.sponsors-grid::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.3);
    border-radius: 4px;
}

.sponsors-grid::-webkit-scrollbar-thumb {
    background: var(--glow-blue);
    border-radius: 4px;
}

.sponsors-grid::-webkit-scrollbar-thumb:hover {
    background: var(--glow-cyan);
}

.sponsor-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    max-width: 180px;
    min-height: 120px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-3px);
    border-color: var(--glow-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sponsor-logo {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.05);
    opacity: 0.9;
}

.sponsor-name {
    margin-top: 1rem;
    color: var(--text-light);
    font-weight: bold;
}

/* Footer */
footer {
    background: #0f1419;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    color: var(--text-gray);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--glow-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--glow-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Page Styles */
.page-header {
    padding: 3rem 0;
    text-align: center;
    background: transparent;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--text-light);
    font-weight: 700;
}

.page-content {
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

/* Terms of Service Styles */
.tos-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 20, 25, 0.6);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.tos-last-updated {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 2rem;
    text-align: right;
}

.tos-section {
    margin-bottom: 2.5rem;
}

.tos-section:last-child {
    margin-bottom: 0;
}

.tos-section h2 {
    color: var(--glow-cyan);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.tos-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tos-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--text-gray);
}

.tos-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.tos-section strong {
    color: var(--text-light);
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.team-card {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    z-index: 1;
}

.team-card:hover {
    border-color: var(--glow-blue);
}

.team-logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid rgba(99, 179, 237, 0.3);
    background: rgba(15, 20, 25, 0.8);
    position: relative;
    overflow: hidden;
}

.team-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.team-logo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.2), rgba(66, 153, 225, 0.2));
    color: var(--glow-cyan);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
}

.team-card h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.team-game {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

/* Modern Team Detail Layout */
.team-detail-modern {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Team Hero Section */
.team-hero {
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.1), rgba(99, 179, 237, 0.05));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.team-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.team-logo-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid rgba(99, 179, 237, 0.3);
    padding: 8px;
    background: rgba(15, 20, 25, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-logo-wrapper:hover {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 30px rgba(99, 179, 237, 0.3);
    transform: scale(1.05);
}

.team-hero-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-hero-info {
    flex: 1;
}

.team-hero-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.team-hero-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--glow-cyan), transparent);
}

/* Players Carousel Section - Premium Esports Design */
.players-carousel-section {
    margin: 4rem 0;
    position: relative;
}

.players-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.players-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    width: 100%;
    min-height: 350px;
    perspective: 1000px;
}

.carousel-player {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    opacity: 0.3;
    filter: blur(4px) brightness(0.4);
    z-index: 1;
}

.carousel-player.prev {
    left: 15%;
    transform: translateX(-50%) scale(0.7);
    opacity: 0.5;
    filter: blur(3px) brightness(0.5);
    z-index: 2;
}

.carousel-player.next {
    right: 15%;
    transform: translateX(50%) scale(0.7);
    opacity: 0.5;
    filter: blur(3px) brightness(0.5);
    z-index: 2;
}

.carousel-player.active {
    left: 50%;
    transform: translateX(-50%) scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
    z-index: 10;
}

.carousel-player-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid rgba(99, 179, 237, 0.3);
    overflow: hidden;
    background: rgba(15, 20, 25, 0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(99, 179, 237, 0);
    position: relative;
}

.carousel-player.active .carousel-player-image-wrapper {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 40px rgba(99, 179, 237, 0.6), 
                0 0 80px rgba(66, 153, 225, 0.3),
                inset 0 0 60px rgba(99, 179, 237, 0.1);
    animation: playerGlow 2s ease-in-out infinite alternate;
}

@keyframes playerGlow {
    0% {
        box-shadow: 0 0 40px rgba(99, 179, 237, 0.6), 
                    0 0 80px rgba(66, 153, 225, 0.3),
                    inset 0 0 60px rgba(99, 179, 237, 0.1);
    }
    100% {
        box-shadow: 0 0 60px rgba(99, 179, 237, 0.8), 
                    0 0 120px rgba(66, 153, 225, 0.5),
                    inset 0 0 80px rgba(99, 179, 237, 0.2);
    }
}

.carousel-player-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.carousel-player.active .carousel-player-image {
    transform: scale(1.05);
}

.carousel-player-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 179, 237, 0.2), rgba(66, 153, 225, 0.2));
    color: var(--glow-cyan);
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(99, 179, 237, 0.5);
}

.carousel-player-name {
    margin-top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(99, 179, 237, 0.5);
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-player.active .carousel-player-name {
    opacity: 1;
    transform: translateY(0);
}

.carousel-player-role {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(20px);
}

.carousel-player.active .carousel-player-role {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 20, 25, 0.9);
    border: 2px solid var(--glow-cyan);
    color: var(--glow-cyan);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(99, 179, 237, 0.3);
}

.carousel-arrow:hover {
    background: rgba(99, 179, 237, 0.1);
    border-color: var(--glow-cyan);
    box-shadow: 0 0 30px rgba(99, 179, 237, 0.6);
    transform: scale(1.08);
}

.carousel-arrow:active {
    transform: scale(0.96);
    box-shadow: 0 0 15px rgba(99, 179, 237, 0.4);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--glow-cyan);
    stroke-width: 3;
    fill: none;
    filter: drop-shadow(0 0 6px rgba(99, 179, 237, 0.5));
    transition: all 0.3s ease;
}

.carousel-arrow:hover svg {
    filter: drop-shadow(0 0 10px rgba(99, 179, 237, 0.8));
}

/* Dynamic Player Info Panel */
.player-info-panel {
    max-width: 800px;
    margin: 1.5rem auto 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95), rgba(26, 31, 46, 0.95));
    border: 1px solid rgba(99, 179, 237, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5),
                0 0 80px rgba(99, 179, 237, 0.1),
                inset 0 0 60px rgba(99, 179, 237, 0.05);
    position: relative;
    overflow: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.player-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--glow-cyan), 
        var(--glow-blue), 
        var(--glow-cyan), 
        transparent
    );
    animation: panelGlow 3s ease-in-out infinite;
}

@keyframes panelGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.player-panel-content {
    position: relative;
    z-index: 1;
}

.player-panel-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 179, 237, 0.2);
}

.player-panel-nickname {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-shadow: 0 0 20px rgba(99, 179, 237, 0.5),
                 0 0 40px rgba(66, 153, 225, 0.3);
    background: linear-gradient(135deg, var(--text-light), var(--glow-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-panel-role {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--glow-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(99, 179, 237, 0.5);
}

.player-panel-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.player-panel-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(15, 20, 25, 0.5);
    border: 1px solid rgba(99, 179, 237, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.player-panel-detail-item:hover {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 20px rgba(99, 179, 237, 0.2);
    transform: translateY(-2px);
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.player-panel-bio {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 179, 237, 0.2);
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.player-panel-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 179, 237, 0.2);
}

.player-panel-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(99, 179, 237, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.player-panel-stat-item:hover {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 25px rgba(99, 179, 237, 0.3);
    transform: translateY(-3px);
}

.player-panel-stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.player-panel-stat-item .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--glow-cyan);
    text-shadow: 0 0 15px rgba(99, 179, 237, 0.5);
}

/* Player Detail Modal */
.player-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.player-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.player-detail-content {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.player-detail-modal.active .player-detail-content {
    transform: scale(1);
}

.player-detail-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(99, 179, 237, 0.2);
    border: 2px solid var(--glow-cyan);
    color: var(--glow-cyan);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.player-detail-close:hover {
    background: rgba(99, 179, 237, 0.4);
    transform: rotate(90deg);
}

.player-detail-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.player-detail-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid var(--glow-cyan);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(99, 179, 237, 0.3);
}

.player-detail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-detail-header-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.player-detail-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.player-detail-real-name {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
    margin-top: 0.5rem;
}

.player-detail-role {
    font-size: 1.1rem;
    color: var(--glow-cyan);
    font-weight: 600;
    margin-top: 0.5rem;
}

.player-detail-age {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.player-detail-nationality {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.player-detail-bio {
    margin-bottom: 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.player-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.player-stat-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.player-stat-card:hover {
    border-color: var(--glow-cyan);
    box-shadow: 0 5px 20px rgba(99, 179, 237, 0.2);
}

.player-stat-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-stat-value {
    color: var(--glow-cyan);
    font-size: 2rem;
    font-weight: 700;
}

/* Coach Section Modern */
.coach-section-modern {
    margin-bottom: 4rem;
}

.coach-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.coach-image-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid rgba(99, 179, 237, 0.3);
    overflow: hidden;
    background: rgba(15, 20, 25, 0.8);
    transition: all 0.3s ease;
}

.coach-image-wrapper:hover {
    border-color: var(--glow-cyan);
    box-shadow: 0 0 30px rgba(99, 179, 237, 0.3);
    transform: scale(1.05);
}

.coach-image-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-info {
    flex: 1;
}

.coach-name-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.coach-bio-modern {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Team Detail */
@media (max-width: 1024px) {
    .carousel-player-image-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .carousel-player.prev {
        left: 10%;
    }
    
    .carousel-player.next {
        right: 10%;
    }
    
    .player-panel-nickname {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 2rem 1.5rem;
    }
    
    .team-hero-name {
        font-size: 1.8rem;
    }
    
    .team-logo-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .players-carousel-container {
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-player-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .players-carousel {
        min-height: 280px;
    }
    
    .carousel-player-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .carousel-player.prev {
        left: 5%;
        transform: translateX(-50%) scale(0.6);
    }
    
    .carousel-player.next {
        right: 5%;
        transform: translateX(50%) scale(0.6);
    }
    
    .carousel-player-name {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .carousel-player-role {
        font-size: 0.9rem;
    }
    
    .player-info-panel {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .player-panel-nickname {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .player-panel-role {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .player-panel-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .player-panel-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .coach-card {
        padding: 2rem 1.5rem;
    }
    
    .coach-image-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Match List */
.matches-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.match-row {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.match-row:hover {
    border-color: var(--glow-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.match-result {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: white;
}

.match-result.win {
    background: #10b981;
    color: white;
}

.match-result.loss {
    background: #ef4444;
    color: white;
}

.match-result.draw {
    background: #f59e0b;
    color: white;
}

/* Filters */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 1rem;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--glow-blue);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    padding: 4rem 2rem;
}

.coming-soon h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coming-soon p {
    font-size: 1.5rem;
    color: var(--text-gray);
}

/* Blog Styles */
.page-subtitle {
    color: var(--text-gray);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    border-color: var(--glow-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-post-date {
    color: var(--glow-cyan);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.blog-post-title {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-read-more {
    color: var(--glow-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
}

.blog-read-more:hover {
    color: var(--glow-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.back-link {
    color: var(--glow-blue);
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: var(--glow-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.blog-post-meta {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.blog-post-content {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-content {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-excerpt {
    color: var(--text-gray);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

/* Game Detail Page */
.game-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-detail-image {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
}

.game-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.game-detail-section {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
}

.game-detail-section h2 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--glow-blue);
    padding-bottom: 0.75rem;
}

.game-detail-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.game-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.game-features-list li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    font-size: 1.05rem;
}

.game-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--glow-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Floating Collaboration Button */
.floating-collab-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(15, 20, 25, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: inherit;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.floating-collab-btn:hover {
    transform: translateY(-3px);
    border-color: var(--glow-blue);
    box-shadow: 0 6px 30px rgba(66, 153, 225, 0.3);
}

.collab-btn-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.collab-btn-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.collab-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.collab-line1 {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
}

.collab-line2 {
    color: var(--glow-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .floating-collab-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 0.9rem;
    }
    
    .collab-line1 {
        font-size: 0.7rem;
    }
    
    .collab-line2 {
        font-size: 0.75rem;
    }
    
    .collab-btn-logo {
        width: 28px;
        height: 28px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.btn:hover {
    background: var(--glow-blue);
    border-color: var(--glow-blue);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header {
        padding: 0.75rem 0;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }

    .nav-links {
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .nav-links > li > a {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .language-switcher {
        justify-content: center;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .logo-image {
        height: 40px;
    }

    .hero {
        min-height: 400px;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-content .subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-cta-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .news-section,
    .games-section,
    .matches-section,
    .sponsors-section {
        padding: 3rem 0;
    }

    .news-section h2,
    .games-section h2,
    .matches-section h2,
    .sponsors-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .matches-grid,
    .sponsors-grid,
    .teams-grid,
    .roster-grid,
    .news-grid,
    .games-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .language-modal-options {
        grid-template-columns: 1fr;
    }

    .language-modal-two-options {
        max-width: 100%;
    }

    .dropdown-menu {
        min-width: 180px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    header {
        padding: 0.5rem 0;
    }

    nav {
        padding: 0 12px;
        gap: 0.75rem;
    }

    .logo-text {
        display: none;
    }

    .logo-image {
        height: 35px;
    }

    .nav-links {
        gap: 0.3rem;
    }

    .nav-links > li > a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
        min-width: 35px;
    }

    .hero {
        min-height: 320px;
        padding: 1.75rem 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.65rem;
        margin-bottom: 0.6rem;
        line-height: 1.25;
    }

    .hero-content .subtitle {
        font-size: 1.05rem;
        margin-top: 0.4rem;
        margin-bottom: 0.85rem;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
        padding: 0 8px;
    }

    .hero-cta-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }

    .news-section,
    .games-section,
    .matches-section,
    .sponsors-section {
        padding: 1.75rem 0;
    }

    .news-section h2,
    .games-section h2,
    .matches-section h2,
    .sponsors-section h2 {
        font-size: 1.65rem;
        margin-bottom: 1.1rem;
        padding: 0 8px;
    }

    .news-grid,
    .games-grid,
    .matches-grid,
    .sponsors-grid,
    .teams-grid,
    .blog-grid {
        gap: 1.1rem;
    }

    .news-card,
    .game-card,
    .match-card,
    .sponsor-card,
    .team-card {
        padding: 0.9rem;
    }

    .page-header {
        padding: 1.25rem 0;
    }

    .page-header h1 {
        font-size: 1.65rem;
    }

    .page-content {
        padding: 1.5rem 0;
    }

    .language-modal {
        padding: 1.25rem;
        margin: 15px;
    }

    .language-modal h2 {
        font-size: 1.5rem;
    }

    .dropdown-menu {
        min-width: 160px;
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .dropdown-menu a {
        padding: 0.6rem 1.25rem;
    }
}

/* Specific optimization for 430px width screens */
@media (max-width: 450px) and (min-width: 360px) {
    .container {
        padding: 0 14px;
    }

    nav {
        padding: 0 14px;
    }

    .hero {
        padding: 1.5rem 0.5rem;
        min-height: 300px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-content .subtitle {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 1.1rem;
        padding: 0 6px;
    }

    .hero-cta-btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.88rem;
    }

    .news-section,
    .games-section,
    .matches-section,
    .sponsors-section {
        padding: 1.5rem 0;
    }

    .news-section h2,
    .games-section h2,
    .matches-section h2,
    .sponsors-section h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding: 0 6px;
    }

    .news-grid,
    .games-grid,
    .matches-grid,
    .sponsors-grid,
    .teams-grid,
    .blog-grid {
        gap: 1rem;
    }

    .news-card {
        padding: 0.85rem;
    }

    .news-card .news-date {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .news-card .news-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .news-card .news-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .news-read-more,
    .blog-read-more {
        font-size: 0.85rem;
        padding: 0;
        margin-top: 0.25rem;
    }

    .game-card,
    .match-card,
    .sponsor-card,
    .team-card {
        padding: 0.85rem;
    }

    .page-header {
        padding: 1.1rem 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-content {
        padding: 1.25rem 0;
    }

    .section-footer {
        margin-top: 1.25rem;
    }

    .view-all-link {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    nav {
        padding: 0 8px;
    }

    .nav-links > li > a {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content .subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .news-section h2,
    .games-section h2,
    .matches-section h2,
    .sponsors-section h2 {
        font-size: 1.5rem;
    }
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background: rgba(15, 20, 25, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.achievement-card:hover {
    transform: translateY(-5px);
    border-color: var(--glow-cyan);
    box-shadow: 0 10px 30px rgba(66, 153, 225, 0.2);
}

.achievement-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.achievement-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.achievement-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.achievement-tournament {
    font-size: 1.1rem;
    color: var(--glow-cyan);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.achievement-placement {
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.achievement-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.achievement-team {
    font-size: 0.9em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.achievement-date {
    font-size: 0.85em;
    color: var(--text-gray);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* News Full Screen Modal */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal.active {
    display: flex;
    opacity: 1;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.news-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: var(--primary-dark);
    z-index: 10001;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.news-modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(66, 153, 225, 0.2);
    border: 2px solid var(--glow-blue);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.news-modal-close:hover {
    background: var(--glow-blue);
    transform: rotate(90deg);
}

#news-modal-body {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
}

.news-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(66, 153, 225, 0.3);
}

.news-modal-date {
    color: var(--glow-blue);
    font-size: 1rem;
    font-weight: 500;
}

.news-modal-author {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.news-modal-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.news-modal-excerpt {
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.news-modal-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.news-modal-body-content {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
}

.news-modal-body-content p {
    margin-bottom: 1.5rem;
}

.news-modal-body-content h2,
.news-modal-body-content h3,
.news-modal-body-content h4 {
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-modal-body-content h2 {
    font-size: 1.8rem;
}

.news-modal-body-content h3 {
    font-size: 1.5rem;
}

.news-modal-body-content h4 {
    font-size: 1.3rem;
}

.news-modal-body-content a {
    color: var(--glow-blue);
    text-decoration: none;
}

.news-modal-body-content a:hover {
    text-decoration: underline;
}

.news-modal-body-content ul,
.news-modal-body-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.news-modal-body-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .news-modal-content {
        padding: 1rem;
    }
    
    .news-modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .news-modal-title {
        font-size: 1.8rem;
    }
    
    .news-modal-excerpt {
        font-size: 1rem;
    }
    
    .news-modal-body-content {
        font-size: 1rem;
    }
    
    #news-modal-body {
        padding: 1rem 0;
    }
}

/* Cookie Banner Styles - Modern Modal Popup */
.cookie-banner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s ease-out;
    pointer-events: none;
    will-change: opacity;
}

.cookie-banner-overlay.cookie-banner-visible {
    opacity: 1;
    pointer-events: all;
}

.cookie-banner {
    background: rgba(15, 20, 25, 0.98);
    border: 1px solid rgba(66, 153, 225, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease-out;
    position: relative;
    overflow-y: auto;
    opacity: 0;
    will-change: transform, opacity;
}

.cookie-banner-overlay.cookie-banner-visible .cookie-banner {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--glow-blue), var(--glow-cyan), var(--glow-blue));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    will-change: background-position;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cookie-banner-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transform: translateZ(0);
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(66, 153, 225, 0.15);
}

.cookie-banner-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(66, 153, 225, 0.15), rgba(99, 179, 237, 0.1));
    padding: 10px;
    border: 1px solid rgba(66, 153, 225, 0.2);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.cookie-banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
    background: linear-gradient(135deg, var(--glow-blue), var(--glow-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    flex: 1;
}

.cookie-banner-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(66, 153, 225, 0.15);
    margin-bottom: 1rem;
}

.cookie-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    bottom: -1px;
}

.cookie-tab:hover {
    color: var(--glow-cyan);
}

.cookie-tab.active {
    color: var(--glow-cyan);
    border-bottom-color: var(--glow-blue);
}

.cookie-banner-body {
    flex: 1;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-tab-content {
    display: none;
}

.cookie-tab-content.active {
    display: block;
}

.cookie-banner-message {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Cookie Categories */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-category {
    background: rgba(66, 153, 225, 0.05);
    border: 1px solid rgba(66, 153, 225, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    transform: translateZ(0);
}

.cookie-category:hover {
    background: rgba(66, 153, 225, 0.08);
    border-color: rgba(66, 153, 225, 0.25);
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.cookie-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.cookie-category-count {
    background: rgba(66, 153, 225, 0.2);
    color: var(--glow-cyan);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(99, 179, 237, 0.2);
    transition: background-color 0.2s ease, border-color 0.2s ease;
    border-radius: 26px;
    border: 1px solid rgba(66, 153, 225, 0.3);
    will-change: background-color;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-gray);
    transition: transform 0.2s ease, background-color 0.2s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    will-change: transform;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, var(--glow-blue), var(--glow-cyan));
    border-color: var(--glow-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px) translateZ(0);
    background-color: white;
    box-shadow: 0 2px 6px rgba(66, 153, 225, 0.5);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: rgba(99, 179, 237, 0.15);
}

.cookie-toggle input:disabled + .cookie-toggle-slider:before {
    background-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(66, 153, 225, 0.15);
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.85rem 1.75rem;
    border: 2px solid;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    position: relative;
    will-change: transform;
    transform: translateZ(0);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--glow-blue), var(--glow-cyan));
    border-color: var(--glow-blue);
    color: white;
    box-shadow: 
        0 4px 20px rgba(66, 153, 225, 0.4),
        0 0 0 0 rgba(66, 153, 225, 0.3);
    position: relative;
    z-index: 1;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(66, 153, 225, 0.5);
    border-color: var(--glow-cyan);
}

.cookie-btn-accept:active {
    transform: translateY(0);
}

.cookie-btn-necessary {
    background: rgba(66, 153, 225, 0.08);
    border-color: rgba(66, 153, 225, 0.4);
    color: var(--glow-cyan);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.cookie-btn-necessary:hover {
    background: rgba(66, 153, 225, 0.15);
    border-color: var(--glow-blue);
    color: var(--glow-cyan);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(66, 153, 225, 0.25);
}

.cookie-btn-necessary:active {
    transform: translateY(0);
}

.cookie-btn-decline {
    background: transparent;
    border-color: rgba(239, 68, 68, 0.4);
    color: rgba(239, 68, 68, 0.9);
    position: relative;
    z-index: 1;
}

.cookie-btn-decline:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.7);
    color: #ef4444;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(239, 68, 68, 0.2);
}

.cookie-btn-decline:active {
    transform: translateY(0);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-overlay {
        padding: 0.75rem;
    }
    
    .cookie-banner {
        max-width: 100%;
        border-radius: 16px;
    }
    
    .cookie-banner-content {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .cookie-banner-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-bottom: 1.25rem;
    }
    
    .cookie-banner-logo {
        width: 60px;
        height: 60px;
    }
    
    .cookie-banner-title {
        font-size: 1.3rem;
    }
    
    .cookie-banner-message {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner-overlay {
        padding: 0.5rem;
    }
    
    .cookie-banner {
        border-radius: 14px;
    }
    
    .cookie-banner-content {
        padding: 1.5rem;
        gap: 1.25rem;
    }
    
    .cookie-banner-header {
        gap: 0.75rem;
        padding-bottom: 1rem;
    }
    
    .cookie-banner-logo {
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    
    .cookie-banner-title {
        font-size: 1.15rem;
    }
    
    .cookie-banner-message {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .cookie-banner-actions {
        gap: 0.65rem;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 0.85rem 1.25rem;
        letter-spacing: 0.8px;
    }
}

