* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFB800;
    --light-yellow: #FFF9E6;
    --dark-yellow: #E6B800;
    --accent-yellow: #FFE066;
    --yellow-glow: rgba(255, 215, 0, 0.3);
    --yellow-shadow: rgba(255, 215, 0, 0.2);
    --yellow-border: rgba(255, 184, 0, 0.4);
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --silver-dark: #A0A0A0;
    --silver-glow: rgba(192, 192, 192, 0.3);
    --gold: #FFD700;
    --gold-light: #FFE55C;
    --gold-dark: #D4AF37;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --gold-color: #FFD700;
    --black-color: #1a1a1a;
    --silver-color: #C0C0C0;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-white: #FFFFFF;
    --bg-light: #FFFBF0;
    --border-color: #E0E0E0;
    
    --cartoon-blue: #4ECDC4;
    --cartoon-pink: #FF6B9D;
    --cartoon-purple: #A8A8FF;
    --cartoon-green: #95E1D3;
    --cartoon-orange: #FF8C42;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-super-bounce: 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--black-color);
}

.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 250, 240, 0.9) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 0 0 24px 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    padding: 0.75rem 2rem;
    box-shadow: 
        0 12px 48px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    animation: slideDown 0.6s ease-out;
    overflow: hidden;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.6), rgba(255, 184, 0, 0.5), rgba(255, 215, 0, 0.6));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.navbar:hover::after {
    opacity: 1;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.navbar:hover::before {
    left: 100%;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar:hover:not(.hidden) {
    box-shadow: 
        0 16px 56px rgba(255, 215, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 2px 6px rgba(255, 255, 255, 0.9),
        inset 0 -2px 6px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px) scale(1.01);
}

.navbar.scrolled {
    padding: 0.6rem 2rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 
        0 8px 36px rgba(255, 215, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.95),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(255, 215, 0, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 240, 0.95) 100%);
    border-color: rgba(255, 215, 0, 0.5);
}

.navbar.scrolled::after {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.7), rgba(255, 184, 0, 0.6), rgba(255, 215, 0, 0.7));
    opacity: 0.8;
}

.navbar.scrolled .logo img {
    height: 100px;
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.nav-container .logo {
    position: absolute;
    left: 0;
}

.nav-container .social-links {
    position: absolute;
    right: 0;
}


.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    min-height: 60px;
    background: transparent;
    border: none;
}

.logo::before {
    display: none;
}

.logo:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
    filter: none;
    transition: none;
    position: relative;
    z-index: 1;
}

.logo:hover img {
    transform: none;
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), rgba(255, 250, 240, 0.5));
    padding: 0.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.7), 0 2px 8px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(30, 30, 35, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding: 0.7rem 1.6rem;
    border-radius: 12px;
    display: block;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    background: transparent;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 184, 0, 0.35));
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), 0 2px 6px rgba(255, 215, 0, 0.2);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: rgba(30, 30, 35, 1);
    transform: translateY(-2px) scale(1.05);
    text-shadow: 0 1px 3px rgba(255, 215, 0, 0.3);
}

.nav-menu a.active {
    color: rgba(30, 30, 35, 1);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 184, 0, 0.4));
    box-shadow: 
        0 4px 12px rgba(255, 215, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(255, 184, 0, 0.2);
    transform: translateY(-2px) scale(1.05);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.nav-menu a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-menu a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a.active::after {
    display: none;
}

.admin-link {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: var(--text-dark) !important;
    font-weight: 600;
    transition: all var(--transition-bounce);
}

.admin-link::before {
    display: none;
}

.admin-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.nav-separator {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.5), rgba(255, 184, 0, 0.5), rgba(255, 215, 0, 0.5), transparent);
    margin: 0 1rem;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.3);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.social-icon {
    padding: 0.65rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.social-icon img,
.social-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: contain;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    filter: brightness(0.9);
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon.twitter::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon:hover::before {
    width: 300px;
    height: 300px;
}

.social-icon:hover::after {
    opacity: 1;
}

.social-icon.discord {
    background: rgba(88, 101, 242, 0.1);
    border-color: rgba(88, 101, 242, 0.2);
}

.social-icon.discord::after {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.3), rgba(88, 101, 242, 0.2));
}

.social-icon.discord::before {
    background: radial-gradient(circle, rgba(88, 101, 242, 0.4), transparent);
}

.social-icon.twitter {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
}

.social-icon.discord:hover {
    background: rgba(88, 101, 242, 0.25);
    border-color: rgba(88, 101, 242, 0.5);
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4), 0 0 0 2px rgba(88, 101, 242, 0.3);
}

.social-icon.twitter:hover {
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.social-icon.twitter:hover img,
.social-icon.twitter:hover svg {
    transform: scale(1.2) rotate(-5deg);
    filter: brightness(1.1);
}

.hero {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.95) 0%, rgba(255, 245, 230, 0.9) 50%, rgba(255, 255, 255, 0.85) 100%),
                url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0 2rem 6rem;
    text-align: center;
    min-height: 85vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, rgba(255, 184, 0, 0.08) 50%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -3rem;
}

.hero-logo {
    margin-bottom: -1.5rem;
    animation: fadeInDown 0.8s ease-out;
    background: transparent;
    padding: 0;
    border-radius: 20px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.baron-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
    animation: logoGlow 3s ease-in-out infinite;
    background: transparent;
}


