/* Import Retro Font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #2a0845, #6441a5); /* Fallback for JS dynamic background */
    color: white;
    text-align: center;
    box-sizing: border-box;
    transition: background 1s ease-in-out; /* Smooth transition for JS background changes */
}

/* Container */
.container {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

/* Header (Main Title) */
.header {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff;
    margin-bottom: 20px;
}

/* Subheader (Tagline) */
.subheader {
    font-size: 1.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
    margin-bottom: 40px;
}

/* Content Section */
.content {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
    color: #fff;
}

.content p {
    margin-bottom: 15px;
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #ff00ff;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

.button:hover {
    background: #ff00ff;
    color: black;
    text-shadow: 0 0 10px #000, 0 0 20px #000;
}

/* Responsiveness */
@media (max-width: 768px) {
    .header {
        font-size: 2.5rem; /* Adjust font size for smaller devices */
    }

    .subheader {
        font-size: 1.2rem;
    }

    .content {
        font-size: 1rem; /* Smaller text for tablets */
    }

    .button {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 2rem;
    }

    .subheader {
        font-size: 1rem;
    }

    .content {
        font-size: 0.9rem; /* Even smaller text for smartphones */
    }

    .button {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
