@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

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

body {
    font-family: "Inter", sans-serif;
    background: radial-gradient(circle at top, #0a0f1f, #05070d);
    color: #e6e9f0;
    min-height: 100vh;
    line-height: 1.6;
}

/* ===== HERO HEADER ===== */

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #0f172a, #020617);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero.small {
    padding: 60px 20px 40px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #38bdf8;
    text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.tagline {
    margin-top: 12px;
    font-size: 1.1rem;
    color: #94a3b8;
}

/* ===== BUTTONS ===== */

.buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn.primary {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #020617;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.35);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.btn.secondary {
    background: transparent;
    color: #38bdf8;
    border: 1px solid #38bdf8;
}

.btn.secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

/* ===== MAIN CONTENT ===== */

.content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

section {
    margin-bottom: 50px;
}

/* ===== HEADINGS ===== */

h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e2e8f0;
    border-left: 4px solid #38bdf8;
    padding-left: 12px;
}

/* ===== TEXT ===== */

p {
    color: #cbd5e1;
    margin-bottom: 12px;
}

/* ===== LISTS ===== */

ul, ol {
    margin-top: 10px;
    margin-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #dbeafe;
}

/* ===== IP BOXES ===== */

.ip-box {
    background: linear-gradient(145deg, #020617, #0b1224);
    border: 1px solid rgba(56, 189, 248, 0.15);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 25px rgba(2, 6, 23, 0.8);
}

.ip-box h2 {
    border: none;
    padding: 0;
    margin-bottom: 10px;
    color: #38bdf8;
}

.ip {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 10px 0;
    color: #e0f2fe;
    text-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
}

.note {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ===== SMOOTH FADE-IN ===== */

section, .hero {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
