:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #ffffff;
    --dim-text: #666666;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    border-bottom: 1px solid #1a1a1a;
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--accent-color) !important;
}

.nav-link {
    color: var(--dim-text) !important;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0px 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--dim-text);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.btn-stop {
    background-color: var(--accent-color);
    color: var(--bg-color);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

.btn-stop:hover {
    transform: scale(1.05);
    color: var(--bg-color);
}

.price-note {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--dim-text);
}

.content-page {
    flex: 1;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.content-page h1 {
    font-weight: 800;
    margin-bottom: 40px;
}

footer {
    border-top: 1px solid #1a1a1a;
    padding: 30px 0;
    text-align: center;
    color: var(--dim-text);
    font-size: 0.9rem;
}

footer a{
    color: var(--dim-text);
}

.hero-section .container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-orb-wrap {
    margin-top: 36px;
    margin-bottom: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-orb {
    --orb-size: min(62vw, 280px);
    position: relative;
    width: var(--orb-size);
    height: var(--orb-size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: orbFloat 6s ease-in-out infinite;
    filter: saturate(1.04);
}

.hero-orb::before {
    content: "";
    position: absolute;
    inset: -34px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 214, 186, 0.14) 0%, rgba(255, 214, 186, 0.08) 28%, rgba(255, 214, 186, 0.02) 52%, transparent 70%);
    filter: blur(26px);
    animation: auraPulse 4.2s ease-in-out infinite;
}

.hero-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid rgba(255, 232, 210, 0.96);
    box-shadow:
        0 0 10px rgba(255, 226, 201, 0.85),
        0 0 26px rgba(255, 213, 183, 0.52),
        0 0 56px rgba(255, 198, 157, 0.24),
        inset 0 0 12px rgba(255, 235, 220, 0.08);
    animation: ringBreath 4.2s ease-in-out infinite;
}

.hero-orb-core {
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(20, 20, 22, 0.96) 0%, rgba(8, 8, 10, 0.995) 72%, #030304 100%);
    box-shadow:
        inset 0 0 36px rgba(255, 220, 194, 0.025),
        0 0 0 1px rgba(255, 240, 228, 0.02);
}

@keyframes ringBreath {
    0%, 100% {
        transform: scale(0.992);
        opacity: 0.92;
        box-shadow:
            0 0 8px rgba(255, 226, 201, 0.72),
            0 0 22px rgba(255, 213, 183, 0.40),
            0 0 44px rgba(255, 198, 157, 0.18),
            inset 0 0 10px rgba(255, 235, 220, 0.06);
    }
    50% {
        transform: scale(1.012);
        opacity: 1;
        box-shadow:
            0 0 12px rgba(255, 233, 213, 0.94),
            0 0 34px rgba(255, 213, 183, 0.62),
            0 0 76px rgba(255, 198, 157, 0.32),
            inset 0 0 14px rgba(255, 235, 220, 0.10);
    }
}

@keyframes auraPulse {
    0%, 100% {
        transform: scale(0.96);
        opacity: 0.72;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 640px) {
    .hero-orb-wrap {
        margin-top: 36px;
    }

    .hero-title {
    font-size: 3rem;

    .hero-orb {
        --orb-size: min(72vw, 320px);
    }

    .hero-orb::after {
        border-width: 3px;
    }

    .hero-orb-core {
        inset: 14px;
    }
}