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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.domain-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

.for-sale-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.feature h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

.contact-section {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 15px;
    color: white;
}

.contact-section h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    color: #fff;
}

.icon {
    font-size: 1.2rem;
}

.price-hint {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-hint h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .domain-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .container {
        margin: 20px;
        padding: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* Domain-specific color themes */
.ethical-fashion {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.vintage-merch {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.vinyl-record {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}