:root {
    --bg: #050507;
    --fg: #ffffff;
    --muted: #b8b8b8;
    --accent: #ff2d45;
    --accent-soft: #ff4b5e;
    --card: #141417;
    --border: rgba(255,255,255,0.08);
    --radius: 16px;
    --max: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--bg);
    color: var(--fg);
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 24px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 24px;
    font-size: 15px;
    text-decoration: none;
    color: var(--muted);
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--accent-soft);
}

.button {
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    padding: 12px 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button:hover {
    transform: translateY(-1px);
}

.button-small {
    padding: 10px 20px;
    font-size: 14px;
}

.hero {
    max-width: var(--max);
    margin: 40px auto 70px;
    padding: 0 22px;
    text-align: center;
}

.hero-title {
    font-size: clamp(40px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-soft);
}

.hero-text {
    margin-top: 18px;
    font-size: 17px;
    color: var(--muted);
}

.hero-btn {
    margin-top: 26px;
}

.section {
    max-width: var(--max);
    margin: 80px auto;
    padding: 0 22px;
}

.section-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
}

.section-sub {
    margin-top: 10px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 36px;
}

.grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    text-align: center;
    transition: 0.25s;
}

.card h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.card p {
    font-size: 14px;
    color: var(--muted);
}

.card:hover {
    transform: translateY(-3px);
}

.warning-box {
    background: #1a1a1a;
    padding: 14px 18px;
    border-left: 4px solid #ff2d45;
    border-radius: 8px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}


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

.domain-box {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 20px;
    text-align: center;
    transition: 0.25s;
}

.domain-box:hover {
    transform: translateY(-3px);
}

.domain {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent);
}

.verified {
    margin-top: 6px;
    font-size: 13px;
    color: #00d17a;
}

.faq {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 16px;
    overflow: hidden;
    transition: 0.25s;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: var(--accent-soft);
}

.faq-icon {
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    padding: 12px 20px 18px;
    max-height: 180px;
}

footer {
    text-align: center;
    padding: 40px 22px 50px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid #111;
    margin-top: 60px;
}

