:root {
    --dark-navy: #0a0e1a;
    --medium-navy: #141b2d;
    --accent-green: #0BDA51;
    --light-green: #1aff6f;
    --text-light: #e8eef5;
    --text-muted: #a0aec0;
    --border-dark: #1e2a3a;
    --card-bg: #12192a;
    --rating-green: #0BDA51;
    --button-gradient: linear-gradient(135deg, #0BDA51, #1aff6f);
    --danger-color: #e74c3c;
    --warning-color: #f39c12;

    --header-gradient: linear-gradient(135deg, #1a2332, #0a0e1a);
    --footer-gradient: linear-gradient(135deg, #0a0e1a, #0c1220);
    --card-gradient: linear-gradient(145deg, #12192a, #161f33);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-navy);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--button-gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 218, 81, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light-green);
    border: 2px solid var(--light-green);
}

.btn-secondary:hover {
    background: rgba(26, 255, 111, 0.1);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    color: var(--text-light);

}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--button-gradient);
    border-radius: 2px;
}


.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    padding-bottom: 3rem;
}
