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

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========== HEADER ========== */
header {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ========== NAVIGATION ========== */
nav {
    margin-top: 10px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #ffeaa7;
}

/* ========== MAIN CONTENT ========== */
main {
    flex: 1;
    padding: 50px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffeaa7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

main p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ========== BUTTONS ========== */
a.button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

a.button:hover {
    background: linear-gradient(90deg, #feb47b, #ff7e5f);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    text-align: center;
    padding: 15px 0;
    color: #fff;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.3);
}

footer p {
    font-size: 0.9rem;
}

/* ========== LISTS ========== */
ul, ol {
    margin: 20px auto;
    text-align: left;
    max-width: 600px;
}

li {
    margin: 10px 0;
    line-height: 1.6;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    main h2 {
        font-size: 1.6rem;
    }
    nav a {
        margin: 0 10px;
    }
}
