body {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #111 30%, #222 70%);
    color: #fff;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

h1 {
    font-size: 6rem;
    text-shadow: 3px 3px 10px rgba(255, 0, 0, 0.8);
    margin: 20px 0;
}

img {
    max-width: 80%;
    height: auto;
}

.subtitle {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 600px;
}

.fb-like {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    backdrop-filter: blur(3px);
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 2s forwards;
}

.button {
    background: rgba(255, 0, 0, 0.8);
    color: white;
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.button:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

/* Full-Screen Video */
#rickroll-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    z-index: 10000;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Glitch Effect */
/* @keyframes glitch {
    0% { transform: translate(0, 0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0, 0); }
} */

/* Rickroll Play Button */
#rickroll-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#rickroll-container.active {
    display: flex;
}

#play-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 4rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

#play-button:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

#play-button:active {
    transform: scale(0.95);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
    }
}

#rickroll-text {
    color: #a8dadc;
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    #play-button {
        width: 330px;
        height: 330px;
        font-size: 10.5rem;
    }

    #rickroll-text {
        font-size: 3.3rem;
        margin-bottom: 90px;
    }
}

@media (max-width: 480px) {
    #play-button {
        width: 300px;
        height: 300px;
        font-size: 9.75rem;
    }

    #rickroll-text {
        font-size: 3rem;
        margin-bottom: 75px;
        padding: 0 20px;
    }
}