.theme-toggle {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
    margin-left: 15px;
}

.theme-toggle:hover {
    background-color: rgba(107, 114, 128, 0.2);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Light mode styles (disabled by default) */
.light-mode {
    --primary-color: #4b5563;
    --secondary-color: #6b7280;
    --dark-color: #f8fafc;
    --darker-color: #f1f5f9;
    --light-color: #0f172a;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.98);
    --button-color: #10b981;
    --button-hover: #059669;
}

.light-mode .feature-card {
    background-color: #ffffff;
    border-left: 3px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.light-mode .section-content {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.light-mode .button-secondary {
    background-color: #6b7280;
    color: white;
}

.light-mode .button-secondary:hover {
    background-color: #4b5563;
}

.light-mode .servers-table thead {
    background-color: #3b82f6;
}

.light-mode .servers-table tbody tr {
    background-color: #ffffff;
}

.light-mode .servers-table tbody tr:nth-child(even) {
    background-color: #f1f5f9;
}

.light-mode .servers-table tbody tr:hover {
    background-color: #dbeafe;
}

/* Christmas theme styles (Dec 21-27) */
/* Christmas string lights - draped along navbar bottom */
.christmas-lights-container {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: 25px;
    pointer-events: none;
    z-index: 1001;
}

.christmas-lights-container svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.christmas-lights-container .wire {
    fill: none;
    stroke: #222;
    stroke-width: 2;
    stroke-linecap: round;
}

.christmas-lights-container .bulb-glow {
    animation: bulbFlicker 2s ease-in-out infinite;
}

.christmas-lights-container .bulb-glass {
    animation: bulbFlicker 2s ease-in-out infinite;
}

.christmas-lights-container .bulb-cap {
    fill: #1a1a1a;
    stroke: #333;
    stroke-width: 0.5;
}

/* Bulb colors with glow */
.christmas-lights-container .red .bulb-glass { fill: #ff2020; }
.christmas-lights-container .red .bulb-glow { fill: #ff0000; opacity: 0.6; }

.christmas-lights-container .green .bulb-glass { fill: #20ff20; }
.christmas-lights-container .green .bulb-glow { fill: #00ff00; opacity: 0.6; }

.christmas-lights-container .blue .bulb-glass { fill: #20a0ff; }
.christmas-lights-container .blue .bulb-glow { fill: #0088ff; opacity: 0.6; }

.christmas-lights-container .yellow .bulb-glass { fill: #ffee20; }
.christmas-lights-container .yellow .bulb-glow { fill: #ffdd00; opacity: 0.6; }

.christmas-lights-container .orange .bulb-glass { fill: #ff8820; }
.christmas-lights-container .orange .bulb-glow { fill: #ff6600; opacity: 0.6; }

@keyframes bulbFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Staggered animation delays */
.christmas-lights-container .bulb-group:nth-child(5n+1) .bulb-glass,
.christmas-lights-container .bulb-group:nth-child(5n+1) .bulb-glow { animation-delay: 0s; }
.christmas-lights-container .bulb-group:nth-child(5n+2) .bulb-glass,
.christmas-lights-container .bulb-group:nth-child(5n+2) .bulb-glow { animation-delay: 0.4s; }
.christmas-lights-container .bulb-group:nth-child(5n+3) .bulb-glass,
.christmas-lights-container .bulb-group:nth-child(5n+3) .bulb-glow { animation-delay: 0.8s; }
.christmas-lights-container .bulb-group:nth-child(5n+4) .bulb-glass,
.christmas-lights-container .bulb-group:nth-child(5n+4) .bulb-glow { animation-delay: 1.2s; }
.christmas-lights-container .bulb-group:nth-child(5n+5) .bulb-glass,
.christmas-lights-container .bulb-group:nth-child(5n+5) .bulb-glow { animation-delay: 1.6s; }

/* Fir branch decorations */
.fir-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
    overflow: hidden;
}

.fir-branch {
    position: absolute;
    width: 150px;
    height: 100px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.fir-branch svg {
    width: 100%;
    height: 100%;
}

.fir-branch-top-left {
    top: 70px;
    left: -20px;
    transform: rotate(25deg);
}

.fir-branch-top-right {
    top: 70px;
    right: -20px;
    transform: rotate(-25deg);
}

.fir-branch-bottom-left {
    bottom: 20px;
    left: -20px;
    transform: rotate(-15deg) scaleY(-1);
}

.fir-branch-bottom-right {
    bottom: 20px;
    right: -20px;
    transform: rotate(15deg) scaleY(-1);
}

@media (max-width: 768px) {
    .fir-branch {
        width: 100px;
        height: 70px;
    }

    .fir-branch-top-left,
    .fir-branch-top-right {
        top: 60px;
    }
}

/* Snowflakes animation for Christmas */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: #fff;
    font-size: 1em;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

@keyframes fall {
    0% {
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Sale banner styles (2025 only) */
.sale-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3), 0 0 20px rgba(0, 255, 0, 0.2);
    overflow: hidden;
    animation: saleSlideIn 0.5s ease-out, saleBorderGlow 2s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
    background: linear-gradient(#1f2937, #1f2937) padding-box,
                linear-gradient(45deg, #ff0000, #00ff00, #ff0000) border-box;
}

.sale-banner:hover {
    transform: scale(1.05);
}

.sale-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.sale-banner-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 1;
}

.sale-banner-close:hover {
    background: rgba(255, 0, 0, 0.8);
}

/* Sale Modal */
.sale-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sale-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sale-modal {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.4), 0 0 60px rgba(0, 255, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
    border: 4px solid transparent;
    background: linear-gradient(#1f2937, #1f2937) padding-box,
                linear-gradient(45deg, #ff0000, #00ff00, #0080ff, #ff0000) border-box;
    animation: modalBorderGlow 3s linear infinite;
}

.sale-modal-overlay.active .sale-modal {
    transform: scale(1);
}

.sale-modal img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
}

.sale-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.sale-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: rotate(90deg);
}

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

@keyframes saleBorderGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3), 0 0 20px rgba(0, 255, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 255, 0, 0.3), 0 0 20px rgba(255, 0, 0, 0.2);
    }
}

@keyframes modalBorderGlow {
    0% {
        background: linear-gradient(#1f2937, #1f2937) padding-box,
                    linear-gradient(0deg, #ff0000, #00ff00, #0080ff, #ff0000) border-box;
    }
    100% {
        background: linear-gradient(#1f2937, #1f2937) padding-box,
                    linear-gradient(360deg, #ff0000, #00ff00, #0080ff, #ff0000) border-box;
    }
}

@media (max-width: 480px) {
    .sale-banner {
        max-width: 180px;
        bottom: 10px;
        right: 10px;
    }

    .sale-modal {
        max-width: 95%;
    }
}

/* New Year's Theme - Fireworks */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

/* Rocket with trail */
.firework-rocket {
    position: absolute;
    bottom: 0;
    width: 4px;
    height: 12px;
    background: linear-gradient(to top, transparent, var(--rocket-color, #fff));
    border-radius: 50% 50% 20% 20%;
    animation: rocketLaunch var(--flight-time, 1s) ease-out forwards;
}

/* Rocket trail effect */
.firework-rocket::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
    background: linear-gradient(to top, transparent, rgba(255, 200, 100, 0.8), var(--rocket-color, #fff));
    border-radius: 0 0 50% 50%;
    animation: trailFlicker 0.1s infinite alternate;
}

/* Sparks trailing behind */
.firework-rocket::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(255, 150, 50, 0.6), transparent);
    filter: blur(2px);
    animation: trailFlicker 0.05s infinite alternate;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(calc(-1 * var(--target-height, 70vh))) translateX(var(--drift, 0));
        opacity: 0;
    }
}

@keyframes trailFlicker {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scaleY(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.1);
    }
}

/* Background glow when fireworks explode */
.firework-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, var(--glow-color, #fff) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 0.8s ease-out forwards;
    transform: translate(-50%, -50%);
    filter: blur(30px);
}

.firework-glow.glow-left {
    left: 0;
    transform: translate(-30%, -50%);
}

.firework-glow.glow-right {
    right: 0;
    left: auto;
    transform: translate(30%, -50%);
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.firework-glow.glow-left {
    animation-name: glowPulseLeft;
}

.firework-glow.glow-right {
    animation-name: glowPulseRight;
}

@keyframes glowPulseLeft {
    0% {
        opacity: 0.7;
        transform: translate(-30%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(-30%, -50%) scale(1.5);
    }
}

@keyframes glowPulseRight {
    0% {
        opacity: 0.7;
        transform: translate(30%, -50%) scale(0.5);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: translate(30%, -50%) scale(1.5);
    }
}

.firework-explosion {
    position: fixed;
    pointer-events: none;
}

.firework-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--particle-color, #fff);
    box-shadow: 0 0 6px 2px var(--particle-color, #fff);
    animation: particleExplode 1.5s ease-out forwards;
}

@keyframes particleExplode {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform:
            translate(
                calc(cos(var(--angle)) * var(--velocity)),
                calc(sin(var(--angle)) * var(--velocity) + 50px)
            )
            scale(0.3);
        opacity: 0;
    }
}

/* New Year's Banner */
.newyear-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newyear-stars {
    display: flex;
    gap: 4px;
}

.newyear-stars .star {
    color: #ffd700;
    font-size: 0.9rem;
    animation: starTwinkle 1.5s ease-in-out infinite;
}

.newyear-stars .star:nth-child(1) { animation-delay: 0s; }
.newyear-stars .star:nth-child(2) { animation-delay: 0.3s; color: #fff; }
.newyear-stars .star:nth-child(3) { animation-delay: 0.6s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.newyear-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.newyear-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 215, 0, 0.9);
    font-weight: 500;
}

.newyear-year {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(180deg, #fff 0%, #ffd700 50%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: none;
    animation: yearPulse 2s ease-in-out infinite;
}

@keyframes yearPulse {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    }
}

/* New Year banner light mode */
.light-mode .newyear-banner {
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 245, 220, 0.98) 100%);
    border: 1px solid rgba(255, 180, 0, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 180, 0, 0.15);
}

.light-mode .newyear-label {
    color: rgba(180, 120, 0, 0.9);
}

.light-mode .newyear-year {
    background: linear-gradient(180deg, #cc8800 0%, #ff9900 50%, #cc6600 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.light-mode .newyear-stars .star {
    color: #cc8800;
}

.light-mode .newyear-stars .star:nth-child(2) {
    color: #ff9900;
}

/* Halloween Theme */
.halloween-webs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
}

.spiderweb {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.85;
}

.light-mode .spiderweb {
    opacity: 0.7;
    filter: invert(0.8);
}

.spiderweb svg {
    width: 100%;
    height: 100%;
}

.spiderweb-top-left {
    top: 60px;
    left: 0;
}

.spiderweb-top-right {
    top: 60px;
    right: 0;
    transform: scaleX(-1);
}

/* Halloween Pumpkins */
.halloween-pumpkins {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 9996;
}

.pumpkin {
    position: absolute;
    bottom: 10px;
    width: 80px;
    height: 75px;
    filter: drop-shadow(0 0 10px rgba(255, 150, 0, 0.5));
}

.pumpkin svg {
    width: 100%;
    height: 100%;
}

.pumpkin-left {
    left: 20px;
}

.pumpkin-right {
    right: 20px;
}

.pumpkin-glow {
    animation: pumpkinFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes pumpkinFlicker {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.light-mode .pumpkin {
    filter: drop-shadow(0 0 15px rgba(255, 100, 0, 0.6));
}

/* Halloween Bats */
.halloween-bats {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

.bat {
    position: absolute;
    width: 40px;
    height: 25px;
    animation: batFly 10s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.8));
}

.bat svg {
    width: 100%;
    height: 100%;
}

.bat svg path,
.bat svg ellipse {
    fill: #2a2a2a;
}

.light-mode .bat {
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.light-mode .bat svg path,
.light-mode .bat svg ellipse {
    fill: #1a1a1a;
}

.bat-wing-left, .bat-wing-right {
    animation: batFlap 0.2s ease-in-out infinite alternate;
    transform-origin: center;
}

.bat-wing-right {
    animation-delay: 0.1s;
}

@keyframes batFlap {
    0% { transform: scaleY(1) rotate(0deg); }
    100% { transform: scaleY(0.7) rotate(-10deg); }
}

@keyframes batFly {
    0% {
        transform: translateX(-100px) translateY(0);
    }
    25% {
        transform: translateX(25vw) translateY(-20px);
    }
    50% {
        transform: translateX(50vw) translateY(10px);
    }
    75% {
        transform: translateX(75vw) translateY(-15px);
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(0);
    }
}

/* Halloween Banner */
.halloween-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(20, 10, 30, 0.95) 0%, rgba(40, 20, 50, 0.95) 100%);
    border-radius: 16px;
    border: 2px solid rgba(255, 100, 0, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 100, 0, 0.3),
        inset 0 0 20px rgba(128, 0, 128, 0.2);
    backdrop-filter: blur(10px);
}

.halloween-icon {
    font-size: 1.5rem;
    animation: halloweenBounce 1s ease-in-out infinite;
}

.halloween-icon:last-child {
    animation-delay: 0.5s;
}

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

.halloween-text {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(180deg, #ff6600 0%, #ff3300 50%, #990000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: halloweenGlow 2s ease-in-out infinite;
}

@keyframes halloweenGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 100, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 100, 0, 0.8));
    }
}

/* Halloween banner light mode */
.light-mode .halloween-banner {
    background: linear-gradient(135deg, rgba(255, 240, 220, 0.98) 0%, rgba(255, 230, 200, 0.98) 100%);
    border: 2px solid rgba(255, 100, 0, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 100, 0, 0.2);
}

.light-mode .halloween-text {
    background: linear-gradient(180deg, #cc4400 0%, #990000 50%, #660000 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Halloween theme button style */
.theme-btn[data-theme="halloween"].active {
    background: linear-gradient(135deg, #ff6600, #990099);
    color: white;
}

/* Easter Theme */
.easter-eggs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

.easter-egg {
    position: absolute;
    width: 40px;
    height: 52px;
    animation: eggFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.easter-egg svg {
    width: 100%;
    height: 100%;
}

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

/* Easter Bunnies */
.easter-bunnies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9996;
}

.easter-bunny {
    position: absolute;
    bottom: 20px;
    width: 80px;
    height: 100px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
    animation: bunnyBounce 2s ease-in-out infinite;
}

.easter-bunny svg {
    width: 100%;
    height: 100%;
}

.bunny-left {
    left: 20px;
}

.bunny-right {
    right: 20px;
}

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

/* Easter Baskets */
.easter-baskets {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 9994;
}

.easter-basket {
    position: absolute;
    bottom: 10px;
    width: 100px;
    height: 80px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.25));
}

.easter-basket svg {
    width: 100%;
    height: 100%;
}

.basket-left {
    left: 110px;
}

.basket-right {
    right: 110px;
}

/* Easter Banner */
.easter-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.95) 0%, rgba(230, 255, 240, 0.95) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 182, 193, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(255, 182, 193, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.easter-icon {
    font-size: 1.5rem;
    animation: easterBounce 1s ease-in-out infinite;
}

.easter-icon:last-child {
    animation-delay: 0.5s;
}

@keyframes easterBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-5deg); }
    75% { transform: translateY(-5px) rotate(5deg); }
}

.easter-text {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(180deg, #ff69b4 0%, #9370db 50%, #20b2aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: easterGlow 3s ease-in-out infinite;
}

@keyframes easterGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.4));
    }
    33% {
        filter: drop-shadow(0 0 8px rgba(147, 112, 219, 0.5));
    }
    66% {
        filter: drop-shadow(0 0 8px rgba(32, 178, 170, 0.5));
    }
}

/* Easter theme - dark mode adjustments */
body:not(.light-mode) .easter-banner {
    background: linear-gradient(135deg, rgba(45, 35, 55, 0.95) 0%, rgba(35, 55, 45, 0.95) 100%);
    border: 2px solid rgba(255, 150, 200, 0.4);
}

body:not(.light-mode) .easter-text {
    background: linear-gradient(180deg, #ff99cc 0%, #b19cd9 50%, #5fd3c5 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Easter theme button style */
.theme-btn[data-theme="easter"].active {
    background: linear-gradient(135deg, #ff69b4, #9370db, #20b2aa);
    color: white;
}

/* Easter Butterflies */
.easter-butterflies {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9997;
    overflow: hidden;
}

.easter-butterfly {
    position: absolute;
    width: 45px;
    height: 40px;
    animation: butterflyFly 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.easter-butterfly svg {
    width: 100%;
    height: 100%;
}

.butterfly-wing-left {
    transform-origin: 25px 20px;
    animation: wingFlapLeft 0.2s ease-in-out infinite;
}

.butterfly-wing-right {
    transform-origin: 25px 20px;
    animation: wingFlapRight 0.2s ease-in-out infinite;
}

@keyframes wingFlapLeft {
    0%, 100% { transform: rotateY(0deg) scaleX(1); }
    50% { transform: rotateY(60deg) scaleX(0.6); }
}

@keyframes wingFlapRight {
    0%, 100% { transform: rotateY(0deg) scaleX(1); }
    50% { transform: rotateY(-60deg) scaleX(0.6); }
}

@keyframes butterflyFly {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(10deg);
    }
    50% {
        transform: translate(0, -20px) rotate(-5deg);
    }
    75% {
        transform: translate(-30px, -50px) rotate(-10deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Falling Petals */
.easter-petals {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9992;
    overflow: hidden;
}

.falling-petal {
    position: absolute;
    top: -20px;
    animation: petalFall linear infinite;
    opacity: 0.8;
}

.falling-petal svg {
    width: 100%;
    height: 100%;
}

@keyframes petalFall {
    0% {
        transform: translateY(-20px) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) translateX(100px);
        opacity: 0;
    }
}

/* Easter Chicks */
.easter-chicks {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 9995;
}

.easter-chick {
    position: absolute;
    bottom: 15px;
    width: 50px;
    height: 55px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    animation: chickBounce 0.6s ease-in-out infinite;
}

.easter-chick svg {
    width: 100%;
    height: 100%;
}

.chick-left {
    left: 100px;
}

.chick-right {
    right: 100px;
    transform: scaleX(-1);
}

.chick-wing {
    transform-origin: 20px 35px;
    animation: wingFlap 0.3s ease-in-out infinite;
}

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

@keyframes wingFlap {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

/* Spring Flowers */
.spring-flowers {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 9991;
}

.spring-flower {
    position: absolute;
    bottom: 0;
    animation: flowerSway 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.spring-flower svg {
    width: 100%;
    height: 100%;
}

.flower-petal {
    animation: petalPulse 2s ease-in-out infinite;
}

@keyframes flowerSway {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes petalPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Enhanced Easter egg animation */
.easter-egg {
    animation: eggFloat 4s ease-in-out infinite, eggShimmer 3s ease-in-out infinite;
}

@keyframes eggShimmer {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(1);
    }
    50% {
        filter: drop-shadow(0 4px 8px rgba(255, 182, 193, 0.4)) brightness(1.1);
    }
}

/* Enhanced bunny animation - ear wiggle */
.easter-bunny svg ellipse:nth-child(2),
.easter-bunny svg ellipse:nth-child(4) {
    animation: earWiggle 2s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes earWiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

/* Mobile responsiveness for new Easter elements */
@media (max-width: 768px) {
    .easter-butterfly {
        width: 35px;
        height: 32px;
    }

    .easter-chick {
        width: 40px;
        height: 44px;
    }

    .chick-left {
        left: 70px;
    }

    .chick-right {
        right: 70px;
    }

    .spring-flower {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .easter-butterfly {
        width: 28px;
        height: 25px;
    }

    .easter-chick {
        width: 35px;
        height: 38px;
    }

    .chick-left {
        left: 50px;
    }

    .chick-right {
        right: 50px;
    }

    .falling-petal {
        opacity: 0.6;
    }

    .spring-flower {
        transform: scale(0.6);
    }
}

/* Valentine's Day Theme */
.valentines-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    animation: heartFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 20, 147, 0.3));
}

@keyframes heartFloat {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) scale(1.1) rotate(5deg);
    }
}

/* Cupid Arrows */
.cupid-arrows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9994;
}

.cupid-arrow {
    position: absolute;
    width: 120px;
    height: 25px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.cupid-arrow svg {
    width: 100%;
    height: 100%;
}

.arrow-top-left {
    top: 100px;
    left: 20px;
    transform: rotate(35deg);
}

.arrow-top-right {
    top: 100px;
    right: 20px;
    transform: rotate(-35deg) scaleX(-1);
}

.arrow-bottom-left {
    bottom: 120px;
    left: 20px;
    transform: rotate(-20deg);
}

.arrow-bottom-right {
    bottom: 120px;
    right: 20px;
    transform: rotate(20deg) scaleX(-1);
}

/* Valentine Roses */
.valentines-roses {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 9996;
}

.valentine-rose {
    position: absolute;
    bottom: 10px;
    width: 60px;
    height: 80px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.valentine-rose svg {
    width: 100%;
    height: 100%;
}

.rose-left {
    left: 30px;
}

.rose-right {
    right: 30px;
    transform: scaleX(-1);
}

/* Valentine's Banner */
.valentines-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.95) 0%, rgba(255, 105, 180, 0.95) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 20, 147, 0.5);
    box-shadow:
        0 8px 32px rgba(255, 20, 147, 0.3),
        0 0 20px rgba(255, 105, 180, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.valentines-icon {
    font-size: 1.5rem;
    animation: heartBeat 1s ease-in-out infinite;
}

.valentines-icon:last-child {
    animation-delay: 0.5s;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

.valentines-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b0000;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    animation: loveGlow 2s ease-in-out infinite;
}

@keyframes loveGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 20, 147, 0.5), 0 1px 2px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 20, 147, 0.8), 0 1px 2px rgba(255, 255, 255, 0.5);
    }
}

/* Valentine's dark mode */
body:not(.light-mode) .valentines-banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(199, 21, 133, 0.95) 100%);
    border: 2px solid rgba(255, 105, 180, 0.5);
}

body:not(.light-mode) .valentines-text {
    color: #ffb6c1;
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
}

/* Valentine's theme button */
.theme-btn[data-theme="valentines"].active {
    background: linear-gradient(135deg, #ff1493, #ff69b4);
    color: white;
}

/* St. Patrick's Day Theme */
.stpatricks-shamrocks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9995;
    overflow: hidden;
}

.floating-shamrock {
    position: absolute;
    animation: shamrockFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 128, 0, 0.3));
}

@keyframes shamrockFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-10deg);
    }
    50% {
        transform: translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(10deg);
    }
}

