* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafb 0%, #e9ecef 100%);
    color: #2c3e50;
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.header {
    text-align: center;
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.logo {
    max-width: 720px;
    height: auto;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #4a9b4a 0%, #3a7bc8 50%, #c85a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.header p {
    color: #6c757d;
    font-size: 1.3rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.week-banner {
    background: linear-gradient(135deg, #d97b7b, #c85a5a);
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(217, 123, 123, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.domain-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a9b4a, #3a7bc8, #c85a3a);
    border-radius: 20px 20px 0 0;
}

.domain-header {
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.domain-name {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #5a9bc8, #4a85b3);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.domain-metrics {
    padding: 0 32px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.metric-item:hover {
    background: #e9ecef;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.metric-icon.value {
    background: linear-gradient(135deg, #4a9b4a, #5a9a5a);
}

.metric-icon.traffic {
    background: linear-gradient(135deg, #3a7bc8, #5a9bc8);
}

.metric-icon.backlinks {
    background: linear-gradient(135deg, #c85a3a, #d97b7b);
}

.metric-content {
    flex: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
}

.traffic-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.traffic-small { 
    background: #ffe6e6; 
    color: #d63384; 
}

.traffic-good { 
    background: #fff3cd; 
    color: #fd7e14; 
}

.traffic-great { 
    background: #d1e7dd; 
    color: #198754; 
}

.niches-section {
    padding: 0 32px 24px;
}

.niches-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.niches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.niche-tag {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.niche-tag:hover {
    background: linear-gradient(135deg, #dee2e6, #e9ecef);
    transform: translateY(-1px);
}

.description {
    padding: 0 32px 32px;
    color: #495057;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
}

.domain-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid #f1f3f4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.buttons-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.price-display {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9b4a, #5a9a5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: linear-gradient(135deg, #c85a5a, #b34545);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(200, 90, 90, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 90, 90, 0.4);
    background: linear-gradient(135deg, #b34545, #a03939);
}

.copy-button {
    background: linear-gradient(135deg, #5a9bc8, #4a85b3);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(90, 155, 200, 0.3);
}

.copy-button:hover {
    background: linear-gradient(135deg, #4a85b3, #3a6fa0);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(90, 155, 200, 0.4);
}

.copy-button.copied {
    background: linear-gradient(135deg, #4a9b4a, #5a9a5a);
}

.stats-overview {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9b4a 0%, #3a7bc8 50%, #c85a3a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
    }
    
    .header {
        padding: 40px 24px;
    }
    
    .header h1 {
        font-size: 2.4rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .domain-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .domain-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .buttons-group {
        align-items: stretch;
    }
    
    .cta-button, .copy-button {
        width: 100%;
    }
}