/* =========================================
   NITINMEDIA — TERMS & CONDITIONS
   RESPONSIVE CSS
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050505;
    color: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

/* =========================================
   HEADER
   ========================================= */

.terms-header {
    position: relative;
    padding: 70px 20px 55px;
    text-align: center;
    border-bottom: 1px solid #1d1d1d;

    background:
        radial-gradient(
            circle at center,
            rgba(242, 198, 61, 0.08),
            transparent 45%
        ),
        #050505;
}

.brand {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.brand span {
    color: #f2c63d;
    font-weight: 500;
}

.label {
    display: inline-block;

    color: #f2c63d;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.terms-header h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 20px;
}

.terms-header h1 span {
    color: #f2c63d;
}

.updated {
    color: #777;
    font-size: 14px;
}

/* =========================================
   MAIN CONTAINER
   ========================================= */

.terms-wrapper {
    width: min(1100px, calc(100% - 40px));

    margin: 0 auto;

    padding: 70px 0 100px;
}

/* =========================================
   INTRO
   ========================================= */

.intro {
    max-width: 850px;

    margin-bottom: 55px;

    color: #aaa;

    font-size: 16px;
}

.intro strong {
    color: #fff;
}

/* =========================================
   TERMS SECTIONS
   ========================================= */

.terms-section {
    padding: 34px 0;

    border-top: 1px solid #1d1d1d;
}

.terms-section:first-of-type {
    border-top: none;
}

.terms-section h2 {
    color: #f2c63d;

    font-size: 21px;
    font-weight: 800;

    margin-bottom: 16px;
}

.terms-section p {
    color: #aaa;

    font-size: 15px;

    margin-bottom: 14px;
}

.terms-section ul {
    padding-left: 22px;

    margin-top: 10px;
}

.terms-section li {
    color: #aaa;

    font-size: 15px;

    margin-bottom: 8px;

    padding-left: 5px;
}

.terms-section li::marker {
    color: #f2c63d;
}

.terms-section strong {
    color: #eee;
}

/* =========================================
   IMPORTANT NOTICE
   ========================================= */

.notice {
    margin: 25px 0;

    padding: 22px 25px;

    border-left: 3px solid #f2c63d;

    background: #0b0b0b;

    color: #aaa;
}

.notice strong {
    display: block;

    color: #f2c63d;

    margin-bottom: 5px;
}

/* =========================================
   CONTACT
   ========================================= */

.contact-box {
    margin-top: 50px;

    padding: 35px;

    border: 1px solid #292929;

    background:
        radial-gradient(
            circle at top right,
            rgba(242, 198, 61, 0.07),
            transparent 40%
        ),
        #080808;
}

.contact-box h2 {
    color: #f2c63d;

    margin-bottom: 12px;
}

.contact-box p {
    margin-bottom: 5px;
}

.contact-box a {
    color: #f2c63d;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.contact-box a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* =========================================
   FOOTER
   ========================================= */

footer {
    border-top: 1px solid #1d1d1d;

    padding: 35px 20px;

    text-align: center;

    color: #666;

    font-size: 13px;
}

footer span {
    color: #f2c63d;
}

/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    .terms-wrapper {
        width: min(100% - 40px, 800px);

        padding-top: 55px;
    }

    .terms-header {
        padding-top: 55px;
    }

    .terms-section {
        padding: 30px 0;
    }
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .terms-header {
        padding: 48px 18px 40px;
    }

    .brand {
        font-size: 17px;

        margin-bottom: 28px;
    }

    .label {
        font-size: 10px;
        letter-spacing: 2.5px;

        margin-bottom: 15px;
    }

    .terms-header h1 {
        font-size: 42px;

        line-height: 0.98;

        margin-bottom: 18px;
    }

    .updated {
        font-size: 12px;
    }

    .terms-wrapper {
        width: calc(100% - 30px);

        padding: 45px 0 70px;
    }

    .intro {
        font-size: 15px;

        line-height: 1.7;

        margin-bottom: 30px;
    }

    .terms-section {
        padding: 27px 0;
    }

    .terms-section h2 {
        font-size: 19px;

        line-height: 1.3;

        margin-bottom: 14px;
    }

    .terms-section p {
        font-size: 14px;

        line-height: 1.7;
    }

    .terms-section ul {
        padding-left: 20px;
    }

    .terms-section li {
        font-size: 14px;

        line-height: 1.65;

        margin-bottom: 7px;
    }

    .notice {
        padding: 18px;

        margin: 20px 0;
    }

    .notice strong {
        font-size: 14px;
    }

    .contact-box {
        padding: 25px 20px;

        margin-top: 30px;
    }

    .contact-box h2 {
        font-size: 20px;
    }

    footer {
        padding: 28px 15px;

        font-size: 12px;
    }
}

/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

    .terms-header {
        padding-left: 15px;
        padding-right: 15px;
    }

    .terms-header h1 {
        font-size: 36px;
    }

    .terms-wrapper {
        width: calc(100% - 24px);
    }

    .terms-section h2 {
        font-size: 18px;
    }

    .terms-section p,
    .terms-section li {
        font-size: 13.5px;
    }
}