﻿/* Domains Page Styles */
.domains-page {
    padding: 100px 20px 36px;
    max-width: 1400px;
    margin: 0 auto;
}

.domains-header {
    text-align: center;
    margin-bottom: 32px;
}

.domains-header h1 {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.domain-card-large {
    background: white;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.domain-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-color);
}

.domain-icon-large {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}

.domain-card-large h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.domain-card-large p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 16px;
}

.domain-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.domain-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

@media (max-width: 768px) {
    .domains-page {
        padding: 80px 16px 24px;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
}
