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

:root {
    --primary-yellow: #FFFF00;
    --whatsapp-green: #00AA00;
    --accent-cyan: #00e5ff;
    --danger-red: #ff3131;
    --text-white: #ffffff;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0 !important;

}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.4;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/two-dice.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}


.main-container.main-cont-bg-drk {
    min-height: 100vh;
    width: 100%;
    background-color: #00000078;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), #00000078, rgba(0, 0, 0, 0.9));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 50px;
}

.naseeb-main-cont {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.naseeb-main-cont h1 {
    color: var(--primary-yellow);
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo {
    max-width: 35rem;
    width: 80%;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.whatsapp-section {
    width: 100%;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-text {
    font-weight: 700;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: #0ba30b;
    color: #fff;
    text-decoration: none;
    padding: 12px 0;
    width: 30%;
    border-radius: 5px;
    font-weight: 900;
    font-size: 1.2rem;
    border: 2px solid #fff;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.btn-whatsapp {
    display: flex;
    /* Aligns icon and text perfectly */
    justify-content: center;
    /* Centers content */
    align-items: center;
    /* Centers vertically */
    gap: 10px;
    /* Space between icon and text */
}

.btn-whatsapp i {
    font-size: 1.4rem;
    /* Makes the icon slightly larger */
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    background-color: #0cb30c;
}

.trusted-label {
    color: var(--primary-yellow);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 15px 0 5px 0;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}

.naseeb-main-cont p.yellow-text {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-top: 10px;
}

.features {
    list-style: none;
    margin: 20px 0;
    width: 100%;
}

.features li {
    font-size: 2.3rem;
    font-weight: 900;
    margin: 20px 0;
    text-transform: uppercase;
    text-shadow: 0px 1px 2px #000;
}

.yellow-text {
    color: var(--primary-yellow);
}

.white-text {
    color: #fff;
}

.star-icon {
    color: var(--primary-yellow);
    margin-right: 5px;
    font-size: 2.3rem;
}

.footer-highlight {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-highlight strong {
    color: var(--accent-cyan);
    font-size: 2rem;
    text-transform: capitalize;
}

.trusted-badge {
    color: #fff;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
}

.trusted-badge::before {
    content: "100% ";
    color: var(--danger-red);
}

.game-categories {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #ddd;
    line-height: 1.3;
    padding: 0 10px;
}

.get-id-txt {
    font-size: 2.5rem;
}

.dont-miss-para {
    font-size: 3rem;
}

@media (min-width:375px) and (max-width:768px) {
    .naseeb-main-cont h1 {
        font-size: 26px;
    }

    .logo {
        width: 90%;
    }

    .cta-text {
        font-size: 25px;
    }

    .btn-whatsapp {
        width: 70%;
    }

    .trusted-label {
        font: 25px;
    }
    
    .get-id-txt {
    font-size: 35px;
}

.features li {
    font-size: 20px;
    margin: 0px 0;
}
.star-icon{
    font-size: 1.6rem;
}
.footer-highlight strong {
    font-size: 25px;
}
.trusted-badge {
    font-size: 25px;
}
.dont-miss-para {
    font-size: 24px;
}
.game-categories{
    font-size: 1rem;
}

}