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

/* GLOBAL */
html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    color: #fff;
    line-height: 1.6;
}

/* MAIN CONTAINER */
.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 100px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(79, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-domain {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.4rem;
}

/* HEADINGS */
h1 {
    text-align: center;
    color: #4ff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4ff;
    text-align: center;
}

/* INTRO */
.intro {
    text-align: center;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* LINKS */
a,
a:link,
a:visited,
a:hover,
a:active {
    color: #4ff !important;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* VERIFIED LIST */
.verified-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.verified-list li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(79, 255, 255, 0.12);
    padding: 0.9rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
}

.verified-list li:hover {
    background: rgba(79, 255, 255, 0.08);
    transform: translateY(-2px);
}

.verified-list a,
.verified-list a:visited {
    color: #4ff !important;
    text-decoration: none;
    font-weight: 600;
}

.verified-list a:hover {
    text-decoration: underline;
}

/* WARNING BOX */
.warning-box {
    margin-top: 2.5rem;
    padding: 1.2rem;
    border-left: 4px solid #facc15;
    border-radius: 8px;
    background: rgba(250, 204, 21, 0.08);
    line-height: 1.5;
}

/* WARNING DIVIDER */
.warning-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 1rem 0;
}

/* SAFETY NOTE */
.note {
    margin-top: 2rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(79, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    text-align: center;
}

.note strong {
    color: #4ff;
}

.note p {
    margin-top: 0.8rem;
}

/* VERIFICATION STEPS */
.verification-steps {
    max-width: 650px;
    margin: 1.5rem auto 0;
    padding-left: 1.5rem;
}

.verification-steps li {
    margin-bottom: 0.8rem;
}

/* DOMAIN RULE */
.domain-rule {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(79, 255, 255, 0.05);
    border-left: 4px solid #4ff;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* LAST UPDATED */
.last-updated {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* BACK HOME */
.back-home {
    text-align: center;
    margin-top: 1.5rem;
}

.back-home a {
    color: #4ff;
    text-decoration: none;
    font-size: 0.95rem;
}

.back-home a:hover {
    text-decoration: underline;
}

/* FOOTER */
.site-footer {
    margin-top: 3rem;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .container {
        padding: 1.2rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .intro {
        font-size: 1rem;
    }

    .verified-list li {
        padding: 0.85rem;
        word-break: break-word;
    }
}

/* BACK HOME */
.back-home {
    text-align: center;
    margin-top: 1.5rem;
}

.back-home a,
.back-home a:visited {
    color: #4ff !important;
    text-decoration: none;
    font-size: 0.95rem;
}

.back-home a:hover {
    text-decoration: underline;
}