:root {
    --background: #0a0a0a;
    --foreground: #ededed;
    --accent: #ffd700;
    --accent-glow: rgba(255, 215, 0, 0.5);
    --font-stack: 'Inter', Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-stack);
    overflow-x: hidden;
    min-height: 100vh;
}

main {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center */
    padding-top: 15vh;
    padding-bottom: 6rem;
    overflow-y: auto;
    /* Enable scrolling */
    overflow-x: hidden;
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

/* Background & Hero Image */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.4;
    transform: scale(1.05);
    animation: slow-zoom 20s infinite alternate ease-in-out;
}

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a, rgba(10, 10, 10, 0.6) 50%, transparent);
}

.overlay-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

/* Content */
.content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fade-in-up 1s ease-out forwards;
}

/* Badge */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    color: rgba(255, 215, 0, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.crown-icon {
    fill: rgba(255, 215, 0, 0.9);
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    h1 {
        font-size: 4.5rem;
    }

    .mobile-break {
        display: none;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 6rem;
    }
}

.gradient-text {
    background: linear-gradient(to bottom right, #fde68a, #fbbf24, #d97706);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px var(--accent-glow);
}

.subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.5rem;
    }
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: fade-in-up 1s ease-out forwards;
    animation-delay: 200ms;
    opacity: 0;
    /* Starts hidden for animation */
}

@media (min-width: 768px) {
    .cta-group {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #f59e0b;
    color: black;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
    overflow: hidden;
    position: relative;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.5);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: #9ca3af;
    cursor: not-allowed;
    font-weight: 500;
}

/* Footer */
footer {
    position: absolute;
    bottom: 1.5rem;
    z-index: 10;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    footer {
        font-size: 0.875rem;
    }
}

.link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.link:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* Main Container adjustments for scrolling */
main {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Changed from center to allow scrolling */
    padding-top: 20vh;
    /* Push content down initially */
    padding-bottom: 4rem;
}

/* SEO Article Styles */
.seo-article {
    text-align: left;
    max-width: 800px;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fade-in-up 1s ease-out forwards;
    animation-delay: 500ms;
}

.seo-article h2 {
    color: var(--accent);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.seo-article h2:first-child {
    margin-top: 0;
}

.seo-article h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.seo-article p {
    color: #e5e5e5;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.seo-article ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.seo-article li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    line-height: 1.6;
}

.seo-article li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.seo-article strong {
    color: #fff;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    main {
        padding-top: 15vh;
    }

    .seo-article {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .seo-article h2 {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes slow-zoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}