:root{
            --black: #0b0b0b;
            --dark-red: #6b0f0f;
            --text: #e6e6e6;
            --muted: #9a9a9a;
            --border: #2a2a2a;
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Georgia", "Times New Roman", serif;
    background: radial-gradient(circle at top, #111, #000);
    color: #e0e0e0;
    line-height: 1.9;
    letter-spacing: 0.6px;
}
.header-line {
            height: 2px;
            width: 100%;
            background: linear-gradient(to right, transparent, var(--dark-red), transparent);
            margin: 18px 0;
        }

section.gate {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.gate-box {
    max-width: 820px;
    text-align: center;
    animation: fadeIn 1.8s ease;
}

.gate-number {
    font-size: 12px;
    letter-spacing: 4px;
    color: #888;
    margin-bottom: 20px;
}

h1 {
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.divider {
   
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--dark-red), transparent);
    margin: 18px 0;
 }

 .highlight-box {
    margin: 30px 0;
    padding-left: 18px;
    border-left: 3px solid #6b0f0f;
}

.highlight-box p {
    margin: 0;
    font-size: 16px;
    color: #f1e6e6;
    line-height: 1.6;
}

    


p {
    font-size: 16px;
    color: #d2d2d2;
    margin: 18px 0;
    text-align: justify;
    text-align-last: center;
}

ul {
    list-style: none;
    margin: 30px 0;
}

ul li {
    margin: 10px 0;
    letter-spacing: 1px;
}

.btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

button {
    padding: 14px 42px;
    background: transparent;
    border: 1px solid #777;
    color: #e0e0e0;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s ease;
}

button:hover {
    background: #e0e0e0;
    color: #000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BASE */
body {
    font-size: 16px;
}

/* GATE CONTENT */
.gate {
    max-width: 680px;
    margin: auto;
    padding: 20px;
}

/* HEADINGS */
.gate h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* PARAGRAPHS */
.gate p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* HIGHLIGHT POINTS */
.highlight-box p {
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {

    body {
        font-size: 18px;
    }

    .gate {
        padding: 22px 18px;
    }

    .gate h2 {
        font-size: 28px;
        text-align: center;
    }

    .gate p {
        font-size: 19px;
        line-height: 1.9;
    }

    .highlight-box {
        margin: 28px 0;
        padding-left: 16px;
    }

    .highlight-box p {
        font-size: 19px;
        font-weight: 500;
    }
}
