/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #22304e #0e0e12;
    font-family: "Roboto", sans-serif;
    background-color: #0a0a0f;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* UTILITY CLASSES */
.h1-primary {
    font-size: 3.8rem;
    color: white;

}

/* SCROLLBAR THEME */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0d1220 0%, #111a2e 100%);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4da6ff 0%, #1e3c72 50%, #29dfff 100%);
    border-radius: 6px;
    border: 2px solid #0a0f1c;
    transition: all 0.3s ease-in-out;
    animation: thumbGlow 3s infinite alternate;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6ec6ff 0%, #2a5298 50%, #40e0ff 100%);
    border: 2px solid #162445;
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: #4da6ff #111a2e;
}

/* Animation */
@keyframes thumbGlow {
    0% {
        box-shadow: 0 0 6px #29dfff;
    }

    100% {
        box-shadow: 0 0 14px #4da6ff;
    }
}

/* NAVBAR */
.nav {
    background: linear-gradient(180deg, #0a0a0f, #12121c);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1000;
}

.nav img {
    width: 160px;
    height: auto;
    object-fit: contain;
}

.nav>ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav>ul li {
    color: whitesmoke;
    list-style: none;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}

.nav>ul li::after {
    content: "";
    position: absolute;
    border-radius: 25px;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: whitesmoke;
    transition: width 0.3s ease-in-out;
}

.nav ul li:hover::after {
    width: 100%;
}

.nav>ul li a {
    color: whitesmoke;
    text-decoration: none;
}

/* NAVBOX */
.navbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbox ul {
    display: flex;
    list-style: none;
    gap: 12px;
}

.navbox ul li {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: white;
    cursor: pointer;
}

#navbox1 {
    background-color: #1660ff;
    transition: background-color 0.3s;
}

#navbox1 a {
    text-decoration: none;
    color: white;
}

#navbox1:hover {
    background-color: #3967fd;
}

#navbox2 {
    background-color: #7354ff;
    transition: background-color 0.3s;
}

#navbox2:hover {
    background-color: #7979fc;
}

/* MENU BUTTON (mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #1a1d24;
    transition: 0.3s ease;
    display: none;
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

@media (max-width: 993px) {
    .sidebar {
        display: block;
    }
}

.sidebar.active {
    right: 0;
}

.sidebar header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar header h2 {
    font-size: 1.3rem;
    color: white;
    font-weight: 400;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    font-weight: 200;
    transition: 0.3s;
    position: relative;
}

.sidebar ul li i {
    color: #4dabff;
    font-size: 1.6rem;
}

.sidebar ul li:hover {
    color: #4dabff;
}

.sidebar .panel-btn,
.sidebar .billing-btn {
    display: block;
    text-align: center;
    margin: 15px 0;
    padding: 12px;
    background: linear-gradient(90deg, #2542e4, #3a87bb);
    border-radius: 8px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.sidebar .panel-btn:hover,
.sidebar .billing-btn:hover {
    opacity: 0.85;
}

/* DROPDOWN (Desktop) */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 6px;
    left: 0;
    background: #12121c;
    border: 1px solid #222;
    border-radius: 8px;
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    z-index: 2000;
}

.dropdown-menu li {
    padding: 10px 20px;
    font-size: 0.95rem;
    color: whitesmoke;
    cursor: pointer;
    transition: background 0.3s;
}

.dropdown-menu li a {
    text-decoration: none;
    color: whitesmoke;
}

