/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #0a0014; /* Dark purple/black background */
    color: #eee;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, #7a1fa2, #4a0072);
    color: #FFD700; /* Gold text */
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

header h1 {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    background-color: #2e003e;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
    padding: 10px 0;
    border-top: 2px solid #7a1fa2;
    border-bottom: 2px solid #FFD700;
}

nav a {
    color: #FFD700;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Main Content */
main {
    margin: 30px auto;
    max-width: 1200px;
    background: rgba(20, 0, 40, 0.9);
    border: 1px solid #7a1fa2;
    box-shadow: 0 0 15px rgba(122, 31, 162, 0.6);
    border-radius: 10px;
    overflow: hidden;
    padding: 25px;
}

main h2 {
    color: #FFD700;
    font-size: 26px;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.6);
}

main p {
    margin-bottom: 15px;
    color: #ddd;
}

/* Button Styles */
button {
    display: inline-block;
    padding: 10px 25px;
    color: #fff;
    background: linear-gradient(90deg, #7a1fa2, #9c27b0);
    border: 2px solid #FFD700;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: 0 0 3px rgba(0,0,0,0.6);
}

button:hover {
    background: linear-gradient(90deg, #9c27b0, #7a1fa2);
    box-shadow: 0 0 10px #FFD700;
    transform: scale(1.05);
}

/* Footer Styles */
footer {
    background-color: #2e003e;
    color: #FFD700;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 2px solid #7a1fa2;
}

footer p {
    font-size: 14px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}
