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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005177;
    text-decoration: underline;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
}

.skip-link:focus {
    left: 0;
}

header {
    border-bottom: 1px solid #e5e5e5;
    padding: 18px 0;
    background: #fff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-title a:hover {
    color: #0073aa;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    padding: 40px 0 60px;
}

h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 700;
}

h1 + p {
    margin-bottom: 32px;
    color: #555;
    font-size: 1.05rem;
}

h2 {
    font-size: 1.35rem;
    margin: 48px 0 16px;
    color: #1a1a1a;
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 0;
}

h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
    color: #222;
    font-weight: 600;
}

h4 {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: #333;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 40px 0;
}

.section-subheading {
    font-size: 1.2rem;
    color: #444;
    margin: 40px 0 20px;
    text-align: center;
    font-weight: 600;
}

.registrar-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0 40px;
}

.registrar-logos a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 20px 12px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.registrar-logos a:hover {
    text-decoration: none;
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.12);
}

.registrar-logos img {
    width: 100%;
    max-width: 160px;
    height: 80px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.registrar-logos .logo-label {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.registrar-section {
    margin-bottom: 20px;
}

.registrar-section p,
.registrar-section ul,
.registrar-section ol {
    margin-bottom: 14px;
}

.registrar-section ul,
.registrar-section ol {
    padding-left: 28px;
}

.registrar-section li {
    margin-bottom: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    font-size: 0.95rem;
}

.pricing-table th,
.pricing-table td {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.pricing-table th {
    background: #f7f7f7;
    font-weight: 600;
    color: #222;
}

.pricing-table tr:nth-child(even) {
    background: #fafafa;
}

.update-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-bottom: 12px;
}

.auction-sites {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0 40px;
}

.auction-sites a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    padding: 18px 12px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auction-sites a:hover {
    text-decoration: none;
    border-color: #0073aa;
    box-shadow: 0 4px 12px rgba(0, 115, 170, 0.12);
}

.auction-sites img {
    width: 100%;
    max-width: 140px;
    height: 70px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

.auction-sites .logo-label {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.tld-list {
    list-style: none;
    padding: 0;
}

.tld-list li {
    margin-bottom: 8px;
}

.tld-list a {
    font-size: 1.1rem;
    font-weight: 500;
}

footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    margin-top: 60px;
    background: #fff;
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

@media (max-width: 768px) {
    .registrar-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .auction-sites {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 520px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
    }

    .registrar-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .auction-sites {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    h1 {
        font-size: 1.3rem;
    }

    h2 {
        font-size: 1.15rem;
    }
}