.dropdown-menu li:hover {
    background: #1f1f2e;
    color: #4dabff;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* SIDEBAR DROPDOWN (Mobile) */
.sidebar .dropdown-menu {
    display: none;
    background: #222632;
    border-radius: 6px;
    margin-top: 5px;
    padding: 8px 0;
}

.sidebar .dropdown-menu li {
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #eee;
}

.sidebar .dropdown:hover .dropdown-menu {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .nav>ul,
    .navbox {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 576px) {
    .nav {
        padding: 0 1rem;
        height: 60px;
    }

    .nav img {
        width: 140px;
    }
}

/* BACKGROUND 1 */
.main {
    height: calc(100% - 100px);
    width: 100%;
    border: none;
}

.mainvideo {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: calc(100% - 100px);
    object-fit: cover;
    z-index: -1;
    mix-blend-mode: lighten;
}

.mainh1 {
    padding-top: 20rem;
    width: 250px;
    font-size: 82px;
    padding-left: 15rem;
    line-height: 67px;
}

.buttonbox1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main1button {
    margin-top: 32px;
    margin-left: 245px;
    border-radius: 6px;
    background-color: #3a87bb;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 18px;
    max-width: 12rem;
    padding: 12px 22px;
    transition: all 0.3s ease-in-out;
}

.main1button a {
    text-decoration: none;
    color: white;
}

.main1button:hover {
    background-color: #4dabff;
    transition: 0.2s;
}

.main1button:hover i {
    padding-left: 5px;
    transition: 0.2s;
}

.main2button {
    border-radius: 6px;
    background-color: #7979fc;
    color: white;
    cursor: pointer;
    border: none;
    font-size: 18px;
    padding: 12px 22px;
    margin-left: 244px;
    max-width: 12rem;
    transition: all 0.3s ease-in-out;
}

.main2button a {
    text-decoration: none;
    color: white;
}

.main2button:hover {
    background-color: #7354ff;
    transition: 0.2s;
}

.main2button:hover i {
    padding-left: 5px;
    transition: 0.2s;
}

@media (max-width: 576px) {
    .mainh1 {
        font-size: 58px;
        padding-left: 2rem;
        line-height: 1.2;
        padding-top: 11rem;
    }

    .main1button {
        margin-left: 2rem;
    }

    .main2button {
        margin-left: 2rem;
    }
}

/* BACKGROUND 2 */
.main2 {
    width: 100%;
    background: linear-gradient(180deg, #0d1013 0%, #0e141d 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1rem;
    gap: 2rem;
}

#gpartner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: #17181f;
    border-radius: 10px;
    padding: 1rem 2rem;
    width: 90%;
    max-width: 800px;
}

#gpartner img {
    width: 50px;
    height: 50px;
}

#gpartner h1 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: whitesmoke;
    font-size: 1.8rem;
    margin: 0;
}

#gpartner2 {
    border: 2px solid #5498ff;
    border-radius: 10px;
    width: 90%;
    max-width: 950px;
    padding: 1rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

#gpartner2 span {
    color: white;
    font-size: 1.1rem;
}

#gpartner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
}

#gpartner2:hover::before {
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.featurebox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.featurebox div {
    border: 1px solid #2b2d35;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.01));
    padding: 2rem;
    color: #e4e6eb;
    min-height: 220px;
    transition: transform .32s cubic-bezier(.2, .9, .32, 1), box-shadow .32s, border-color .32s;
    border: 2px solid transparent;
    outline: 2px solid transparent;
}

.featurebox div:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 20px rgba(3, 10, 30, 0.7);
}

.featurebox div:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 40px rgba(3, 10, 30, 0.7);
    border-color: #1b547a;
}

@media (max-width: 992px) {
    .featurebox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featurebox {
        grid-template-columns: 1fr;
    }
}

.featurebox div img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.featurebox div h2 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.featurebox div:hover h2 {
    color: #3ba9f0;
}

.featurebox div span {
    font-size: 0.95rem;
    color: #a3a6b0;
    line-height: 1.5;
    display: block;
}

.box1:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box1 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box1 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box1:hover h2 {
    color: #3498db;
}

.box1 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

.box2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box2 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box2 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box2:hover h2 {
    color: #3498db;
}

.box2 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

.box3:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box3 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box3 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box3:hover h2 {
    color: #3498db;
}

.box3 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

.box4:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box4 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box4 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box4:hover h2 {
    color: #3498db;
}

.box4 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

.box5:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box5 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box5 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box5:hover h2 {
    color: #3498db;
}

.box5 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

.box6:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.box6 img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.box6 h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: whitesmoke;
    transition: color 0.2s ease;
}

.box6:hover h2 {
    color: #3498db;
}

.box6 span {
    font-size: 0.9rem;
    color: gray;
    line-height: 1.4;
}