/* Rainbow */
.stpatricks-rainbow {
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 250px;
    pointer-events: none;
    z-index: 9993;
    opacity: 0.4;
}

.stpatricks-rainbow svg {
    width: 100%;
    height: 100%;
}

/* Pot of Gold */
.stpatricks-gold {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 9996;
}

.pot-of-gold {
    position: absolute;
    bottom: 10px;
    width: 80px;
    height: 70px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.pot-of-gold svg {
    width: 100%;
    height: 100%;
}

.pot-left {
    left: 20px;
}

.pot-right {
    right: 20px;
}

.gold-coin {
    animation: goldShine 2s ease-in-out infinite;
}

.sparkle {
    animation: sparkleAnim 1.5s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

@keyframes sparkleAnim {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* St. Patrick's Banner */
.stpatricks-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.95) 0%, rgba(0, 128, 0, 0.95) 100%);
    border-radius: 20px;
    border: 2px solid rgba(50, 205, 50, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 128, 0, 0.3),
        0 0 20px rgba(50, 205, 50, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stpatricks-icon {
    font-size: 1.5rem;
    animation: shamrockBounce 1s ease-in-out infinite;
}

.stpatricks-icon:last-child {
    animation-delay: 0.5s;
}

@keyframes shamrockBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(10deg); }
}

