:root {
    --primary-dark: #0a192f;
    --primary: #0f2a4a;
    --primary-light: #1e3a8a;
    --accent-gold: #ff9f1c;
    --accent-gold-hover: #e08b0f;
    --accent-cyan: #00b4d8;
    --accent-red: #ff4d4d;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 42, 74, 0.08);
    --shadow-lg: 0 20px 35px -10px rgba(15, 42, 74, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a192f;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

/* Base Buttons */
.btn-gold {
    background: linear-gradient(135deg, #ff9f1c 0%, #f7941e 100%);
    color: #ffffff !important;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    padding: 12px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f7941e 0%, #e07b0f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 159, 28, 0.5);
    color: #ffffff !important;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff !important;
    background: transparent;
    font-weight: 600;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    color: #ffffff !important;
}

.section-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

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