/* BACKGROUND 3 */
.main3 {
    width: 100%;
    height: 50vh;
    flex-direction: column;
    border: none;
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, 'Helvetica Neue', Arial;
    background: linear-gradient(180deg, #060b11 0%, #0b111b 60%);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

/* PANEL STYLING */
:root {
    --bg: #0b1020;
    --card: #0f1724;
    --accent: #1fb6ff;
    --glass: rgba(255, 255, 255, 0.04);
    --glass-2: rgba(255, 255, 255, 0.03);
    --text: #e6eef8;
    --muted: #9fb3ce;
}

.panel {
    width: 1100px;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 10px 40px rgba(2, 6, 23, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center
}


.title {
    font-size: 20px;
    font-weight: 700
}

.subtitle {
    color: var(--muted);
    font-size: 13px
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px
}

.card {
    background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .32s cubic-bezier(.2, .9, .32, 1), box-shadow .32s, border-color .32s;
    border: 1px solid transparent;
    outline: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(3, 10, 30, 0.7);
    border: 1px solid rgb(24, 58, 102);
}

.card.selected {
    border-color: rgba(31, 182, 255, 0.18);
    box-shadow: 0 20px 50px rgba(31, 182, 255, 0.06), 0 6px 20px rgba(3, 10, 30, 0.6);
}

.thumb {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-2)
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center;
    transition: transform .6s cubic-bezier(.2, .9, .32, 1)
}

.card:hover .thumb img {
    transform: scale(1.06)
}

.meta {
    display: flex;
    gap: 10px;
    align-items: center
}

.game-name {
    font-weight: 700
}

.desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.2
}

.features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 6px
}

.feature {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: center
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--glass)
}

.actions {
    display: flex;
    gap: 8px;
    margin-top: auto
}

.btn {
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text);
    transition: all .18s;
}

.btn.view {
    background-color: #1c1d24;
    color: #fafeff;
    box-shadow: 0 6px 18px rgba(15, 15, 22, 0.08);
}

.btn.info {
    color: var(--muted)
}

.card:focus-within {
    box-shadow: 0 24px 60px rgba(31, 182, 255, 0.06);
}

@media (max-width:980px) {
    .grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .thumb {
        height: 120px
    }
}

@media (max-width:560px) {
    .grid {
        grid-template-columns: 1fr
    }

    .panel {
        padding: 16px
    }

    .thumb {
        height: 160px
    }
}

.glow {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    pointer-events: none;
    box-shadow: inset 0 0 0 2px rgba(31, 182, 255, 0.06);
}

.card {
    opacity: 0;
    transform: translateY(20px);
    animation: enter .48s forwards cubic-bezier(.2, .9, .32, 1)
}

.card:nth-child(1) {
    animation-delay: .05s
}

.card:nth-child(2) {
    animation-delay: .09s
}

.card:nth-child(3) {
    animation-delay: .13s
}

.card:nth-child(4) {
    animation-delay: .17s
}

@keyframes enter {
    to {
        opacity: 1;
        transform: none
    }
}

@media (max-width: 975px) {
    .main3 {
        height: auto;
        padding: 2rem 1rem;
    }

    .panel {
        margin: 0 auto;
    }
}

.main4 {
    width: 100%;
    border: none;
    background: linear-gradient(180deg, #10121a 0%, #07090f 100%);
    color: #dbe6f0;
    height: auto;
    min-height: 30%;
}

:root {
    --bg: #071026;
    --card: #141925;
    --glass: rgba(255, 255, 255, 0.03);
    --accent: #00ffb3;
    --accent-2: #fafafa;
    --muted: #98a0b3;
    --danger: #ff6b6b;
    --radius: 14px;
    --pad: 18px;
    --glass-border: rgba(124, 242, 255, 0.08);
    --shadow: 0 8px 30px rgba(2, 10, 23, 0.6);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


/* LOCATIONS */
#wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

#hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px
}

#brand {
    display: flex;
    align-items: center;
    gap: 12px
}

#logo {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 10px;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 18px rgba(0, 255, 179, 0.08)
}

#title {
    font-weight: 700;
    letter-spacing: 0.4px
}

#sub {
    font-size: 12px;
    color: var(--muted)
}

#grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px
}

#card {
    background: linear-gradient(180deg, var(--card), rgba(255, 255, 255, 0.01));
    border-radius: var(--radius);
    padding: var(--pad);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: transform .32s cubic-bezier(.2, .9, .32, 1), box-shadow .32s, border-color .32s;
}

#card:hover {
    border: 1px solid rgb(24, 58, 102);
}

#card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(6, 10, 10, 0.02));
    pointer-events: none
}

#row {
    display: flex;
    gap: 12px;
    align-items: center
}

#left {
    flex: 1
}

