* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #0f0f13;
    color: #ffffff;
}

a {
    color: #00f2ea;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

.card {
    width: 100%;
    background: #1a1a22;
    border: 1px solid #2d2d38;
    border-radius: 18px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    border: none;
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    margin: 0 10px 10px 0;
}

input:not([type="checkbox"]),
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: #111118;
    color: white;
    border: 1px solid #333344;
    border-radius: 12px;
    font-size: 15px;
}

textarea {
    min-height: 100px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #111827;
    padding: 15px 20px;
    border-bottom: 1px solid #2d2d38;
}

.mobile-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-top h2 {
    margin: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
}

#nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

#nav-links .btn {
    margin: 0;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.badge {
    display: inline-block;
    background: #ff0050;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 13px;
}

.wallet {
    font-size: 24px;
    font-weight: bold;
    color: #00f2ea;
}

img {
    max-width: 100%;
    height: auto;
}

/* Simple human check */
.captcha-box {
    background: #111118;
    border: 1px solid #333344;
    border-radius: 14px;
    padding: 14px;
    margin: 15px 0;
}

.captcha-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.captcha-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    accent-color: #00f2ea;
}

/* Mobile */
@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .container {
        padding: 12px;
    }

    .card {
        padding: 15px;
        margin: 12px 0;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: block;
    }

    #nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    #nav-links .btn {
        width: 100%;
    }

    .btn {
        width: 100%;
        margin-right: 0;
    }

    input:not([type="checkbox"]),
    select,
    textarea,
    button:not(.menu-toggle) {
        width: 100%;
        font-size: 15px;
    }

    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }
}

.footer{
    margin-top:40px;
    padding:25px;
    text-align:center;
    border-top:1px solid #2d2d38;
    background:#111118;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:10px;
}

.footer a{
    color:#00f2ea;
    margin:0 8px;
}

.footer p{
    margin-top:10px;
    color:#888;
}

.footer-links{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

@media (max-width: 768px) {

    .navbar {
        padding: 20px;
    }

    #nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        margin-top: 20px;
    }

    #nav-links.show {
        display: flex !important;
    }

    #nav-links .btn {
        width: 100% !important;
        margin: 0 0 12px 0 !important;
    }

    .menu-toggle {
        display: block !important;
    }
}