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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: #fff;
    overflow-x: hidden;
}

/* Desktop Navigation - wycentrowane na górze */
.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover, .nav-btn.active {
    background: rgba(83, 252, 24, 0.2);
    border-color: #53fc18;
    color: #53fc18;
    box-shadow: 0 5px 15px rgba(83, 252, 24, 0.3);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: rgba(83, 252, 24, 0.3);
}

/* Mobile Navigation - Hamburger Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
    position: relative;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #53fc18;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:first-child {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-left: 2px solid rgba(83, 252, 24, 0.3);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

/* Mobile Menu Header - z pixelowym logo */
.mobile-menu-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(83, 252, 24, 0.2);
}

.mobile-menu-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #53fc18;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(83, 252, 24, 0.4);
}

/* Pixelowe logo STERYD3 w mobile menu */
.mobile-menu-pixel-logo {
    height: 2rem;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(83, 252, 24, 0.6));
    transition: all 0.3s ease;
    animation: mobileLogoGlow 2s ease-in-out infinite alternate;
}

.mobile-menu-pixel-logo:hover {
    filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.8));
    transform: scale(1.05);
}

/* Animacja glow dla pixelowego logo w mobile menu */
@keyframes mobileLogoGlow {
    from {
        filter: drop-shadow(0 0 15px rgba(83, 252, 24, 0.6));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.8));
    }
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.2);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.mobile-nav-btn:hover, .mobile-nav-btn.active {
    background: rgba(83, 252, 24, 0.2);
    border-color: #53fc18;
    color: #53fc18;
    transform: translateX(10px);
}

.mobile-nav-btn.active {
    background: rgba(83, 252, 24, 0.3);
    box-shadow: 0 0 15px rgba(83, 252, 24, 0.3);
}

/* Hero Section - pełny ekran */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(83, 252, 24, 0.1) 0%, transparent 70%);
}

/* Logo nad napisem STERYD3 */
.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #53fc18;
    box-shadow: 0 0 30px rgba(83, 252, 24, 0.6);
    background: url('images/logo-steryd3.webp') center center;
    background-size: cover;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
    box-shadow: 0 0 40px rgba(83, 252, 24, 0.8);
    transform: scale(1.1);
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

/* Logo STERYD3 zamiast tekstu - 6rem */
.hero-text-logo {
    margin-bottom: 1rem;
}

.main-logo {
    height: 6rem;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.5));
    animation: logoGlow 2s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(83, 252, 24, 0.8));
}

/* Animacja glow dla głównego logo */
@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.5));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(83, 252, 24, 0.8));
    }
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #53fc18, #45d612);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(83, 252, 24, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.5);
}

/* WSPÓLNE STYLE DLA WSZYSTKICH PIXELOWYCH TYTUŁÓW SEKCJI */
.section-title-logo {
    height: 4rem;  /* 4rem dla wszystkich */
    width: auto;
    filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.6));
    transition: all 0.3s ease;
    animation: sectionTitleGlow 2s ease-in-out infinite alternate;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-title-logo:hover {
    filter: drop-shadow(0 0 25px rgba(83, 252, 24, 0.8));
    transform: scale(1.05);
}

/* Animacja glow dla pixelowych tytułów sekcji */
@keyframes sectionTitleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(83, 252, 24, 0.6));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(83, 252, 24, 0.8));
    }
}

/* Stream Section */
.stream-section {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.8);
}

.stream-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stream-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(83, 252, 24, 0.2);
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stream-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.3);
    margin-top: 2rem;
}

