:root {
    --main: #6c29ed;
    --text: #ffffff;
}

/* 

holy shit this grid bg took so long fml

*/
html,
body {
    min-height: 100%;
}

body {
    background-color: #06020d;
    background-image:
        radial-gradient(circle at 50% -25%, rgba(58,10,122,0.95) 0%, rgba(26,3,51,0.85) 35%, rgba(0,0,0,0.98) 100%),
        radial-gradient(circle at 50% 55%, rgba(108,41,237,0.14) 0%, transparent 40%),
        linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 100% 100%, 120% 120%, 20px 20px, 20px 20px, 80px 80px, 80px 80px;
    background-position: center center;
    background-attachment: fixed;
    background-blend-mode: normal, normal, normal, normal, normal, normal;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}


.navbar {
    background: transparent;
    padding: 18px 0;
    backdrop-filter: blur(6px);
}

.hero {
    padding: 200px 0 160px;
    text-align: center;
    max-width: 1100px;
    margin: auto;
}

.hero img {
    height: 130px;
    filter: drop-shadow(0 0 12px rgba(108,41,237,0.7));
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.05;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #8b3dff, #6c29ed, #b57dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(108,41,237,0.22);
}
.navbar .container .navbar-brand .gradient-text {
    background: linear-gradient(135deg, #8b3dff, #6c29ed, #b57dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.hero p {
    font-size: 1.25rem;
    opacity: 0.85;
}


.float-card ol {
    counter-reset: item;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

.float-card ol li {
    counter-increment: item;
    margin-bottom: 22px;
    padding-left: 48px;
    position: relative;
    line-height: 1.55;
    font-size: 1.05rem;
    opacity: 0.9;
}

/* Number bubble */
.float-card ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(108,41,237,0.25);
    border: 1px solid rgba(108,41,237,0.45);
    color: #ffffff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 10px rgba(108,41,237,0.25);
}

/* Bold section titles inside list items */
.float-card ol li strong {
    color: #d8caff;
    font-weight: 600;
}
/* TOS Section Container */
.tos-list {
    max-width: 750px; /* controls width */
    margin: 0 auto;   /* centers it */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Compact TOS Frame */
.tos-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px 22px;
    backdrop-filter: blur(6px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.tos-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(108,41,237,0.35);
}

/* Number Badge */
.tos-number {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(108,41,237,0.25);
    border: 1px solid rgba(108,41,237,0.45);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(108,41,237,0.25);
    backdrop-filter: blur(4px);
}

/* Text */
.tos-content {
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0.9;
}

.tos-content strong {
    color: #d8caff;
    font-weight: 600;
}


footer {
    margin-top: 120px;
    padding: 80px 0;
    background: rgba(0,0,0,0.45);
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #d8caff;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: 0.2s;
}

footer a:hover {
    color: #ffffff;
}

footer i {
    font-size: 26px;
    margin: 0 14px;
    color: #bfa8ff;
    transition: 0.2s;
}

footer i:hover {
    color: #ffffff;
}