/* Modern CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern color palette */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --accent-gold: #FFD700;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-blue: #3B82F6;
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.05);
    --glow-gold: rgba(255, 215, 0, 0.5);
    --glow-purple: rgba(139, 92, 246, 0.5);
}

/* Base styles */
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Modern animated aurora background */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.aurora {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.3;
    filter: blur(60px);
    animation: aurora 20s ease-in-out infinite;
}

.aurora-1 {
    background: radial-gradient(ellipse at bottom, var(--accent-purple) 0%, transparent 70%);
    animation-delay: 0s;
}

.aurora-2 {
    background: radial-gradient(ellipse at top right, var(--accent-pink) 0%, transparent 60%);
    animation-delay: 5s;
}

.aurora-3 {
    background: radial-gradient(ellipse at top left, var(--accent-blue) 0%, transparent 50%);
    animation-delay: 10s;
}

@keyframes aurora {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: rotate(45deg) scale(1.1); opacity: 0.4; }
    50% { transform: rotate(90deg) scale(1); opacity: 0.3; }
    75% { transform: rotate(135deg) scale(0.9); opacity: 0.35; }
}

/* Floating elements */
.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.05;
    animation: float-up 15s ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-element:nth-child(1) { left: 10%; }
.float-element:nth-child(2) { left: 30%; }
.float-element:nth-child(3) { left: 50%; }
.float-element:nth-child(4) { left: 70%; }
.float-element:nth-child(5) { left: 90%; }

@keyframes float-up {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.05; }
    90% { opacity: 0.05; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Main container */
.main-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.badge-text {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: var(--text-primary);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.title-gradient {
    display: block;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Domain Showcase */
.domain-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.domain-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.domain-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-gold);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.domain-card:hover .card-glow {
    opacity: 0.1;
}

.domain-image {
    width: 280px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.domain-card:hover .domain-image {
    transform: scale(1.05);
}

.domain-info {
    text-align: center;
}

.domain-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.domain-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.plus-symbol {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-secondary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

/* Primary Button */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold), #FFC107);
    color: var(--bg-primary);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

.primary-btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Bid Status Section */
.bid-status-section {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.bid-status-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(236, 72, 153, 0.03));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bid-status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-pink));
}

.bid-status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.status-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.status-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bid-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.bid-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.bid-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent-gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.bid-message {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bid-message strong {
    color: var(--text-primary);
    font-weight: 600;
}

.purchase-options {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.options-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: var(--text-secondary);
}

.package-preferred {
    color: var(--accent-gold);
    font-weight: 600;
}

.separator {
    color: var(--text-muted);
}

.individual-available {
    color: var(--text-secondary);
}

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

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.benefit-icon span {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-radius: 20px;
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-bg {
    transform: translate(-50%, -50%) rotate(45deg) scale(1.1);
    opacity: 0.2;
}

.benefit-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Use Cases Section */
.use-cases-section {
    padding: 80px 0;
    position: relative;
}

.possibilities-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.possibility-item {
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.possibility-item:hover,
.possibility-item.active {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 255, 255, 0.02));
}

.possibility-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.possibility-item:hover .possibility-number,
.possibility-item.active .possibility-number {
    color: var(--accent-gold);
}

.possibility-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.possibility-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 60px;
    position: relative;
}

.cta-container {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02), rgba(139, 92, 246, 0.02));
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 32px;
    padding: 80px 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--glow-gold) 0%, transparent 60%);
    opacity: 0.05;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--accent-gold), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-primary);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.email-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.email {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.copy-btn {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--accent-gold);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.copied-toast {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #10B981;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.copied-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cta-actions {
    margin-top: 3rem;
}

.urgency-text {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.bid-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--accent-gold);
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    text-align: center;
    color: var(--text-muted);
}

.footer-domains {
    margin-top: 0.5rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .domain-showcase {
        flex-direction: column;
    }
    
    .plus-symbol {
        transform: rotate(90deg);
    }
    
    .domain-image {
        width: 240px;
    }
    
    .email {
        font-size: 1.2rem;
    }
    
    .cta-container {
        padding: 60px 30px;
    }
    
    .benefits-grid,
    .possibilities-carousel {
        grid-template-columns: 1fr;
    }
    
    .bid-status-card {
        padding: 2rem;
    }
    
    .bid-value {
        font-size: 2.5rem;
    }
    
    .options-note {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .domain-card {
        padding: 1.5rem;
    }
    
    .domain-image {
        width: 200px;
    }
    
    .primary-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .benefits-section,
    .use-cases-section,
    .cta-section {
        padding: 60px 0;
    }
} 