﻿:root {
    --page-bg: #080808;
    --panel-bg: #1b1b1b;
    --panel-border: #252525;
    --muted-text: #b3b3b3;
    --text-soft: #b0b0b0;
    --soft-text: #8d8d8d;
    --gold-1: #7c6120;
    --gold-2: #f8d768;
    --gold-3: #ffc53b;
    --textFontSize: clamp(0.75rem, 1vw, 0.95rem);
    --borderThin: 1px solid rgba(255, 255, 255, 0.08);
    --borderRadius: 10px;
}


.about-page {
    margin: 0 auto;
    padding: 0 16px 32px;
}

.back-btn {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.top-navbar {
    height: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #000;
}
.nav-title {
    font-size: 20px;
    font-weight: 700;
}
.policy-wrapper {
    max-width: 900px;
    margin: 0px auto;
    background: #050505;
    border: 1px solid #111;
    box-shadow: 0 0 30px rgba(255,255,255,.03);
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 30px;
}
    .policy-wrapper p {
        color: rgb(176, 176, 176);
        line-height: 1.7;
        font-size: 14px;
    }

.policy-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
}
 h4.fw-bold.mt-4.text-white {
    font-size: 16px;
    font-weight: 600;
    color: rgb(176, 176, 176) !important;
}
    .policy-wrapper h3 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 18px;
        margin-bottom: 15px;
        color: #fff;
    }

.policy-wrapper ul {
    padding-left: 25px;
    font-size: 14px;
}

.policy-wrapper li {
    color: #d0d0d0;
    margin-bottom: 12px;
    line-height: 1.8;
    list-style: none;
}
@media(max-width:768px) {
    .policy-wrapper {
        max-width: 900px;
        margin: 0px auto;
        background: #050505;
        border: 1px solid #111;
        box-shadow: 0 0 30px rgba(255,255,255,.03);
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }
    .nav-title {
        font-size: 17px;
        font-weight: 700;
        padding-top: 40px;
        align-items: center;
        text-align: center;
    }
}