:root {
    --bg-color: #0e0e0e;
    /* Very dark grey, almost black */
    --text-color: #f4f4f4;
    --text-muted: #bdc3c7;
    --primary-color: #ffe135;
    /* Banana Yellow */
    --secondary-color: #4caf50;
    /* Leaf Green */
    --accent-color: #ffd700;
    /* Gold */
    --glass-bg: rgba(255, 225, 53, 0.05);
    /* Yellowish tint */
    --glass-border: rgba(255, 225, 53, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-main: linear-gradient(135deg, #ffe135, #fabc02);
    --gradient-accent: linear-gradient(135deg, #4caf50, #81c784);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Gradients */
.background-gradients {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: -100px;
    left: -100px;
    animation-duration: 20s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: -50px;
    right: -50px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    /* Yellow again */
    top: 40%;
    left: 40%;
    opacity: 0.3;
    animation-duration: 15s;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.7);
    /* Darkens the blobs */
    backdrop-filter: blur(40px);
    /* Creates the frosted glass effect on the BG blobs */
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    color: #fff;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Header */
.site-header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo .highlight {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-main);
    color: #000;
    /* Black text on yellow for contrast */
    box-shadow: 0 4px 15px rgba(255, 225, 53, 0.3);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 225, 53, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-text {
    background: transparent;
    color: var(--text-muted);
    margin-left: 20px;
}

.btn-text:hover {
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    /* Offset for header */
}

.badge {
    background: rgba(255, 225, 53, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 225, 53, 0.3);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-subtitle .domain-name {
    color: #fff;
    font-weight: 600;
}

/* Features */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Stats */
.stats-section {
    padding: 40px 0 100px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* CTA */
.cta-section {
    padding-bottom: 100px;
}

.cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 20, 40, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.offer-form {
    max-width: 450px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.currency-select {
    flex: 0 0 100px;
}

.offer-input {
    flex: 1;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.offer-form select option {
    background: #000;
    /* Dark background for options */
    color: #fff;
}

.offer-form textarea {
    resize: vertical;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
    border-color: var(--primary-color);
}

.crypto-note {
    font-size: 0.8rem;
    margin-top: 20px;
    opacity: 0.6;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero-section {
        text-align: center;
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-text {
        margin-left: 0;
    }
}