.halloween-theme {
    background-color: #1a0f0f;
    color: #ff6600;
}

.halloween-theme .hero {
    background: linear-gradient(45deg, #ff6600, #800080);
}

.halloween-theme h1 {
    text-shadow: 2px 2px 4px rgba(255, 0, 0, 0.5);
}

.halloween-theme .resume-btn {
    background: linear-gradient(45deg, #ff6600, #800080);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.halloween-theme .resume-btn:hover {
    background: linear-gradient(45deg, #800080, #ff6600);
}

#halloween-message {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #ff6600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: fadeInDown 0.5s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.ghost {
    position: fixed;
    font-size: 3rem;
    animation: float 10s infinite ease-in-out;
}

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

.pumpkin {
    position: fixed;
    font-size: 2rem;
    top: -50px;
    animation: fall 5s linear;
}

@keyframes fall {
    to { transform: translateY(calc(100vh + 50px)); }
}
@media (max-width: 768px) {
    #holiday-message {
        visibility: hidden;
    }
}