/* Trivia Drop Website - Caprizy Games */
/* Color Palette: #00AFDE (cyan), #019536 (green), #FFCC48 (yellow), #4A148C-#AB47BC (purple gradient) */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Roboto:wght@300;400;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #4A148C 0%, #AB47BC 50%, #ffffff 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(90deg, #00AFDE 0%, #019536 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #FFCC48;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #FFCC48;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Bangers', cursive;
    font-size: 4rem;
    color: #00AFDE;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero .tagline {
    font-size: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #019536 0%, #00AFDE 100%);
    color: white;
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-family: 'Bangers', cursive;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 2px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cta-button.coming-soon {
    background: linear-gradient(90deg, #666 0%, #888 100%);
    cursor: not-allowed;
}

/* Content Container */
.container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.container h1 {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    color: #00AFDE;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.container h2 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: #019536;
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
}

.container h3 {
    font-size: 1.3rem;
    color: #4A148C;
    margin: 1.5rem 0 0.5rem;
    font-weight: 700;
}

.container p {
    margin-bottom: 1rem;
    color: #555;
}

.container ul, .container ol {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.container li {
    margin-bottom: 0.5rem;
}

.container a {
    color: #00AFDE;
    text-decoration: none;
    font-weight: 500;
}

.container a:hover {
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: #888;
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* Support Page */
.support-box {
    background: linear-gradient(135deg, #00AFDE 0%, #019536 100%);
    padding: 2rem;
    border-radius: 15px;
    color: white;
    margin: 2rem 0;
    text-align: center;
}

.support-box h2 {
    color: #FFCC48;
    margin-bottom: 1rem;
}

.support-box p {
    color: white;
    font-size: 1.1rem;
}

.support-box a {
    color: #FFCC48;
    font-weight: 700;
    text-decoration: none;
}

.support-box a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    margin-top: 4rem;
}

footer p {
    margin-bottom: 0.5rem;
}

footer a {
    color: #FFCC48;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .container {
        margin: 2rem 20px;
        padding: 2rem 1.5rem;
    }

    .container h1 {
        font-size: 2rem;
    }

    .container h2 {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1rem;
        justify-content: center;
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}
