/* Modern Theme */
.theme-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.theme-modern .domain-header {
    padding: 3rem 1rem;
}

.theme-modern .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.theme-modern .domain-name {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.theme-modern .for-sale-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

.theme-modern .hero-section {
    text-align: center;
    padding: 2rem 1rem;
}

.theme-modern .domain-title {
    font-size: 1.5rem;
    opacity: 0.9;
}

.theme-modern .domain-description {
    max-width: 600px;
    margin: 1rem auto;
    opacity: 0.85;
}

.theme-modern .info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.theme-modern .card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.theme-modern .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.theme-modern .card h3 {
    margin-bottom: 0.5rem;
}

.theme-modern .price {
    font-size: 1.75rem;
    color: #90EE90;
}

.theme-modern .contact-button {
    background: white;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
}

.theme-modern .contact-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.theme-modern .features-section {
    background: rgba(0,0,0,0.1);
    padding: 2rem;
    margin: 2rem 0;
}

.theme-modern .features-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.theme-modern .feature-list {
    max-width: 500px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.theme-modern .feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.theme-modern .feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #90EE90;
}

.theme-modern .domain-footer {
    color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
    .theme-modern .domain-name {
        font-size: 2rem;
    }

    .theme-modern .info-cards {
        grid-template-columns: 1fr;
    }
}
