/**
 * Base Styles
 * Global resets and foundational styles
 */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    min-height: 100vh;
    min-height: 100dvh;
    color: #fff;
    padding: 20px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

/* Mobile body adjustments */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

/* Mobile header */
@media (max-width: 768px) {
    .header {
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .header {
        margin-bottom: 10px;
    }

    .header h1 {
        font-size: 1.4em;
    }

    .header p {
        font-size: 0.8em;
    }
}
