.date-picker-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.date-picker-bar label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--fs-sm);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.date-picker-bar label svg {
    width: 18px;
    height: 18px;
    stroke: var(--t-600);
    fill: none;
}
.date-picker-bar select {
    padding: 10px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    color: var(--text-primary);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 180px;
}
.date-picker-bar select:focus {
    border-color: var(--nrds-primary);
    outline: none;
    box-shadow: 0 0 0 3px var(--nrds-primary-lighter);
}

.summary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.summary-card {
    background: var(--bg-white);
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}
.summary-card:hover {
    border-color: var(--t-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.summary-card h3 {
    font-size: var(--fs-2xs);
    color: var(--text-light);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.summary-card h3 svg {
    width: 16px;
    height: 16px;
    stroke: var(--t-600);
    fill: none;
    flex-shrink: 0;
}
.summary-card .card-value {
    font-size: var(--fs-h3);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.summary-card .card-label {
    font-size: var(--fs-xs);
    color: var(--text-light);
    margin-top: 8px;
}

.tld-breakdown-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}
.tld-breakdown-section .section-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: var(--fs-sm);
    text-align: center;
}

.tld-row {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 16px;
    border: 2px solid transparent;
    transition: var(--transition);
}
.tld-row:hover {
    border-color: var(--nrds-primary);
    box-shadow: var(--shadow-sm);
}
.tld-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.tld-name-label {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text-primary);
}
.tld-count-label {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    font-weight: 500;
}
.tld-pct-bar {
    height: 10px;
    background: var(--border-light);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}
.tld-pct-fill {
    height: 100%;
    background: var(--t-400);
    border-radius: 5px;
    transition: width 0.5s ease;
}
.tld-pct-text {
    font-size: var(--fs-xs);
    color: var(--nrds-primary);
    font-weight: 600;
}

.tld-registrars {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}
.tld-registrars h4 {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.tld-registrars ol.registrar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.tld-registrars ol.registrar-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: var(--fs-xs);
    transition: var(--transition);
}
.tld-registrars ol.registrar-list li:hover {
    border-color: var(--nrds-primary);
}
.tld-registrars ol.registrar-list li .reg-rank {
    width: 22px;
    height: 22px;
    background: var(--nrds-primary-lighter);
    color: var(--nrds-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-2xs);
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}
.tld-registrars ol.registrar-list li .reg-name {
    flex: 1;
    font-weight: 600;
    color: var(--text-primary);
}
.tld-registrars ol.registrar-list li .reg-count {
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-section .hero-title { font-size: var(--fs-h2); }
    .tld-breakdown-section { padding: 25px 20px; }
    .tld-row-header { flex-direction: column; align-items: flex-start; gap: 4px; }
    .summary-cards { grid-template-columns: repeat(2, 1fr); }
}