@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(255, 215, 0, 0.1));
    }
    50% {
        filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    }
}

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

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

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 0;
    margin-top: -2.5rem;
    color: var(--black-color);
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    color: var(--black-color);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all var(--transition-base);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.35), 0 0 15px rgba(255, 184, 0, 0.2);
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5), 0 0 25px rgba(255, 184, 0, 0.3);
    background: linear-gradient(135deg, #FFE066, var(--primary-yellow));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
    border: 2px solid rgba(255, 184, 0, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--text-dark);
    border-color: var(--gold-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.25);
}

.work-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--bg-white);
    animation: fadeIn 1s ease-out;
}

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

.work-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 800;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.6;
    transition: all var(--transition-base);
    cursor: default;
}

.partner-item:hover {
    opacity: 1;
    color: var(--dark-yellow);
    transform: translateY(-3px) scale(1.05);
}

.experiences-carousel-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
    overflow: hidden;
    position: relative;
}

.experiences-carousel-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    color: var(--black-color);
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
}

.carousel-item {
    flex: 0 0 300px;
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--gold-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-color: var(--primary-yellow);
}

.carousel-item-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
}

.carousel-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.carousel-item-info {
    padding: 1.25rem;
}

.carousel-item-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-item-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-item.loading {
    opacity: 0.7;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 215, 0, 0.3);
    border-top-color: var(--primary-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.stats-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 5rem 2rem;
    background: var(--bg-light);
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--light-yellow));
    border-radius: 24px;
    border: 4px solid rgba(255, 184, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25), 0 4px 15px rgba(255, 184, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    min-width: 220px;
    transition: all var(--transition-super-bounce);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-card:nth-child(1) { animation-delay: 0.1s; border-color: #FF6B6B; }
.stat-card:nth-child(2) { animation-delay: 0.2s; border-color: #4ECDC4; }
.stat-card:nth-child(3) { animation-delay: 0.3s; border-color: #FFD93D; }
.stat-card:nth-child(4) { animation-delay: 0.3s; border-color: #A8E6CF; }

.stat-card:hover {
    transform: translateY(-12px) scale(1.08) rotate(2deg);
    box-shadow: 0 16px 50px rgba(255, 215, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.15);
    border-width: 5px;
}

.stat-card .stat-icon,
.stat-card .stat-icon-svg {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-icon-svg {
    width: 64px;
    height: 64px;
    color: var(--dark-yellow);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.3));
}

.stat-card:hover .stat-icon-svg {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-yellow);
}

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

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark-yellow);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.page-content {
    flex: 1;
    padding: 6rem 2rem 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    min-height: 60vh;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.page-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--black-color);
    text-align: center;
    letter-spacing: -0.03em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 4rem;
    font-weight: 400;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    scroll-margin-top: 120px;
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
}

.acquisition-models {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.acquisition-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.acquisition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-yellow);
}

.acquisition-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.acquisition-icon svg {
    width: 60%;
    height: 60%;
    max-width: 32px;
    max-height: 32px;
    flex-shrink: 0;
}

.acquisition-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black-color);
}

.acquisition-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: start;
}

.about-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--black-color);
    line-height: 1.2;
}

.info-text-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-yellow);
    transition: all var(--transition-base);
}

.info-text-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-text-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.info-text-box strong {
    color: var(--dark-yellow);
    font-weight: 700;
}

.gradient-box {
    background: linear-gradient(135deg, var(--light-yellow), var(--bg-white));
    border-left-color: var(--secondary-yellow);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-stat-item {
    flex: 1;
    min-width: 200px;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-yellow);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

#contact {
    scroll-margin-top: 120px;
}

.about-contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 240, 0.9));
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(255, 215, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.about-contact-form h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--text-dark), var(--dark-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.contact-form-inline .form-group {
    margin-bottom: 1.75rem;
}

.contact-form-inline input,
.contact-form-inline textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-form-inline input:focus,
.contact-form-inline textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2), 0 0 0 4px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-form-inline textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-inline .btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border-radius: 14px;
    letter-spacing: 0.02em;
}

.discord-note {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.discord-note strong {
    color: var(--dark-yellow);
    font-weight: 700;
}

.discord-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.discord-link:hover strong {
    color: var(--primary-yellow);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.discord-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.discord-link:hover::after {
    transform: scaleX(1);
}

.statistics-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem;
    scroll-margin-top: 120px;
}

.statistics-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--black-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.stats-grid .stat-box:nth-child(1) {
    grid-column: 1 / 5;
}

.stats-grid .stat-box:nth-child(2) {
    grid-column: 5 / 7;
}

.stats-grid .stat-box:nth-child(3) {
    grid-column: 1 / 3;
}

.stats-grid .stat-box:nth-child(4) {
    grid-column: 3 / 5;
}

.stats-grid .stat-box:nth-child(5) {
    grid-column: 5 / 7;
}

.stat-box {
    background: linear-gradient(135deg, var(--light-yellow), rgba(255, 255, 255, 0.9));
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 4px solid rgba(255, 184, 0, 0.4);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25), 0 4px 15px rgba(255, 184, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all var(--transition-super-bounce);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
}

.stat-box:nth-child(1) { animation-delay: 0.1s; }
.stat-box:nth-child(2) { animation-delay: 0.2s; }
.stat-box:nth-child(3) { animation-delay: 0.3s; }
.stat-box:nth-child(4) { animation-delay: 0.4s; }
.stat-box:nth-child(5) { animation-delay: 0.5s; }

.stat-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 16px 50px rgba(255, 215, 0, 0.4), 0 8px 25px rgba(0, 0, 0, 0.15);
    border-width: 5px;
}