.stream-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.stream-controls {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.control-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.control-btn:hover {
    background: rgba(83, 252, 24, 0.2);
    transform: translateY(-2px);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Kick button z logo */
.control-btn.kick-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.kick-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.control-btn.kick-btn:hover .kick-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Support Section */
.support-section {
    padding: 4rem 2rem;
    background: rgba(83, 252, 24, 0.05);
}

.support-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.support-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.support-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.support-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border: 2px solid rgba(83, 252, 24, 0.3);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    min-height: 180px;
}

.support-btn:hover {
    background: rgba(83, 252, 24, 0.2);
    border-color: #53fc18;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.4);
}

/* Donate button z logo */
.support-btn.donate-btn .icon {
    background-image: url('images/donate.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.support-btn.donate-btn:hover .icon {
    filter: brightness(1.4);
}

/* Instant Gaming button z logo */
.support-btn.instant-btn .icon {
    background-image: url('images/instant.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.support-btn.instant-btn:hover .icon {
    filter: brightness(1.4);
}

/* CaseHug button z logo */
.support-btn.casehug-btn .icon {
    background-image: url('images/casehug.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.support-btn.casehug-btn:hover .icon {
    filter: brightness(1.4);
}

/* Sklep button z logo */
.support-btn.sklep-btn .icon {
    background-image: url('images/sklep.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    font-size: 0;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.support-btn.sklep-btn:hover .icon {
    filter: brightness(1.4);
}

/* AD Badge dla CaseHug i Instant Gaming w Support */
.support-btn.casehug-btn::after,
.support-btn.instant-btn::after {
    content: "AD";
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.support-btn.casehug-btn:hover::after,
.support-btn.instant-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

.support-btn .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.support-btn .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #53fc18;
    margin-bottom: 0.5rem;
}

.support-btn .description {
    font-size: 0.9rem;
    opacity: 0.8;
    text-align: center;
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

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

.contact-card {
    padding: 2rem;
    background: rgba(83, 252, 24, 0.1);
    border: 2px solid rgba(83, 252, 24, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(83, 252, 24, 0.15);
    border-color: #53fc18;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.4);
}

.contact-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #53fc18;
}

.contact-card .title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #53fc18;
    margin-bottom: 1rem;
}

.contact-card .email {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.contact-card .email:hover {
    background: rgba(83, 252, 24, 0.2);
    color: #53fc18;
    transform: translateY(-2px);
}

/* Discord w kontakcie */
.discord-icon {
    margin-bottom: 1rem;
}

.discord-contact-logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    filter: brightness(1.2) saturate(1.1);
    transition: filter 0.3s ease;
}

.contact-card:hover .discord-contact-logo {
    filter: brightness(1.5) saturate(1.3);
}

.email.discord-link {
    background: rgba(114, 137, 218, 0.2);
    border: 1px solid rgba(114, 137, 218, 0.4);
}

.email.discord-link:hover {
    background: rgba(114, 137, 218, 0.3);
    color: #7289da;
    transform: translateY(-2px);
}

/* Social Links */
.social {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(83, 252, 24, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(83, 252, 24, 0.3);
}

/* CaseHug button z logo w Social */
.social-link.casehug-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.casehug-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.casehug-social-btn:hover .casehug-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Kick button z logo w Social */
.social-link.kick-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.kick-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.kick-social-btn:hover .kick-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Twitch button z logo w Social */
.social-link.twitch-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.twitch-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.twitch-social-btn:hover .twitch-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Discord button z logo w Social */
.social-link.discord-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.discord-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.discord-btn:hover .discord-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Sklep button z logo w Social */
.social-link.sklep-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.sklep-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.sklep-social-btn:hover .sklep-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* YouTube button z logo w Social */
.social-link.youtube-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.youtube-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.youtube-social-btn:hover .youtube-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* TikTok button z logo w Social */
.social-link.tiktok-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.tiktok-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.tiktok-social-btn:hover .tiktok-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* Instant Gaming button z logo w Social */
.social-link.instant-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.instant-social-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(1.2);
    transition: filter 0.3s ease;
}

.social-link.instant-social-btn:hover .instant-social-logo {
    filter: brightness(1.5) saturate(1.2);
}

/* AD Badges w Social - CaseHug i Instant Gaming */
.social-link.casehug-social-btn::after,
.social-link.instant-social-btn::after {
    content: "AD";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.social-link.casehug-social-btn:hover::after,
.social-link.instant-social-btn:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Floating particles - logo */
.particle {
    position: absolute;
    background-image: url('images/whitelogo.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
    filter: brightness(1.2);
    transition: opacity 0.3s ease;
}

.particle:hover {
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animacja float - zmodyfikowana dla logo */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-30px) rotate(15deg);
        opacity: 0.8;
    }
}

/* Pulse animation for LIVE status */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive Design - HAMBURGER MENU */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Ukryj desktop nav, pokaż mobile nav */
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .main-logo {
        height: 3rem;
    }

    .hero-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    /* Mobile responsive dla section titles */
    .section-title-logo {
        height: 3rem;  /* Mniejsze na mobile */
    }

    .support-buttons {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: none;
    }

    .support-btn {
        min-height: 150px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }

    .stream-controls {
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .support-buttons {
        max-width: 700px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-top: 3px solid #53fc18;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: #53fc18;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn.accept {
    background: linear-gradient(45deg, #53fc18, #45d612);
    color: #000;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(83, 252, 24, 0.4);
}

.cookie-btn.reject {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.reject:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.cookie-link {
    color: #53fc18;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Privacy Policy Page Styles */
.privacy-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.back-btn {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-radius: 25px;
    color: #53fc18;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: rgba(83, 252, 24, 0.2);
    transform: translateY(-2px);
    color: #fff;
}

.privacy-header h1 {
    font-size: 2.5rem;
    color: #53fc18;
    margin-bottom: 0.5rem;
}

.privacy-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.privacy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
}

.privacy-card {
    background: rgba(83, 252, 24, 0.1);
    border: 2px solid rgba(83, 252, 24, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    background: rgba(83, 252, 24, 0.15);
    border-color: #53fc18;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.3);
}

.privacy-card h3 {
    color: #53fc18;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.privacy-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-card ul {
    color: rgba(255, 255, 255, 0.8);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-card li {
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.privacy-card strong {
    color: #53fc18;
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
}
