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

:root {
    --primary: #ff6b35;
    --secondary: #004e89;
    --dark: #0a0e27;
    --text: #ffffff;
    --light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 1) 0%, rgba(0, 78, 137, 0.1) 100%);
    z-index: -1;
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8555 100%);
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

.alert-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 800;
    transition: opacity 0.3s ease;
}

.alert-banner a:hover {
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content {
    text-align: center;
}

/* Logo */
.logo {
    font-size: 80px;
    margin-bottom: 30px;
    display: inline-block;
}

/* Domain Name */
.domain-name {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--light);
    letter-spacing: -1px;
}

/* For Sale Badge */
.for-sale-badge {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8555 100%);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Tagline */
.tagline {
    font-size: 18px;
    color: rgba(248, 249, 250, 0.7);
    margin-bottom: 50px;
    font-weight: 400;
}

/* CTA Box */
.cta-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--light);
}

/* Buttons */
.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8555 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
}

.btn-secondary:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
}

.contact-info a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.feature {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: #ff6b35;
    transform: translateY(-3px);
}

.feature .icon {
    font-size: 32px;
}

.feature span:last-child {
    font-weight: 600;
    font-size: 14px;
}

/* Benefits */
.benefits {
    background: rgba(0, 78, 137, 0.1);
    border: 2px solid rgba(0, 78, 137, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.benefits h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.benefits ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.benefits li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

/* Process */
.process {
    margin-bottom: 60px;
}

.process h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.step-text {
    font-size: 14px;
    font-weight: 600;
    min-width: 90px;
}

.step-arrow {
    font-size: 24px;
    color: #ff6b35;
    font-weight: bold;
}

@media (max-width: 768px) {
    .domain-name {
        font-size: 36px;
    }

    .logo {
        font-size: 60px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .benefits {
        padding: 30px 20px;
    }

    .steps {
        gap: 10px;
    }

    .step-arrow {
        display: none;
    }

    .alert-banner {
        font-size: 13px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .domain-name {
        font-size: 28px;
    }

    .logo {
        font-size: 48px;
    }

    .tagline {
        font-size: 16px;
    }

    .cta-box h2 {
        font-size: 20px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .for-sale-badge {
        font-size: 12px;
        padding: 10px 20px;
    }

    .steps {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(248, 249, 250, 0.6);
}

.footer a {
    color: #ff6b35;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