.stat-icon,
.stat-icon-svg {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: transform var(--transition-super-bounce);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.stat-box .stat-icon-svg {
    width: 60px;
    height: 60px;
    color: var(--dark-yellow);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-box .stat-icon-svg svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.stat-box:hover .stat-icon,
.stat-box:hover .stat-icon-svg {
    transform: scale(1.3) rotate(10deg) translateY(-10px);
    animation: none;
    color: var(--primary-yellow);
}

.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--black-color);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-box h3 span {
    font-size: 1.5rem;
    margin-left: 0.2rem;
}

.stat-box p {
    color: var(--black-color);
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.chart-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    animation: fadeIn 1s ease-out;
}

.chart-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.chart-container {
    position: relative;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.chart-labels span {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 1rem;
    height: 350px;
    padding: 0 1rem;
    position: relative;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    max-width: 80px;
    background: linear-gradient(to top, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 12px 12px 0 0;
    transition: all var(--transition-bounce);
    animation: growUp 1.2s ease-out;
    animation-fill-mode: both;
    position: relative;
    box-shadow: 0 -4px 15px rgba(255, 215, 0, 0.3);
    border: 3px solid var(--dark-yellow);
    border-bottom: none;
}

.chart-bar-wrapper:nth-child(1) .chart-bar { animation-delay: 0.1s; }
.chart-bar-wrapper:nth-child(2) .chart-bar { animation-delay: 0.2s; }
.chart-bar-wrapper:nth-child(3) .chart-bar { animation-delay: 0.3s; }
.chart-bar-wrapper:nth-child(4) .chart-bar { animation-delay: 0.4s; }
.chart-bar-wrapper:nth-child(5) .chart-bar { animation-delay: 0.5s; }
.chart-bar-wrapper:nth-child(6) .chart-bar { animation-delay: 0.6s; }

@keyframes growUp {
    from {
        height: 0 !important;
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.bar-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-yellow);
    white-space: nowrap;
    opacity: 0;
    transition: opacity var(--transition-base);
    font-family: 'Poppins', sans-serif;
}

.chart-bar-wrapper:hover .bar-value {
    opacity: 1;
}

.chart-bar:hover {
    transform: scaleY(1.1) translateY(-8px);
    box-shadow: 0 -8px 30px rgba(255, 215, 0, 0.5);
    border-width: 4px;
}

.chart-y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 2rem;
    bottom: 2rem;
    width: 40px;
    padding-right: 1rem;
    border-right: 2px solid var(--border-color);
}

.chart-y-axis span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
}

.experiences-section {
    max-width: 1800px;
    margin: 0 auto;
    padding: 6rem 2rem 1rem 2rem;
    scroll-margin-top: 120px;
}

.experiences-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.experience-card {
    background: var(--bg-white);
    border: 3px solid var(--gold-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.experience-card:nth-child(1) { animation-delay: 0.1s; }
.experience-card:nth-child(2) { animation-delay: 0.2s; }
.experience-card:nth-child(3) { animation-delay: 0.3s; }
.experience-card:nth-child(4) { animation-delay: 0.4s; }
.experience-card:nth-child(5) { animation-delay: 0.5s; }
.experience-card:nth-child(6) { animation-delay: 0.6s; }

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
    border-color: var(--gold-color);
}

.experience-image {
    width: 100%;
    height: 200px;
    display: block;
    position: relative;
    transition: transform 0.3s ease;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.experience-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.experience-card:hover .experience-image {
    transform: scale(1.05);
}

.play-icon {
    font-size: 4.5rem;
    color: white;
    opacity: 0.9;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-base);
    position: relative;
    z-index: 2;
}

.experience-card:hover .play-icon {
    transform: scale(1.2);
    opacity: 1;
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.experience-card.loading {
    opacity: 0.7;
}

.experience-info {
    padding: 1rem 1.25rem 0.5rem 1.25rem;
}

.experience-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1.3;
}

.experience-info > p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.7;
}

.experience-creator {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.experience-stats-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    align-items: flex-end;
}

.stat-item-overlay {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item-overlay:hover {
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.stat-item-overlay svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    flex-shrink: 0;
    color: var(--primary-yellow);
}

.stat-item-overlay span {
    color: white;
    font-weight: 600;
}

.play-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.play-btn:hover::before {
    width: 300px;
    height: 300px;
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.contact-section {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-method {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-yellow);
    transition: all var(--transition-base);
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-method h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
}

.contact-method p,
.contact-method a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition-base);
}

.contact-method a:hover {
    color: var(--dark-yellow);
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    animation: fadeIn 0.8s ease-out;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.admin-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 1rem;
    width: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.admin-section h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    margin-top: 0;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--border-color);
}

.admin-tab {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Inter', sans-serif;
    margin-bottom: -3px;
}

.admin-tab:hover {
    color: var(--dark-yellow);
}

.admin-tab.active {
    color: var(--dark-yellow);
    border-bottom-color: var(--primary-yellow);
}

.admin-section-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.3s ease-out;
}

.admin-dashboard {
    margin-top: 2rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 0;
}