#location {
    display: flex;
    gap: 10px;
    align-items: center
}

#pin {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: grid;
    place-items: center
}

#loc-title {
    font-size: 18px;
    font-weight: 700
}

#loc-sub {
    font-size: 12px;
    color: var(--muted)
}

.status {
    padding: 8px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px
}

.online {
    background: linear-gradient(90deg, rgba(0, 255, 179, 0.08), rgba(124, 242, 255, 0.03));
    color: var(--accent)
}

.offline {
    background: rgba(255, 107, 107, 0.08);
    color: var(--danger)
}

.meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px
}

.meta .item {
    background: var(--glass);
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    color: var(--muted);
    min-width: 120px
}

#bars {
    display: flex;
    gap: 10px;
    align-items: center
}

#bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    overflow: hidden
}

#bar>i {
    display: block;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 6px 14px rgba(124, 242, 255, 0.06)
}

#actions {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.btn {
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    border: 0;
    cursor: pointer
}

.btn.ghost {
    background: transparent;
    border: 1px solid rgba(124, 242, 255, 0.08);
    color: var(--accent-2)
}

.btn.primary {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #fcfdfd
}

.foot {
    margin-top: 12px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    justify-content: space-between
}

@media (max-width:880px) {
    #grid {
        grid-template-columns: 1fr
    }

    #hdr {
        flex-direction: column;
        align-items: flex-start
    }

    #brand .title {
        font-size: 16px
    }
}

.robotic {
    font-family: monospace;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.015));
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--muted)
}

.main5 {
    width: 100%;
    border: none;
    background: linear-gradient(180deg, #10121a 0%, #07090f 100%);
    color: #dbe6f0;
    min-height: 70vh;
    margin: 0;
    padding: 4rem;
}

.main5h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 8px 0 0 2rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
}

.main5span1 {
    margin: 2rem 0 0 2rem;
}

.faq-support-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin: 2rem 1rem;
}

/* FAQ section */
.faq-container {
    flex: 2;
    max-width: 800px;
}

.faq-item {
    background: rgba(20, 30, 50, 0.85);
    border: 1px solid rgba(31, 51, 70, 0.993);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(36, 37, 37, 0.2);
    transition: 0.3s;
    width: 100%;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 23, 34, 0.993);
    transition: 0.1s ease-in-out;
}

