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

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

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

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 20px clamp(16px, 3vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(5,5,7,0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 20;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    text-shadow: 0 0 12px rgba(255,45,69,.4);
}

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

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

.nav-links a:hover {
    color: var(--accent-soft);
    text-shadow: 0 0 8px rgba(255,45,69,.35);
}

.button {
    background: linear-gradient(90deg, var(--accent), var(--accent-soft));
    padding: 11px 22px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: .25s;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 14px rgba(255,45,69,.22);
}

.button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 22px rgba(255,45,69,.32);
}

.button-small {
    padding: 9px 18px;
    font-size: 14px;
}

.hero {
    max-width: var(--max);
    margin: 70px auto 90px;
    padding: 0 clamp(16px, 3vw, 40px);
    text-align: center;
}

.hero-title {
    font-size: clamp(40px, 5vw, 55px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent);
}

#typingHero {
    text-shadow: 0 0 3px rgba(255,45,69,0.25);
}


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

.hero-text {
    font-size: 17px;
    color: var(--muted);
    max-width: 620px;
    margin: 18px auto 0;
}

.section {
    max-width: var(--max);
    margin: 80px auto;
    padding: 0 clamp(16px, 3vw, 40px);
}

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

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

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

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

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

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

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.5), 0 0 20px rgba(255,45,69,.18);
    border-color: rgba(255,45,69,.6);
}

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

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

.domain-box:hover {
    transform: translateY(-3px);
    border-color: rgba(255,45,69,.7);
    box-shadow: 0 8px 20px rgba(0,0,0,.7);
}

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

.verified {
    margin-top: 6px;
    font-size: 13px;
    color: #00d17a;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: .45; }
    100% { opacity: 1; }
}

.warning-box {
    background: #121214;
    padding: 10px 14px;
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    max-width: min(1100px, 90vw);
    margin: 14px auto 0;
    font-size: 13px;
    color: #cfcfcf;
    line-height: 1.45;
    opacity: 0.9;
    box-shadow: 0 0 6px rgba(255,45,69,0.08);
}

.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: .25s;
}

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

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

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

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

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

.s_f {
    background: #0b0b0b;
    padding: 50px 0 20px;
    color: #ccc;
}

.f_container {
    max-width: min(1400px, 92vw);
    margin: auto;
}

.f_main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.f_col h4 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

.f_col ul {
    list-style: none;
}

.f_col ul li {
    margin-bottom: 8px;
}

.f_col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: .25s;
}

.f_col ul li a:hover {
    color: var(--accent);
}

.f_social_icons a {
    font-size: 22px;
    margin-right: 12px;
    color: #bbb;
    transition: .25s;
}

.f_social_icons a:hover {
    color: var(--accent);
}

.h_l {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none;
}

.f_bottom {
    text-align: center;
    margin-top: 35px;
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .nav {
        padding: 16px;
    }
    .nav-links a {
        font-size: 14px;
        margin-left: 16px;
    }
    .section {
        margin: 60px auto;
        padding: 0 16px;
    }
    .grid {
        grid-template-columns: 1fr;
    }
}