.admin-stat-card {
    background: linear-gradient(135deg, var(--light-yellow), rgba(255, 255, 255, 0.95));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15), 0 2px 10px rgba(255, 184, 0, 0.1);
    transition: all var(--transition-bounce);
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 3px solid rgba(255, 184, 0, 0.4);
    position: relative;
    overflow: visible;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.admin-stat-card:hover::before {
    left: 100%;
}

.admin-stat-card:nth-child(1) { 
    animation-delay: 0.1s; 
}

.admin-stat-card:nth-child(2) { 
    animation-delay: 0.2s; 
}

.admin-stat-card:nth-child(3) { 
    animation-delay: 0.3s; 
}

.admin-stat-card:nth-child(4) { 
    animation-delay: 0.4s; 
}

.admin-stat-card:nth-child(5) { 
    animation-delay: 0.5s; 
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admin-stat-card:hover {
    transform: translateY(-8px) scale(1.05) rotate(1deg);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--dark-yellow);
}

.admin-stat-icon {
    width: 48px;
    height: 48px;
    color: var(--dark-yellow);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-stat-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

.admin-stat-card h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark-yellow);
    margin-bottom: 0;
    font-family: 'Poppins', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: countUp 0.8s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: var(--primary-yellow);
    }
}

.btn-small {
    padding: 0.6rem 1.2rem;
    background: var(--primary-yellow);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.btn-small:hover {
    background: var(--secondary-yellow);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.admin-actions {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    animation: fadeIn 0.8s ease-out;
}

.admin-actions h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.action-btn {
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.admin-table-section {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    animation: fadeIn 1s ease-out;
}

.admin-table-section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 800;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.admin-table thead {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
}

.admin-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.admin-table td {
    padding: 1.2rem;
    border-top: 1px solid var(--border-color);
    transition: background var(--transition-fast);
}

.admin-table tbody tr:hover {
    background: var(--bg-light);
}

.status {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.status.success {
    background: #4CAF50;
    color: white;
}

.admin-edit-stats,
.admin-add-game,
.admin-stats-display {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border: 3px solid var(--primary-yellow);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    animation: fadeInDown 0.6s ease-out;
    display: block;
    visibility: visible;
    opacity: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-games-list {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 2.5rem;
    border: 4px solid var(--primary-yellow);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.admin-edit-stats h2,
.admin-add-game h2,
.admin-stats-display h2,
.admin-games-list h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.stats-edit-form,
.add-game-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-edit-form .form-group,
.add-game-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stats-edit-form label,
.add-game-form label {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.stats-edit-form input,
.add-game-form input {
    padding: 1rem;
    border: 3px solid var(--primary-yellow);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    transition: all var(--transition-base);
}

.stats-edit-form input:focus,
.add-game-form input:focus {
    outline: none;
    border-color: var(--dark-yellow);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.2);
    transform: scale(1.02);
}

.games-list-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.game-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 3px solid var(--primary-yellow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-bounce);
}

.game-item:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border-color: var(--dark-yellow);
}

.game-info h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.game-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.game-link {
    color: var(--dark-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.game-link:hover {
    color: var(--primary-yellow);
    transform: translateX(3px);
}

.btn-danger {
    background: #FF6B6B;
    color: white;
}

.btn-danger:hover {
    background: #FF5252;
    transform: translateY(-2px) scale(1.05);
}

.games-admin-section {
    margin-top: 2rem;
    display: block;
    visibility: visible;
    width: 100%;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.games-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.games-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
}

.games-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.action-btn-secondary,
.action-btn-primary,
.action-btn-danger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.action-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.action-btn-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
}

.action-btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 240, 0.9));
    color: var(--text-dark);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    font-weight: 800;
}

.action-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    border-color: var(--dark-yellow);
}

.action-btn-danger {
    background: rgba(255, 240, 240, 0.9);
    color: #d32f2f;
    border: 2px solid rgba(211, 47, 47, 0.3);
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.1);
}

.action-btn-danger:hover {
    background: rgba(211, 47, 47, 0.1);
    border-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.3);
}

.action-btn-secondary svg,
.action-btn-primary svg,
.action-btn-danger svg {
    width: 18px;
    height: 18px;
}

.admin-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    min-height: 200px;
    width: 100%;
}

.admin-game-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    animation: fadeInUp 0.4s ease-out;
    animation-fill-mode: both;
}

.admin-game-card:nth-child(1) { animation-delay: 0.1s; }
.admin-game-card:nth-child(2) { animation-delay: 0.2s; }
.admin-game-card:nth-child(3) { animation-delay: 0.3s; }
.admin-game-card:nth-child(4) { animation-delay: 0.4s; }
.admin-game-card:nth-child(5) { animation-delay: 0.5s; }
.admin-game-card:nth-child(6) { animation-delay: 0.6s; }

.admin-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.admin-game-card.loading {
    opacity: 0.7;
}

.admin-game-thumbnail {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.admin-game-details {
    padding: 1.5rem;
}

.admin-game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.admin-game-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.admin-delete-btn {
    background: transparent;
    border: none;
    color: #ff4444;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-delete-btn:hover {
    background: rgba(255, 68, 68, 0.1);
    transform: scale(1.1);
}

.admin-game-id {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.admin-game-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.admin-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.custom-modal {
    display: flex;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    border: 2px solid var(--gold-color);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.custom-modal.show .custom-modal-content {
    transform: scale(1);
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 240, 0.98) 100%);
}

.custom-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.custom-modal-body {
    padding: 2rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.custom-modal-body p {
    margin: 0;
    color: var(--text-dark);
}

.custom-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border-color);
    background: rgba(255, 250, 240, 0.5);
}

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