.stpatricks-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    animation: goldGlow 2s ease-in-out infinite;
}

@keyframes goldGlow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.3);
    }
}

/* St. Patrick's light mode */
.light-mode .stpatricks-banner {
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.95) 0%, rgba(60, 179, 113, 0.95) 100%);
    border: 2px solid rgba(34, 139, 34, 0.6);
}

.light-mode .stpatricks-text {
    color: #006400;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.light-mode .stpatricks-rainbow {
    opacity: 0.5;
}

/* St. Patrick's theme button */
.theme-btn[data-theme="stpatricks"].active {
    background: linear-gradient(135deg, #228b22, #ffd700);
    color: white;
}

@media (max-width: 768px) {
    .stpatricks-rainbow {
        width: 350px;
        height: 175px;
    }
}

@media (max-width: 480px) {
    .floating-heart svg {
        width: 20px;
        height: 20px;
    }

    .cupid-arrow {
        width: 80px;
        height: 18px;
    }

    .valentine-rose {
        width: 45px;
        height: 60px;
    }

    .valentines-banner {
        top: 70px;
        padding: 10px 18px;
        gap: 8px;
    }

    .valentines-icon {
        font-size: 1.2rem;
    }

    .valentines-text {
        font-size: 1rem;
    }

    .floating-shamrock svg {
        width: 25px;
        height: 28px;
    }

    .stpatricks-rainbow {
        width: 280px;
        height: 140px;
        top: 50px;
    }

    .pot-of-gold {
        width: 60px;
        height: 55px;
    }

    .stpatricks-banner {
        top: 70px;
        padding: 10px 15px;
        gap: 8px;
    }

    .stpatricks-icon {
        font-size: 1.2rem;
    }

    .stpatricks-text {
        font-size: 0.95rem;
    }
}

/* Light mode Easter adjustments */
.light-mode .easter-bunny {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
}

.light-mode .easter-egg {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.light-mode .easter-basket {
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}

@media (max-width: 480px) {
    .easter-egg {
        width: 30px;
        height: 40px;
    }

    .easter-bunny {
        width: 60px;
        height: 75px;
    }

    .easter-basket {
        width: 70px;
        height: 55px;
    }

    .basket-left {
        left: 80px;
    }

    .basket-right {
        right: 80px;
    }

    .easter-banner {
        top: 70px;
        padding: 10px 18px;
        gap: 8px;
    }

    .easter-icon {
        font-size: 1.2rem;
    }

    .easter-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .spiderweb {
        width: 100px;
        height: 100px;
    }

    .pumpkin {
        width: 60px;
        height: 55px;
    }

    .bat {
        width: 30px;
        height: 18px;
    }

    .halloween-banner {
        top: 70px;
        padding: 10px 18px;
        gap: 8px;
    }

    .halloween-icon {
        font-size: 1.2rem;
    }

    .halloween-text {
        font-size: 1rem;
    }
}

/* Theme Switcher Button */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: rgba(31, 41, 55, 0.98);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.theme-switcher.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-switcher-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-switcher-label {
    font-size: 0.9rem;
    color: #f3f4f6;
    font-weight: 600;
}

.theme-switcher-hint {
    font-size: 0.7rem;
    color: #6b7280;
    background: rgba(75, 85, 99, 0.5);
    padding: 3px 8px;
    border-radius: 10px;
}

.theme-btn-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.theme-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: none;
    border-radius: 10px;
    background: rgba(75, 85, 99, 0.4);
    color: #d1d5db;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.theme-btn:hover {
    background: rgba(107, 114, 128, 0.6);
    transform: translateX(3px);
}

.theme-name {
    font-weight: 500;
}

.theme-dates {
    font-size: 0.7rem;
    color: #9ca3af;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 8px;
}

.theme-btn.active {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.theme-btn.active .theme-dates {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.theme-btn[data-theme="christmas"].active {
    background: linear-gradient(135deg, #dc2626, #16a34a);
}

.theme-btn[data-theme="newyear"].active {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
}

.theme-btn[data-theme="newyear"].active .theme-dates {
    color: rgba(31, 41, 55, 0.8);
}

/* Light mode theme switcher */
.light-mode .theme-switcher {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.light-mode .theme-switcher-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

.light-mode .theme-switcher-label {
    color: #1f2937;
}

.light-mode .theme-switcher-hint {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.15);
}

.light-mode .theme-btn {
    background: rgba(107, 114, 128, 0.15);
    color: #374151;
}

.light-mode .theme-btn:hover {
    background: rgba(107, 114, 128, 0.25);
}

.light-mode .theme-dates {
    color: #6b7280;
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 480px) {
    .theme-switcher {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 12px;
    }

    .theme-switcher-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .theme-switcher-label {
        font-size: 0.85rem;
    }

    .theme-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .theme-dates {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .newyear-banner {
        top: 70px;
        padding: 10px 20px;
        gap: 10px;
    }

    .newyear-stars .star {
        font-size: 0.7rem;
    }

    .newyear-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .newyear-year {
        font-size: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s ease-out;
}

.features-heading {
    font-size: 1.8rem;
    color: var(--light-color);
    text-align: center;
    margin: 30px 0 10px;
    position: relative;
    animation: fadeIn 0.7s ease-out;
}

.features-heading:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 3px;
    animation: scaleIn 0.8s ease-out;
}

.anubis-hero {
    animation: fadeIn 0.5s ease-out;
}

.discord-container iframe {
    animation: scaleIn 0.6s ease-out;
}

.servers-table {
    animation: fadeIn 0.7s ease-out;
}.discord-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.discord-container iframe {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

@media (max-width: 600px) {
    .discord-container iframe {
        width: 100%;
        height: 400px;
    }
}:root {
    --primary-color: #374151;
    --secondary-color: #1f2937;
    --dark-color: #111827;
    --darker-color: #030712;
    --light-color: #d1d5db;
    --accent-color: #6b7280;
    --accent-hover: #4b5563;
    --card-bg: #1f2937;
    --header-bg: rgba(17, 24, 39, 0.98);
    --button-color: #10b981;
    --button-hover: #059669;
}

.button {
    background-color: #10b981 !important;
    color: white !important;
}

.button:hover {
    background-color: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-secondary {
    background-color: #6b7280 !important;
    color: white !important;
}

.button-secondary:hover {
    background-color: #4b5563 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    cursor: url('https://i.gyazo.com/1f517fc1cbd14efc352c83f60eb42978.png'), auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--header-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--light-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--light-color);
    background-color: rgba(75, 85, 99, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
main {
    margin-top: 70px;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#perins {
    min-height: auto;
    padding: 0;
}

.perins-container {
    width: 100%;
    overflow: hidden;
    border: none;
    padding: 0;
    margin: 0;
}

.responsive-iframe {
    width: 100%;
    height: 910px;
}

@media screen and (max-width: 768px) {
    .responsive-iframe {
        height: 1200px;
    }
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.section-content {
    background-color: rgba(31, 41, 55, 0.7);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    border: 1px solid rgba(75, 85, 99, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.anubis-hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    text-align: center;
}

.anubis-image-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.anubis-image {
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.anubis-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.anubis-description h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.anubis-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.servers-container {
    margin-top: 30px;
}

.servers-table-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.servers-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.servers-table thead {
    background-color: var(--accent-color);
}

.servers-table th {
    padding: 12px;
    text-align: center;
    color: white;
    font-size: 1.2rem;
}

.servers-table tbody tr {
    background-color: var(--card-bg);
    transition: background-color 0.3s;
}

.servers-table tbody tr:nth-child(even) {
    background-color: rgba(30, 41, 59, 0.7);
}

.servers-table tbody tr:hover {
    background-color: rgba(96, 165, 250, 0.2);
}

.servers-table td {
    padding: 10px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
}

.button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
}

.button-icon {
    margin-right: 5px;
}

.buy-button {
    background-color: #00cc44; /* Very bright green */
    color: white;
}

.buy-button:hover {
    background-color: #00bb33;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-secondary {
    background-color: #6366f1; /* Purple color */
    color: white;
    border: none;
}

.button-secondary:hover {
    background-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features-heading {
    font-size: 1.8rem;
    color: var(--accent-color);
    text-align: center;
    margin: 30px 0 20px;
    position: relative;
}

.features-heading:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid var(--accent-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-card p {
    margin-bottom: 10px;
}

.feature-card ul {
    list-style-position: inside;
    margin-top: 10px;
    padding-left: 10px;
}

.feature-card li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 5px;
}

.new-tag {
    background-color: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    font-weight: bold;
    vertical-align: middle;
}

.button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: var(--header-bg);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (min-width: 768px) {
    .anubis-hero {
        flex-direction: column;
        align-items: center;
    }
    
    .anubis-image {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        gap: 5px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 20px;
        top: 23px;
    }
    
    .section-content {
        padding: 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .button {
        width: 100%;
    }
}