:root {
    --primary: #6366f1;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #a855f7;
    --bg-dark: #0f172a;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Effects */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.8) 0%, #0f172a 100%);
    z-index: -1;
}

.glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.glow-1 {
    background: var(--primary);
    top: -10%;
    left: -10%;
    animation: float 20s infinite alternate;
}

.glow-2 {
    background: var(--secondary);
    bottom: -10%;
    right: -10%;
    animation: float 25s infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100px, 50px);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    z-index: 10;
}

/* Header */
.header {
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInDown 1s forwards;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
}

/* Hero Content */
.hero-content {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 4rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.domain-name {
    font-size: clamp(1.2rem, 8.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    display: inline-block;
    max-width: 100%;
    letter-spacing: -0.02em;
}

.sale-status {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: pulse-blink 3s infinite ease-in-out;
}

@keyframes pulse-blink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.98);
        color: var(--primary);
    }
}

.description {
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* CTA */
.cta-container {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px var(--primary-glow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px var(--primary-glow);
    background: #4f46e5;
}

.cta-button .icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Contact Info */
.contact-info {
    font-size: 1rem;
    color: var(--text-muted);
}

.contact-info .email {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-info .email:hover {
    border-color: var(--primary);
}

/* Footer */
.footer {
    margin-top: 3rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .hero-content {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0.5rem;
    }

    .logo-text {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
}