@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #fab028;
    --primary-hover: #e59a1f;
    --text-dark: #222222;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --card-shadow: rgba(0, 0, 0, 0.1) 0px 25px 65px 0px;
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* Header & Navbar */
.navbar {
    background: var(--bg-light) !important;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    margin: 0 12px;
    font-size: 15px;
}

.btn-download-app {
    border: 1.5px solid var(--primary-color) !important;
    background: transparent !important;
    color: #444 !important;
    border-radius: 4px;
    padding: 6px 20px !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: var(--transition);
}

.btn-download-app:hover {
    background: var(--primary-color) !important;
    color: #fff !important;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-title-big {
    font-size: 48px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.hero-woman-img {
    max-height: 500px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Floating Dots (Shared) */
.dot {
    position: absolute;
    border-radius: 50%;
    z-index: 0 !important;
}

.dot-1 {
    width: 30px;
    height: 30px;
    background: #ffe68d;
    top: 15%;
    left: 5%;
}

.dot-2 {
    width: 15px;
    height: 15px;
    background: #ff7e4f;
    top: 25%;
    left: 35%;
}

.dot-3 {
    width: 25px;
    height: 25px;
    background: #96c9c9;
    top: 70%;
    left: 45%;
}

.dot-4 {
    width: 40px;
    height: 40px;
    background: #ffaa85;
    top: 65%;
    right: 20%;
}

.dot-5 {
    width: 20px;
    height: 20px;
    background: #ffe68d;
    top: 20%;
    right: 10%;
}

.dot-6 {
    width: 15px;
    height: 15px;
    background: #96c9c9;
    bottom: 10%;
    right: 5%;
}

.dot-7 {
    width: 20px;
    height: 20px;
    background: #ffaa85;
    bottom: 5%;
    left: 2%;
}

/* Rates/Games Area Dots Fix */
.rates-area,
.results-area,
.blog-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.rates-area .dot,
.results-area .dot,
.blog-section .dot {
    opacity: 0.5;
}

.rates-area .dot-1,
.results-area .dot-1,
.blog-section .dot-1 {
    top: 10%;
    left: 5%;
}

.rates-area .dot-2,
.results-area .dot-2,
.blog-section .dot-2 {
    top: 20%;
    right: 10%;
}

.rates-area .dot-3,
.results-area .dot-3,
.blog-section .dot-3 {
    bottom: 30%;
    left: 15%;
}

.rates-area .dot-4,
.results-area .dot-4,
.blog-section .dot-4 {
    bottom: 10%;
    right: 5%;
}

/* Pill Download Bar */
.pill-download-container {
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.btn-pill-download {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(to right, #fab028, #fccb1a);
    color: #444 !important;
    font-weight: 700;
    font-size: 20px;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(250, 176, 40, 0.3);
    transition: var(--transition);
    border: none;
    position: relative;
    z-index: 3;
}

.btn-pill-download i {
    font-size: 24px;
    margin-right: 12px;
}

.btn-pill-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 176, 40, 0.4);
}

/* Contact Section */
.hero-contact {
    margin-top: 25px;
    text-align: center;
}

.contact-number {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.contact-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-contact {
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: #fff !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: linear-gradient(to right, #ff7e4f, #ff9e4f);
}

.btn-whatsapp {
    background: #25d366;
}

/* Game Card (Refined) */
.results-area {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.game-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.game-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.game-name-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.info-icon {
    font-size: 13px;
    color: #999;
    margin-left: 8px;
}

.status-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 0;
}

.status-badge.closed {
    color: #ff5e5e;
}

.status-badge.open {
    color: #2ecc71;
}

.game-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-result {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    letter-spacing: 0.5px;
}

.play-btn-round {
    width: 42px;
    height: 42px;
    background: #fab028;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 16px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(250, 176, 40, 0.4);
}

.game-card-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    border-top: 1.5px solid #f8f8f8;
    padding-top: 15px;
}

.btn-chart-small {
    flex: 1;
    border: 1px solid #fab028;
    color: #333 !important;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0;
    text-align: center;
    border-radius: 4px;
    text-decoration: none !important;
}

.btn-chart-small:hover {
    background: #fab028;
    color: #fff !important;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
    background: #fff;
}

.welcome-box {
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    padding: 30px;
    background: #fff;
}

.welcome-box h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.welcome-box h4 {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 15px;
}

.welcome-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.welcome-box ul {
    list-style: none;
    padding-left: 0;
}

.welcome-box ul li {
    color: #666;
    font-size: 14px;
    padding: 0px 0;
    position: relative;
    padding-left: 20px;
}

.welcome-box ul li::before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.tags-box {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dotted #ccc;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* Game Rates Grid */
.rate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rate-card {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    min-height: 80px;
}

.rate-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.rate-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.rate-card p {
    font-size: 14px;
    color: #888;
    margin: 0;
    text-transform: uppercase;
}

/* Redesigned Footer */
.main-footer {
    background: #F6F6F6;
    padding: 80px 0 40px;
    border-top: 1px solid #eee;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.footer-logo-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.8;
}

.footer-logo-text {
    position: relative;
    z-index: 1;
    font-size: 42px;
    font-weight: 700;
    color: #333;
}

.footer-18-badge {
    text-align: center;
    margin-bottom: 10px;
}

.badge-18-circle {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
}

.footer-warning-text {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
}

.footer-gamble-wrap {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
}

.gamble-logo-box img {
    height: 50px;
}

.footer-nav-links {
    text-align: center;
    margin-bottom: 40px;
}

.footer-nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
    transition: var(--transition);
}

.footer-nav-links a:hover {
    color: var(--primary-color);
}

.footer-separator {
    color: #ccc;
}

.footer-legal-block {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #999;
    font-size: 13px;
    line-height: 1.8;
    padding: 0 20px;
}

.footer-divider-line {
    border-top: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.footer-bottom-info {
    text-align: center;
    color: #999;
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* FAQ Section */
.faq-section {
    padding: 50px 0;
}

.accordion .card {
    border: none;
    border-bottom: 1px solid #eee !important;
    background: transparent;
    border-radius: 0 !important;
}

.accordion .btn-link {
    width: 100%;
    text-align: left;
    color: #222;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 15px 0;
    box-shadow: none;
}

.accordion .btn-link i {
    margin-right: 15px;
    color: #999;
    font-size: 1.2rem;
}

.accordion .card-body {
    padding: 0 0 20px 35px;
    color: #666;
    font-size: 15px;
}

/* Section Headings */
.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #222;
}

/* Latest Blogs Section */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    display: inline-block;
    background: var(--primary-color);
    color: #444 !important;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    text-transform: uppercase;
    width: fit-content;
    transition: var(--transition);
}

.btn-read-more:hover {
    background: var(--primary-hover);
    color: #fff !important;
}

/* SEO Content Section */
.seo-content-section {
    padding: 60px 0;
    background: #fff;
    color: #444;
}

.seo-content-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.seo-content-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-content-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.seo-content-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-content-section ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    list-style: disc;
}

@media (max-width: 991px) {
    .rate-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-gamble-wrap {
        gap: 50px;
    }
}

@media (max-width: 575px) {
    .rate-grid {
        grid-template-columns: 1fr;
    }

    .footer-gamble-wrap {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}