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

html{
    overflow-x:hidden;
}

body{
    font-family:'Rajdhani',sans-serif;
    background:#0F0F0F;
    color:#fff;
    min-height:100vh;
    overflow-x:hidden;
}

.bottom-nav-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    height: 100px;
    pointer-events: none;
}

.bottom-nav {
    background-color: #1C1C1C;
    border: 1px solid #333333;
    padding: 12px 25px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
}

.nav-btn {
    color:#aaa;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.nav-btn:hover{
    color:#fff;
}

.nav-spacer{
    width:64px;
}

.settings-fab{
    position:absolute;
    bottom:16px;
    left:50%;
    transform:translateX(-50%);
    width:66px;
    height:66px;
    background:#C93131;
    border:4px solid #1d1d1d;
    box-shadow:0 2px 6px rgba(0,0,0,.5);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    transition:.3s;
    z-index:1000;
    pointer-events:auto;
    text-decoration:none;
}

.settings-fab:hover{
    background:#ad2b2b;
}

.main {
    flex: 1;
    padding: 30px;
    padding-bottom: 75px;
}

.page-header{
    background:linear-gradient(145deg,#C93131,#a91f1f);
    border-radius:16px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 0 30px rgba(201,49,49,.25);
}

.page-header h1{
    font-size:36px;
    font-weight:700;
}

.page-header p{
    margin-top:10px;
    color:#f0f0f0;
    font-size:18px;
}

.contact-btn:hover{
    background:#b42b2b;
}

::-webkit-scrollbar{
    width:3px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:#695d5d;
    border-radius:999px;
}

.settings-overlay{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    transition:.15s;
    z-index:99999;
}

.settings-overlay.active{
    opacity:1;
    visibility:visible;
}

.settings-overlay iframe{
    width:min(1300px,95vw);
    height:min(760px,92vh);
    border:#333333 1px solid;
    border-radius:30px;
    overflow:hidden;
    background:#111;
    transform:scale(.96);
    transition:transform .15s;
    box-shadow:0 25px 80px rgba(0,0,0,.6);
}

.settings-overlay.active iframe{
    transform:scale(.98);
}

:focus{
    outline:none;
    box-shadow:none;
}

:focus-visible{
    outline:3px solid #C93131;
}

.legal h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 45px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.legal h2:first-child {
    margin-top: 0;
}

.legal p {
    font-size: 16px;
    font-weight: 400;
    color: #a8a8a8;
    line-height: 1.8;
    margin-bottom: 22px;
}

.legal ul {
    margin: 10px 0 25px 25px;
    padding: 0;
}

.legal li {
    font-size: 16px;
    color: #a8a8a8;
    line-height: 1.8;
    margin-bottom: 8px;
}