.faq-question:hover {
    background: rgba(18, 21, 32, 0.993);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    font-size: 14px;
    line-height: 1.6;
    color: #cceaff;
    background: rgba(14, 16, 24, 0.993);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 20px;
    color: whitesmoke;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Support Box */
.support-box {
    flex: 1;
    background: #141622;
    border: 1px solid #141622;
    border-radius: 12px;
    padding: 2rem;
    transition: 0.2s ease-in-out;
    max-width: 650px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.support-box:hover {
    border: 1px solid rgb(24, 58, 102);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.support-header img {
    width: 45px;
    height: 45px;
}

.support-header h2 {
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.support-text {
    font-size: 0.95rem;
    color: #a9b3c1;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.ticket-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #0e0f16;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ticket-btn:hover {
    transform: translateY(-2px);
    border-color: #7289da;
    background: #1b1e2e;
}

.ticket-btn img {
    width: 28px;
    height: 28px;
}

.ticket-btn div {
    display: flex;
    flex-direction: column;
}

.ticket-btn strong {
    font-size: 0.95rem;
}

.ticket-btn small {
    font-size: 0.75rem;
    color: #a9b3c1;
}

/* 📱 Responsive */
@media (max-width: 900px) {
    .faq-support-wrapper {
        flex-direction: column;
    }

    .support-box {
        max-width: 100%;
    }

    .faq-container {
        max-width: 100%;
    }
}

.main6 {
    width: 100%;
    border: none;
    background: linear-gradient(180deg, #10121a 0%, #07090f 100%);
    color: #dbe6f0;
    padding: 4rem 2rem;
    height: 70%;
}

.communityh1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: whitesmoke;
    margin: 0 auto 1rem auto;
    text-align: center;
}

.cmgridbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding-top: 50px;
    justify-content: center;
    align-items: center;
}

.cmgridbox1 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox2 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox3 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox4 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox5 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox6 {
    border: 1px solid #171820;
    height: 200px;
    border-radius: 6px;
    background: linear-gradient(160deg, #181b28, #10121b);
    padding: 22px;
    color: #e8eaf6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cmgridbox1:hover {
    border: 1px solid #242631;
}

.cmgridbox2:hover {
    border: 1px solid #242631;
}

.cmgridbox3:hover {
    border: 1px solid #242631;
}

.cmgridbox4:hover {
    border: 1px solid #242631;
}

.cmgridbox5:hover {
    border: 1px solid #242631;
}

.cmgridbox6:hover {
    border: 1px solid #242631;
}

/* BOXES REVIEW */
.cmgridbox h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #dcdbe7;
}

.cmgridbox p {
    margin: 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d6eb;
}

/* BOXES BADGES */
.cmbadges {
    margin-top: 15px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cmbadge {
    background: #23252e;
    color: #dcdbe7;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid whitesmoke;
    font-weight: 400;
    transition: 0.3s;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1010px) {
    .cmgridbox {
        display: grid;
        grid-template-columns: repeat(2, 2fr);
        margin-top: -35px;
    }

    .main6 {
        height: 100%;
    }
}

@media screen and (max-width: 750px) {
    .cmgridbox {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 690px) {
    .cmgridbox {
        grid-template-columns: 1fr;
    }

    .main6 {
        height: 1600px;
    }
}

/* MEDIA QUERIES FOR HEIGHT */
@media screen and (max-height: 903px) {
    .main6 {
        height: 80%;
    }
}

@media screen and (max-height: 815px) {
    .main6 {
        height: 90%;
    }
}

@media screen and (max-height: 715px) {
    .main6 {
        height: 100%;
    }
}

@media screen and (max-height: 640px) {
    .main6 {
        height: 680px;
    }
}

@media screen and (max-height: 910px) {
    .main6 {
        height: 660px;
    }
}

.main7 {
    width: 100vw;
    border: none;
    background: linear-gradient(180deg, #10121a 0%, #07090f 100%);
    color: #dbe6f0;
    padding: 4rem 2rem;
}

#ourgoal {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: whitesmoke;
    margin: 0 auto 1rem auto;
    text-align: center;
}

#ourgoalpara {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    color: white;
    line-height: 1.6;
    margin: 0 auto 3rem auto;
    text-align: center;
}

#performance {
    border: 1px solid #161827;
    border-radius: 10px;
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto 0 auto;
    padding: 2rem;
    background: linear-gradient(180deg, #10121a 0%, #07090f 100%);
    transition: all 0.3s ease;
}

#performance:hover {
    border: 1px solid rgb(24, 58, 102);
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.3);
}

#performance h2 {
    color: whitesmoke;
    font-size: 24px;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

#performanceimg {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.performance-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.performance-box {
    flex: 1 1 300px;
    max-width: 340px;
    border-radius: 12px;
    background-color: #131522;
    padding: 1rem;
    transition: 0.3s;
}

.performance-box:hover {
    background-color: #1f2031;
}

.performance-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.performance-box h3 {
    color: whitesmoke;
    font-size: 18px;
    margin: 0.5rem 0;
}

.performance-box p {
    color: rgb(187, 185, 185);
    font-size: 14px;
    line-height: 1.4;
}


#foundersays {
    border: 1px solid #131522;
    border-radius: 10px;
    max-width: 700px;
    margin: 3rem auto;
    padding: 1.5rem;
    background-color: #131522;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: default;
    transition: all 0.3s ease;
}

#foundersays:hover {
    border: 1px solid rgb(24, 58, 102);
    box-shadow: 0 0 5px rgba(0, 119, 204, 0.3);
}

#founderpfp {
    border-radius: 50%;
    border: 4px solid #0077cc;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.founder-content {
    flex: 1;
}

#foundersays h3 {
    font-size: 20px;
    color: white;
    margin: 0 0 0.5rem;
}

#foundersays p {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(224, 223, 220);
    margin: 0 0 1rem;
}

#foundersays button {
    border: none;
    background-color: #25445a;
    font-size: 15px;
    padding: 6px 12px;
    font-weight: 500;
    font-family: sans-serif;
    border-radius: 10px;
    color: #0396ff;
    cursor: default;
}

@media (max-width: 600px) {
    #foundersays {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #founderpfp {
        margin-bottom: 1rem;
    }

    .founder-content {
        width: 100%;
    }
}