.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 2rem;
}

.auth-modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    border: 2px solid var(--gold-color);
    overflow: hidden;
}

.auth-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.5) 0%, rgba(255, 245, 230, 0.3) 100%);
}

.auth-modal-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.auth-modal-body {
    padding: 2rem;
}

.auth-modal-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.auth-modal-body .form-group {
    margin-bottom: 0;
}

.auth-modal-body .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-modal-body .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.auth-modal-body .form-group input:focus {
    outline: none;
    border-color: var(--gold-color);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.auth-modal-footer {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    justify-content: center;
}

.auth-modal-footer .btn {
    width: 100%;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-base);
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

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

footer {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 240, 0.98) 50%, rgba(255, 245, 230, 0.95) 100%);
    border-top: 2px solid var(--gold-color);
    padding: 0.75rem 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.03);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-color) 20%, var(--gold-color) 80%, transparent 100%);
    opacity: 0.6;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gold-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 12px rgba(255, 215, 0, 0.3));
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social .social-link {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(255, 250, 240, 1) 100%);
    border: 1.5px solid var(--gold-color);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 2px rgba(255, 255, 255, 0.9);
    position: relative;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.footer-social .social-link:hover::before {
    left: 100%;
}

.footer-social .social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, var(--gold-color) 0%, var(--secondary-yellow) 100%);
    border-color: var(--gold-color);
    transform: translateY(-4px) scale(1.1) rotate(2deg);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.footer-social .social-link:hover img {
    transform: scale(1.2) rotate(-2deg);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom:hover p {
    opacity: 1;
}

@media (max-width: 768px) {
    footer {
        padding: 0.75rem 1.25rem 0.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-logo img {
        height: 28px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-social .social-link {
        width: 30px;
        height: 30px;
    }
    
    .footer-bottom {
        font-size: 0.65rem;
        padding-top: 0.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-open,
    .nav-menu-close {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .navbar {
        display: block !important;
        padding: 0.5rem 1rem;
        border-radius: 0 0 16px 16px;
        overflow: visible !important;
    }

    .nav-container {
        overflow: visible !important;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: auto;
        padding: 0;
        gap: 1rem;
    }

    .nav-container .logo {
        position: relative;
        left: auto;
        z-index: 1001;
        flex-shrink: 0;
    }

    .nav-container .logo img {
        height: 75px;
        width: auto;
    }

    .nav-container .logo {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-container .social-links {
        display: none;
    }


    .mobile-menu-open {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(255, 215, 0, 0.4);
        border-radius: 10px;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-dark);
        transition: all 0.25s ease;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
        flex-shrink: 0;
    }

    .mobile-menu-open:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.5);
    }

    .mobile-menu-open svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }

    .nav-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 215, 0, 0.4);
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        z-index: 100001;
        position: fixed;
        top: 1.5rem;
        right: 1rem;
        color: var(--text-dark);
        font-size: 1.75rem;
        line-height: 1;
        transition: all 0.25s ease;
        margin: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-menu-close:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.5);
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(40px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 5rem 0 2rem 0 !important;
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 10000 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        list-style: none !important;
        margin: 0 !important;
        overflow-y: auto !important;
        display: flex !important;
        border: none !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
    }

    .nav-menu li {
        width: 100% !important;
        display: block !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        min-height: auto !important;
    }


    .nav-menu a {
        padding: 1.1rem 1.5rem !important;
        font-size: 1rem !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        border-radius: 0 !important;
        transition: all 0.25s ease !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
        color: var(--text-dark) !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 10001 !important;
        background: transparent !important;
        min-height: 48px !important;
    }

    .nav-menu li:not(.nav-menu-social):last-child a {
        border-bottom: none !important;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 184, 0, 0.2));
        padding-left: 2rem;
    }

    .nav-separator {
        display: none;
    }

    .nav-container .social-links {
        display: none;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
        min-height: 65vh;
        background-attachment: scroll;
    }

    .hero-content {
        margin-top: -1rem;
    }

    .hero-logo {
        margin-bottom: -1rem;
    }

    .baron-logo {
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-top: -1.5rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-section h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-inline input,
    .contact-form-inline textarea {
        font-size: 16px;
        padding: 0.875rem 1rem;
        min-height: 48px;
        border-radius: 12px;
    }

    .contact-form-inline textarea {
        min-height: 140px;
    }

    .contact-form-inline .btn-primary {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
        margin-top: 0.75rem;
    }

    .discord-note {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.95rem;
    }

    .experiences-carousel-section {
        padding: 3rem 1.5rem;
    }

    .experiences-carousel-section h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .carousel-item {
        flex: 0 0 calc(48% - 0.5rem);
        min-width: 0;
    }

    .carousel-track {
        gap: 0.75rem;
    }

    .carousel-item-image {
        height: 160px;
    }

    .carousel-item-info {
        padding: 1rem;
    }

    .carousel-item-info h4 {
        font-size: 1rem;
    }

    .carousel-item-info p {
        font-size: 0.85rem;
    }

    .stats-preview {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 3rem 1.5rem;
    }

    .stat-card {
        width: 100%;
        max-width: 100%;
        padding: 1.75rem;
        min-width: auto;
    }

    .experiences-section {
        padding: 4rem 1.5rem 2rem;
    }

    .experiences-section h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }

    .experience-card {
        padding: 1rem 1rem 0.75rem;
    }

    .experience-image {
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 0.75rem;
    }

    .experience-info h3 {
        font-size: clamp(1rem, 3.5vw, 1.15rem);
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .experience-info > p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .experience-link {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        min-height: 40px;
    }

    .experience-stats-overlay {
        bottom: 8px;
        right: 8px;
        gap: 6px;
    }

    .stat-item-overlay {
        padding: 5px 8px;
        font-size: 0.7rem;
        gap: 4px;
        border-radius: 6px;
    }

    .stat-item-overlay svg {
        width: 12px;
        height: 12px;
        stroke-width: 2;
    }

    .stat-item-overlay span {
        font-size: 0.7rem;
    }

    .statistics-section {
        padding: 4rem 1.5rem;
    }

    .statistics-section h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin: 1.5rem auto 0;
    }
    
    .stats-grid .stat-box {
        grid-column: 1 !important;
        width: 100%;
    }
    
    .stats-grid .stat-box:nth-child(1),
    .stats-grid .stat-box:nth-child(2),
    .stats-grid .stat-box:nth-child(3),
    .stats-grid .stat-box:nth-child(4),
    .stats-grid .stat-box:nth-child(5) {
        grid-column: 1 !important;
        width: 100% !important;
    }
    
    .stat-box {
        min-width: auto !important;
        max-width: none !important;
        padding: 1.25rem 1rem;
    }

    .stat-box h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        margin-bottom: 0.5rem;
    }

    .stat-number {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .stat-icon-svg {
        width: 40px;
        height: 40px;
    }

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

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .admin-tabs {
        flex-wrap: wrap;
    }

    .admin-tab {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .games-header {
        flex-direction: column;
    }

    .games-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .action-btn-secondary,
    .action-btn-primary {
        flex: 1;
        min-width: 120px;
        min-height: 48px;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .games-actions {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .games-actions button {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 140px;
    }

    .admin-games-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .admin-game-card {
        padding: 1.25rem;
    }

    .admin-game-card h3 {
        font-size: 1.1rem;
    }

    .admin-game-card p {
        font-size: 0.85rem;
    }

    .modal {
        padding: 0.5rem;
        margin: 0;
        align-items: center;
        justify-content: center;
    }

    .modal-content {
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        margin: 0.5rem;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 16px;
    }

    .modal-header {
        padding: 1.25rem 1.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .modal-header h2 {
        font-size: 1.35rem;
        flex: 1;
        min-width: 200px;
    }

    .modal-close {
        font-size: 1.75rem;
        padding: 0.25rem;
        min-width: 36px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-body {
        padding: 1.5rem;
        max-height: calc(90vh - 150px);
        overflow-y: auto;
    }

    .modal-body .form-group {
        margin-bottom: 1.25rem;
    }

    .modal-body .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .modal-body .form-group input,
    .modal-body .form-group textarea {
        font-size: 16px;
        padding: 0.875rem 1rem;
        width: 100%;
    }

    .modal-body .form-group small {
        font-size: 0.8rem;
        margin-top: 0.5rem;
        display: block;
    }

    .modal-footer {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
    }

    .modal-footer .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .auth-modal {
        padding: 1rem 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .auth-modal-content {
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        margin: 0.5rem;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 16px;
    }

    .auth-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .auth-modal-header h2 {
        font-size: 1.5rem;
    }

    .auth-modal-body {
        padding: 1.5rem;
    }

    .auth-modal-body p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .auth-modal-body .form-group input {
        font-size: 16px;
        padding: 0.875rem 1rem;
    }

    .auth-modal-footer {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .auth-modal-footer .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .mailbox-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .mailbox-header h2 {
        font-size: 1.5rem;
    }

    .navbar {
        display: block !important;
        padding: 0.5rem 1rem;
        border-radius: 0 0 16px 16px;
        overflow: visible !important;
    }

    .nav-container {
        overflow: visible !important;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: auto;
        padding: 0;
        gap: 1rem;
    }

    .nav-container .logo {
        position: relative;
        left: auto;
        z-index: 1001;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-container .logo img {
        height: 75px;
        width: auto;
    }

    .nav-container .social-links {
        display: none;
    }

    .navbar.scrolled {
        padding: 0.5rem 1rem;
    }

    .navbar.scrolled .logo img {
        height: 75px !important;
    }

    .nav-container {
        gap: 1rem;
    }

    .mobile-menu-open {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        border: 2px solid rgba(255, 215, 0, 0.4);
        border-radius: 10px;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
        position: absolute;
        right: 0.75rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-dark);
        transition: all 0.25s ease;
        box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
        flex-shrink: 0;
    }

    .mobile-menu-open:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.5);
    }

    .mobile-menu-open svg {
        width: 24px;
        height: 24px;
        stroke: currentColor;
    }

    .nav-menu-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(255, 215, 0, 0.4);
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        z-index: 100001;
        position: fixed;
        top: 1.5rem;
        right: 1rem;
        color: var(--text-dark);
        font-size: 1.75rem;
        line-height: 1;
        transition: all 0.25s ease;
        margin: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-menu-close:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.5);
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        min-height: 100vh !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(40px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(40px) saturate(200%) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 5rem 0 2rem 0 !important;
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease !important;
        z-index: 10000 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
        list-style: none !important;
        margin: 0 !important;
        overflow-y: auto !important;
        display: flex !important;
        border: none !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
    }

    .nav-menu li {
        width: 100% !important;
        display: block !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        min-height: auto !important;
    }

    .nav-menu a {
        padding: 1.1rem 1.5rem !important;
        font-size: 1rem !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        border-radius: 0 !important;
        transition: all 0.25s ease !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1) !important;
        color: var(--text-dark) !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        position: relative !important;
        z-index: 10001 !important;
        background: transparent !important;
        min-height: 48px !important;
    }

    .nav-menu li:not(.nav-menu-social):last-child a {
        border-bottom: none !important;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 184, 0, 0.2));
        padding-left: 2rem;
    }

    .nav-menu-social {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
    }

    .nav-social-link {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        padding: 1rem 1.5rem !important;
        border-radius: 12px !important;
        margin: 0.25rem 1rem !important;
        background: rgba(255, 255, 255, 0.5) !important;
        border: 1px solid rgba(255, 215, 0, 0.2) !important;
        transition: all 0.25s ease !important;
    }

    .nav-social-link:hover {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 184, 0, 0.2)) !important;
        border-color: rgba(255, 215, 0, 0.4) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2) !important;
        padding-left: 1.5rem !important;
    }

    .nav-social-link img {
        width: 24px !important;
        height: 24px !important;
        object-fit: contain;
        flex-shrink: 0;
        border-radius: 4px;
        filter: brightness(0.95);
        display: block;
    }

    .nav-social-link:hover img {
        filter: brightness(1.1);
        transform: scale(1.1);
    }

    .nav-social-link span {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1rem;
        line-height: 1;
        display: flex;
        align-items: center;
        margin-top: -2px;
    }

    .nav-separator {
        display: none;
    }

    .about-contact-form {
        padding: 2.5rem 2rem;
        max-width: 100%;
    }

    .about-contact-form h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .contact-form-inline input,
    .contact-form-inline textarea {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .contact-form-inline .btn-primary {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .partners {
        gap: 3rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .acquisition-models {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
        line-height: 1.2;
    }

    .hero-content p {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin: 1.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 1rem 2rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box h3 {
        font-size: 1.8rem;
    }

    .stat-box p {
        font-size: 1rem;
    }

    .stat-icon-svg {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .experiences-section h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 2rem;
    }

    .experience-card {
        padding: 1.5rem;
    }

    .experience-card h3 {
        font-size: 1.25rem;
    }

    .experience-card p {
        font-size: 0.9rem;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .carousel-item {
        flex: 0 0 calc(48% - 0.5rem);
    }

    .carousel-track {
        gap: 0.75rem;
    }

    .about-hero h1 {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .acquisition-card {
        padding: 2rem 1.5rem;
    }

    .acquisition-card h3 {
        font-size: 1.5rem;
    }

    .acquisition-card p {
        font-size: 0.95rem;
    }

    .acquisition-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 1rem;
    }

    .acquisition-icon svg {
        width: 60%;
        height: 60%;
        max-width: 28px;
        max-height: 28px;
    }

    .about-info h2 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .info-text-box {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .page-content {
        padding: 6rem 1.5rem 3rem;
    }

    .statistics-section {
        padding: 4rem 1.5rem;
    }

    .statistics-section h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .nav-logo img {
        height: 32px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .contact-form-inline {
        gap: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }

    .mailbox-message {
        padding: 1.25rem;
    }

    .message-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .message-actions {
        width: 100%;
        justify-content: space-between;
    }

    .admin-stat-card {
        padding: 1.5rem;
    }

    .admin-stat-card h3 {
        font-size: 0.9rem;
    }

    .admin-stat-icon {
        width: 28px;
        height: 28px;
    }

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

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }

    .navbar {
        padding: 0.6rem 1rem;
    }

    .nav-container {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    .nav-container .logo img {
        height: 70px;
    }

    .navbar.scrolled .logo img {
        height: 70px !important;
    }

    .mobile-menu-open {
        width: 40px;
        height: 40px;
        right: 0.75rem;
    }

    .mobile-menu-open svg {
        width: 20px;
        height: 20px;
    }

    .nav-menu {
        gap: 0.4rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
        min-height: 40px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .btn,
    .action-btn-primary,
    .action-btn-secondary {
        min-height: 44px;
        touch-action: manipulation;
    }

    .carousel-item {
        touch-action: pan-y;
    }

    .experience-card {
        touch-action: manipulation;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    textarea {
        font-size: 16px !important;
        min-height: 44px;
    }

    .stat-box,
    .admin-stat-card {
        touch-action: manipulation;
    }

    .hero {
        padding: 3.5rem 1.25rem 2.5rem;
        min-height: 60vh;
    }

    .hero-content {
        margin-top: -0.5rem;
    }

    .baron-logo {
        max-width: 85%;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-top: -1rem;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3.5vw, 1.15rem);
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        max-width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-content {
        padding: 3.5rem 1.5rem 2rem;
    }

    .page-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .stat-box {
        padding: 1.25rem;
    }

    .stat-box h3 {
        font-size: 1.5rem;
    }

    .stat-icon-svg {
        width: 45px;
        height: 45px;
    }

    .experiences-section {
        padding: 3.5rem 1.25rem 2rem;
    }

    .experiences-grid {
        gap: 0.75rem;
    }

    .experience-card {
        padding: 0.875rem 0.875rem 0.625rem;
    }

    .experience-image {
        margin-bottom: 0.625rem;
    }

    .experience-info h3 {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        margin-bottom: 0.375rem;
    }

    .experience-info > p {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .experience-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.875rem;
        min-height: 38px;
    }

    .carousel-item {
        flex: 0 0 90%;
    }

    .carousel-item-image {
        height: 140px;
    }

    .experience-stats-overlay {
        bottom: 6px;
        right: 6px;
        gap: 5px;
    }

    .stat-item-overlay {
        padding: 4px 7px;
        font-size: 0.65rem;
        gap: 3px;
        border-radius: 5px;
    }

    .stat-item-overlay svg {
        width: 11px;
        height: 11px;
        stroke-width: 2;
    }

    .stat-item-overlay span {
        font-size: 0.65rem;
    }

    .about-section {
        padding: 4rem 1rem;
    }

    .about-hero {
        margin-bottom: 3rem;
    }

    .acquisition-card {
        padding: 1.5rem 1rem;
    }

    .acquisition-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }

    .acquisition-icon svg {
        width: 60%;
        height: 60%;
        max-width: 32px;
        max-height: 32px;
    }

    .about-contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-form-inline input,
    .contact-form-inline textarea {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }

    .contact-form-inline .btn-primary {
        padding: 1rem 1.25rem;
        width: 100%;
    }

    .statistics-section {
        padding: 3rem 1rem;
    }

    .stats-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .stats-grid .stat-box:nth-child(1),
    .stats-grid .stat-box:nth-child(2),
    .stats-grid .stat-box:nth-child(3),
    .stats-grid .stat-box:nth-child(4),
    .stats-grid .stat-box:nth-child(5) {
        grid-column: 1 !important;
        width: 100% !important;
    }
    
    
    .stat-box {
        min-width: auto !important;
        max-width: none !important;
        width: auto !important;
    }

    .admin-stat-card {
        padding: 1.25rem;
    }

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

    .footer {
        padding: 0.5rem 1rem 0.4rem;
    }

    .footer-bottom {
        font-size: 0.6rem;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .page-content h1 {
        font-size: 1.75rem;
    }

    .stat-box h3 {
        font-size: 1.25rem;
    }

    .experience-card h3 {
        font-size: 1.1rem;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
        min-height: 44px;
    }

    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .nav-container .logo img {
        height: 65px;
    }

    .navbar.scrolled .logo img {
        height: 65px !important;
    }

    .nav-menu {
        gap: 0;
        top: 0 !important;
        height: 100vh !important;
        min-height: 100vh !important;
        padding: 5rem 0 2rem 0 !important;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
        min-height: 48px;
    }

    .modal-content {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        margin: 1rem;
        max-height: 90vh;
        border-radius: 16px;
    }

    .modal-content::-webkit-scrollbar {
        width: 6px;
    }

    .modal-content::-webkit-scrollbar-track {
        background: rgba(255, 215, 0, 0.1);
        border-radius: 10px;
    }

    .modal-content::-webkit-scrollbar-thumb {
        background: rgba(255, 215, 0, 0.3);
        border-radius: 10px;
    }

    .modal-header {
        padding: 1rem 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .modal-footer {
        padding: 1rem 1.25rem;
    }

    .auth-modal-content {
        width: calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        margin: 1rem;
        border-radius: 16px;
    }

    .auth-modal-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .auth-modal-header h2 {
        font-size: 1.3rem;
    }

    .auth-modal-body {
        padding: 1.25rem;
    }

    .auth-modal-footer {
        padding: 1rem 1.25rem 1.25rem;
    }

    .page-content {
        padding: 3rem 1.25rem 1.5rem;
    }

    .about-section {
        padding: 3.5rem 1.25rem;
    }

    .contact-section {
        padding: 3.5rem 1.25rem;
    }

    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-section h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 1.5rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .acquisition-models {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .acquisition-card {
        padding: 1.75rem;
    }

    .acquisition-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 1rem;
    }

    .acquisition-icon svg {
        width: 60%;
        height: 60%;
        max-width: 30px;
        max-height: 30px;
    }

    .info-text-box {
        padding: 1.5rem;
    }

    .info-text-box p {
        font-size: 1rem;
    }

    .statistics-section {
        padding: 4rem 1.5rem;
    }
}

@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        min-height: auto;
        padding: 3rem 2rem;
    }

    .navbar {
        padding: 0.5rem 1.5rem;
    }

    .page-content {
        padding: 4rem 1.5rem 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

.mailbox-section {
    padding: 2rem 0;
}

.mailbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.mailbox-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.mailbox-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.mailbox-messages {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 200px;
}

#mailbox-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mailbox-message {
    background: var(--bg-white);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mailbox-message.unread {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 250, 240, 0.8));
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.mailbox-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.message-meta h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.message-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.message-sender {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.message-date {
    color: var(--text-light);
    font-size: 0.85rem;
    opacity: 0.7;
}

.message-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.unread-badge {
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-yellow));
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-delete-btn {
    background: transparent;
    border: 2px solid rgba(255, 107, 107, 0.3);
    color: #FF6B6B;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-delete-btn:hover {
    background: #FF6B6B;
    color: white;
    border-color: #FF6B6B;
    transform: scale(1.1);
}

.message-body {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.message-body p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

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

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
