html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    color: #fff !important;
    margin: 0;
    padding: 0;
}h1, h2 {  font-family: "Orbitron", sans-serif;}

/* header section style */
.offcanvas {
    background-color: #111;
}

/* hero section style */
.hero-section {
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 50vh;
        display: flex;
        align-items: center;
    }

    .hero-section .container {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .hero-section .row {
        width: 100%;
        align-items: center;
    }
}

.hero-title {
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    color: #ff003c;
}

.hero-description {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    color: #d0d0d0;
    line-height: 1.8;
}

/* play section style */
.play-section {
    background-color: #ccc;
}

.play-section h3 {
    font-family: "Orbitron", sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2.5vw + 0.7rem, 2rem);
    color: #ff003c;
}

.play-section p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    color: #111;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-danger {
    background-color: #ff003c;
    border: none;
    transition: background 0.3s ease;
}

.btn-danger:hover {
    background-color: #e60034;
}

/* how to play section style */
.withdraw-section {
    min-height: 100vh;
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.withdraw-section h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    font-weight: 700;
    color: #ff003c;
    text-transform: uppercase;
}

.blogh2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    font-weight: 700;
    color: #ff003c !important;
    text-transform: uppercase;
}


.withdraw-section p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 600px;
}

.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

/* blogs section style */
.blog-section {
    background-color: #cccccc !important;
}
.badge {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
}

.blog-section h2 {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    line-height: 1.5;
}

.blog-section .highlight {
    color: #ff003c;
}

.blog-section p {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    color: #666;
    margin-top: 1rem;
}

.feature-item {
    text-align: left;
}

.feature-item .label {
    font-weight: 700;
    font-family: "Orbitron", sans-serif;
    margin-bottom: 0.25rem;
    color: #111;
}

.feature-item .desc {
    font-size: 0.95rem;
    color: #555;
    font-family: "Poppins", sans-serif;
}

/* article section style */
.article-section {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.article-section h2 {
    font-size: clamp(1.5rem, 3vw + 0.8rem, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
}

.article-section h2,
.article-section h3,
.article-section h5 {
    font-family: "Orbitron", sans-serif;
    color: #ff003c;
}

.article-section p {
    font-family: "Poppins", sans-serif;
    color: #ccc;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
}

.btn-danger {
    background-color: #ff003c;
    border: none;
    transition: background 0.3s ease;
}

.btn-danger:hover {
    background-color: #e60034;
}

.shadow-sm {
    box-shadow: 0 0 8px rgba(255, 0, 60, 0.3);
}

/* faq style */
.faq-section {
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.accordion-button {
    background-color: #121212;
    color: #ccc;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.accordion-button:not(.collapsed) {
    color: #ff003c;
}

.accordion-body {
    background-color: #ccc;
    color: #111;
    font-size: clamp(1rem, 1vw + 0.8rem, 1.125rem);
    line-height: 1.6;
}

.py-10 {
	padding-top: 10rem !important;
	padding-bottom: 3rem !important;

}
