:root {
    --color-primary: #1E90FF;
    --color-secondary: #FF8C42;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #F5F5F5;
    --font-primary: 'Poppins', sans-serif;
}

body.dark-mode {
    --color-primary: #3399ff;
    --color-secondary: #ffa74a;
    --color-white: #1e1e1e;
    --color-black: #f5f5f5;
    --color-gray: #121212;
}

body.light-mode {
    --color-primary: #1E90FF;
    --color-secondary: #FF8C42;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray: #F5F5F5;
}

body.ocean-mode {
    --color-primary: #0077be;
    --color-secondary: #00bcd4;
    --color-white: #e0f7fa;
    --color-black: #004d61;
    --color-gray: #b2ebf2;
}

body.forest-mode {
    --color-primary: #2e7d32;
    --color-secondary: #81c784;
    --color-white: #f1f8e9;
    --color-black: #1b5e20;
    --color-gray: #c8e6c9;
}

body.sunset-mode {
    --color-primary: #ff6f61;
    --color-secondary: #ffb74d;
    --color-white: #fff3e0;
    --color-black: #4e342e;
    --color-gray: #ffe0b2;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-black);
    background: var(--color-gray);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Remove conflicting navbar styles */
.navbar {
    background: var(--color-white);
}

.navbar__logo {
    color: var(--color-primary);
}

/* Subscribe Button Styles */
.subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9a44 0%, #f83600 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(248, 54, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 40px;
    line-height: 1;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(248, 54, 0, 0.3);
    color: white;
}

.subscribe-btn:active {
    transform: translateY(0);
}

.subscribe-btn i {
    margin-right: 8px;
    font-size: 1rem;
}

.subscribe-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

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

/* Onboarding Styles */
.onboarding-container {
    max-width: 320px;
    margin: 20px auto;
    padding: 14px 18px;
    background-color: transparent;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease;
}

.onboarding-container:hover {
    transform: translateY(-2px);
}

.onboarding-progressbar {
    height: 10px;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 14px;
}

.onboarding-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
    transition: width 0.4s ease-in-out;
    border-radius: 6px;
}

.onboarding-card {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.onboarding-step {
    flex: 1;
    text-align: center;
    font-size: 10px;
    color: #444;
    font-weight: 500;
}

.onboarding-step.done {
    color: #16a34a;
    font-weight: bold;
}

.onboarding-step i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

/* Footer Styles */
footer {
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 1rem 0;
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Utility Classes */
body.no-scroll {
    overflow: hidden;
}