.trustpilot-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 400;
    color: whitesmoke;
    background: linear-gradient(135deg, #02c987, #08da8d);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 182, 122, 0.4);
}

.trustpilot-btn:hover {
    background: linear-gradient(135deg, #1feca1, #30c996);
    box-shadow: 0 3px 10px rgba(15, 146, 98, 0.6);
    transform: translateY(-2px);
}

.trustpilot-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(0, 182, 122, 0.5);
}

@media (max-width: 600px) {
    .trustpilot-btn {
        font-size: 14px;
        padding: 10px 18px;
        border-radius: 10px;
    }
}

.thunder-footer {
    background: linear-gradient(180deg, #0a0a0f, #12121c);
    color: #ddd;
    padding: 3rem 1.5rem 1rem;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    color: #adb6b8;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 1.2rem;
}

.footer-socials a {
    margin-right: 0.8rem;
    display: inline-block;
}

.footer-socials img {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials img:hover {
    transform: scale(1.2);
}


.footer-section img {
    width: 28px;
    margin-bottom: 0.5rem;
}

.footer-section p {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 0.4rem 0;
    color: rgb(167, 160, 160);
}

.footer-section a {
    text-decoration: none;
    color: #e0d8d8;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.footer-section a::after {
    content: "";
    position: absolute;
    border-radius: 25px;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: whitesmoke;
    transition: width 0.3s ease-in-out;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}


.next-btn {
    width: 200px;
    height: 200px;
    background-color: #edff66;
    position: absolute;
    left: 45%;
    bottom: 45%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    transition: 0.5s;
}

.next-btn:hover {
    width: 200px;
    height: 200px;
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.616);
}

@media (max-width: 1000px) {
    .next-btn {
        display: none;
    }
}

@media (max-width: 1300px) {
    .next-btn {
        display: none;
    }
}

@media screen and (max-height: 780px) {
    .mainh1 {
        font-size: 6rem;
        line-height: 75.5px;
        padding-top: 13rem;
    }

    .main3 {
        height: 70vh;
    }
}

@media screen and (max-height: 683px) {
    .mainh1 {
        font-size: 6rem;
        line-height: 75.5px;
        padding-top: 10rem;
    }
}

@media screen and (max-height: 685px) {
    .mainh1 {
        font-size: 5rem;
        line-height: 75.5px;
        padding-top: 7.5rem;
    }

    .main3 {
        height: 550px;
    }
}

@media screen and (max-height: 595px) {
    .mainh1 {
        font-size: 4rem;
        line-height: 56px;
        padding-top: 8rem;
    }
}

@media screen and (max-height: 545px) {
    .mainh1 {
        font-size: 3.5rem;
        line-height: 50px;
        padding-top: 6.5rem;
    }
}

@media screen and (max-height: 505px) {
    .mainh1 {
        font-size: 3rem;
        line-height: 45px;
        padding-top: 5.6rem;
    }
}

@media screen and (max-height: 915px) {
    .main3 {
        height: 65vh;
    }
}

@media screen and (max-height: 730px) {
    .main3 {
        height: 80vh;
    }
}

@media screen and (max-height: 620px) {
    .main3 {
        height: 85vh;
    }
}

@media screen and (max-height: 560px) {
    .main3 {
        height: 95vh;
    }
}

@media screen and (max-height: 502px) {
    .main3 {
        height: 110vh;
    }
}

@media screen and (max-height: 432px) {
    .main3 {
        height: 130vh;
    }
}

@media screen and (max-height: 380px) {
    .main3 {
        height: 160vh;
    }
}

@media screen and (max-height: 472px) {
    .mainh1 {
        font-size: 2rem;
        line-height: 32px;
        padding-top: 5rem;
    }
}

@media screen and (max-height: 430px) {
    .mainh1 {
        font-size: 1.8rem;
        line-height: 30px;
        padding-top: 4.8rem;
    }

    .main1button {
        margin-top: 8px;
    }

    .main2button {
        margin-top: 8px;
    }
}

@media screen and (max-width: 1000px) {
    .main3 {
        height: 125vh;
    }
}

@media screen and (max-width: 1000px) {
    .main6 {
        height: 128vh;
    }
}

@media screen and (max-width: 690px) {
    .main6 {
        height: 232vh;
    }
}

@media screen and (max-width: 560px) {
    .main3 {
        height: 245vh;
    }
}