* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

:root {
    --dark-bg: #0F0F0F;
    --darker-bg: #080808;
    --gold-primary: #FFD700;
    --gold-secondary: #FFEC8B;
    --gold-accent: #FFA500;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --text-light: #F0F0F0;
    --text-muted: #A0A0A0;
    --card-bg: #1A1A1A;
    --success: #00C853;
    --error: #FF5252;
    --border-radius: 8px;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    padding: 24px;
    min-height: 100vh;
    background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 20%);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.02) 100%);
    pointer-events: none;
    z-index: -1;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    border-radius: 2px;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    opacity: 0.7;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

input, select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    outline: none;
}

input:focus, select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 2px var(--gold-glow);
}

input:hover, select:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.goal-card {
    background-color: rgba(10, 10, 10, 0.7);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-primary), var(--gold-accent));
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.goal-title {
    font-size: 1.2rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.priority-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-high {
    background: rgba(255, 80, 80, 0.2);
    color: #FF5050;
}

.priority-medium {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
}

.priority-low {
    background: rgba(100, 255, 100, 0.2);
    color: #64FF64;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #1e1e1e;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-item:hover {
  background-color: #262626;
  border-color: #FFD70080;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FFD700;
  margin-right: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-item label {
  color: #f0f0f0;
  font-size: 15px;
  cursor: pointer;
}



.btn-submit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-accent));
    color: #0F0F0F;
    border: none;
    border-radius: 999px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: block;
    margin: 32px auto 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::after {
    left: 100%;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold-primary);
    margin: 32px 0 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.glow-animation {
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    0% {
    box-shadow: 0 0 5px var(--gold-glow);
    }
    100% {
    box-shadow: 0 0 20px var(--gold-primary);
    }
}

.progress-bar {
    height: 8px;
    background-color: var(--darker-bg);
    border-radius: 4px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-in-out;
}

@media (max-width: 768px) {
    .grid-2 {
    grid-template-columns: 1fr;
    }
    
    .checkbox-group {
    grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .checkbox-group {
    grid-template-columns: 1fr;
    }
    
    .form-card {
    padding: 20px;
    }
}

footer {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 20px 0;
}

.footer-highlight {
    color: var(--gold-primary);
    font-weight: 600;
}

.grid-2 .form-group:last-child {
    grid-column: span 2;
}

