:root {
    --bg-dark: #120a18;
    --card-bg: #1e1226;
    --primary: #9d4edd;
    --secondary: #5a189a;
    --fluid-highlight: #c77dff;
    --text-main: #e0d0f0;
    --text-muted: #9f8bb0;
    --white: #ffffff;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 10px;
    margin-bottom: 30px;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

.news-card {
    background: var(--card-bg);
    border: 1px solid var(--secondary);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card {
    background-color: var(--card-bg);
    border: 1px solid var(--secondary);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--primary);
}

.section-title {
    border-bottom: 1px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: var(--fluid-highlight);
}

input[type="text"], input[type="email"], textarea, select {
    width: 100%;
    background: #0f0714;
    border: 1px solid var(--secondary);
    color: var(--white);
    padding: 12px;
    border-radius: 8px;
    box-sizing: border-box;
    margin-bottom: 15px;
    font-size: 16px;
}

.option-pill {
    display: flex;
    align-items: center;
    background: rgba(90, 24, 154, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid var(--secondary);
    cursor: pointer;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

/* --- Sticky Footer & Modal --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(30, 18, 38, 0.95);
    border-top: 2px solid var(--primary);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 100;
    box-sizing: border-box;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 25px;
    max-width: 500px;
    width: 90%;
}