/* style.css - Modern Event Theme */
:root {
    --bg: #0a0a0a;
    --card-bg: #161616;
    --text: #ffffff;
    --text-muted: #888888;
    --primary: #00ffaa; /* Neon Green */
    --accent: #ff0055;  /* Hot Pink */
    --border: #333333;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    padding-bottom: 80px; /* Space for sticky footer */
}

/* --- Layout --- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Typography --- */
h1 { font-size: 28px; font-weight: 800; margin-bottom: 10px; letter-spacing: -1px; }
h2 { font-size: 20px; font-weight: 600; margin-bottom: 15px; color: var(--text); }
p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.text-primary { color: var(--primary); }

/* --- Cards --- */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: filter 0.2s;
}
.btn:hover { filter: brightness(1.1); }
.btn-outline { background: transparent; border: 2px solid var(--border); color: white; }
.btn-sm { padding: 8px 16px; font-size: 14px; width: auto; }
.btn-danger { background: var(--accent); color: white; }

/* --- Forms --- */
input, select {
    width: 100%;
    padding: 14px;
    background: #222;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}
input:focus { outline: 2px solid var(--primary); border-color: transparent; }

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bg-green { background: rgba(0, 255, 170, 0.15); color: var(--primary); }
.bg-red { background: rgba(255, 0, 85, 0.15); color: var(--accent); }

/* --- Mobile Sticky Footer --- */
.sticky-footer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(22, 22, 22, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}