
:root {
    --primary-blue: #0b427b;
    --hover-blue: #072d54;
    --accent-gold: #c59b27;
    --light-bg: #f8f9fa;
    --dark-text: #1a1e21;
    --card-border: #edf2f7;
    --back-blue: #e3f2fd;
    --back-text: #0d47a1;
    --lay-pink: #fce4ec;
    --lay-text: #880e4f;
    --whatsapp-green: #25d366;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* Top Notification Bar */
.top-announcement {
    background: linear-gradient(90deg, var(--primary-blue), #062647);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-gold);
}

/* Header & Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 5px 0;
}
.navbar-brand img {
    max-height: 58px;
    width: auto;
}
.btn-login {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-login:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
}
.btn-register {
    /* background: linear-gradient(135px, var(--accent-gold) 0%, #a47e19 100%); */
    background: #c59b27;
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(197, 155, 39, 0.2);
    transition: all 0.3s ease;
}
.btn-register:hover {
    transform: translateY(-1px);
    /* box-shadow: 0 6px 18px rgba(197, 155, 39, 0.4); */
    color: #0b427b;
    background: #fff;
}
.btn-whatsapp-cta {
    /* background-color: var(--whatsapp-green); */
    background: #c59b27;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.btn-whatsapp-cta:hover {
    background-color: #0b427b;
    color: white;
    transform: translateY(-1px);
}

/* Sports Horizontal Subnav */
.sports-ticker {
    background-color: #fcfdfe;
    border-bottom: 1px solid var(--card-border);
    overflow-x: auto;
    white-space: nowrap;
}
.sports-ticker::-webkit-scrollbar {
    display: none;
}
.sports-ticker .nav-link {
    color: #4a5568;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}
.sports-ticker .nav-link:hover, .sports-ticker .nav-link.active {
    color: var(--primary-blue);
    border-bottom-color: var(--primary-blue);
    background-color: rgba(11, 66, 123, 0.02);
}

/* Premium Hero Banner */
.hero-section {
    background: radial-gradient(circle at top right, rgba(197,155,39,0.08) 0%, rgba(11,66,123,0.02) 100%), #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid var(--card-border);
}
.live-pulse {
    background-color: #e53e3e;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(229, 62, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 62, 62, 0); }
}

/* Highlight Bonus Strip */
.bonus-strip {
    background: linear-gradient(90deg, #041b33 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    border: 1px solid rgba(197, 155, 39, 0.3);
}

/* Feature Card Grid Components */
.feature-category-card {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}
.feature-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-color: var(--accent-gold);
}

/* Interactive Showcase Grid */
.visual-display-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.visual-display-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.visual-display-card:hover img {
    transform: scale(1.06);
}
.visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 66, 123, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 24px;
}

/* Casino Specific Showcase Cards */
.casino-game-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.casino-game-card:hover {
    transform: scale(1.03);
}
.casino-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--accent-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-uppercase: uppercase;
}

/* Interactive Market Selection Tabs */
.market-tabs .nav-link {
    border: 1px solid var(--card-border) !important;
    color: #4a5568;
    font-weight: 600;
    border-radius: 30px !important;
    padding: 10px 24px;
    margin-right: 8px;
    background-color: #ffffff;
    transition: all 0.2s;
}
.market-tabs .nav-link.active {
    background-color: var(--primary-blue) !important;
    color: #ffffff !important;
    border-color: var(--primary-blue) !important;
}

/* Advanced Exchange Layout Tables */
.betting-table-wrapper {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
    overflow: hidden;
}
.table-heading-row {
    background-color: var(--light-bg);
    border-bottom: 2px solid var(--card-border);
    padding: 16px 20px;
    font-weight: 700;
    color: var(--primary-blue);
}
.exchange-match-row {
    border-bottom: 1px solid var(--card-border);
    padding: 18px 20px;
    transition: all 0.2s;
}
.exchange-match-row:hover {
    background-color: rgba(11, 66, 123, 0.01);
}
.odds-button-container {
    display: flex;
    gap: 6px;
}
.odds-cell {
    width: 70px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.1s ease;
}
.odds-cell .price { font-weight: 700; font-size: 15px; }
.odds-cell .size { font-size: 10px; opacity: 0.7; font-weight: 500; }
.odds-cell:active { transform: scale(0.94); }
.cell-back { background-color: var(--back-blue); color: var(--back-text); }
.cell-back:hover { background-color: #bbdefb; }
.cell-lay { background-color: var(--lay-pink); color: var(--lay-text); }
.cell-lay:hover { background-color: #f8bbd0; }

/* Step Timeline Section */
.step-icon-circle {
    width: 75px;
    height: 75px;
    background-color: rgba(11, 66, 123, 0.05);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
    border: 2px solid transparent;
    transition: all 0.3s;
}
.step-card:hover .step-icon-circle {
    background-color: var(--primary-blue);
    color: #ffffff;
    border-color: var(--accent-gold);
}

/* Counter Metric Dashboard Panels */
.metric-card {
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}
.metric-number {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

/* FAQ Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: rgba(11, 66, 123, 0.03);
    color: var(--primary-blue);
    box-shadow: none;
}
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(11, 66, 123, 0.1);
}

/* Security Brand Banner Footer */
.hotline-banner {
    background: linear-gradient(135px, #072b52 0%, #031426 100%);
    color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(7, 43, 82, 0.15);
    background: #0b427b;
}

/* System Controller Utility */
.page-view { display: none; }
.page-view.active-view { display: block; }

.claimBtn{
    font-size: 17px;
    padding: 10px 25px;
}
.contentImg img{
    height: 340px!important;
}
.btnFoot{
    color: #0b427b;
    padding: 10px;
}
.btnFoot:hover{
    color: #fff;
    background: #c59b27;
}
.textPrimary{
    color: #0b427b;
}
.textWarning{
    color: #c59b27;
}
.btnMiddle{
    color: #fff;
    background: #0b427b;
    margin-top: 15px;
    padding: 10px;
}
.btnMiddle:hover{
    color: #fff;
    background: #c59b27;
}
.btnSuccess{
    color: #fff;
    background: #c59b27;
}
.btnSuccess:hover{
    color: #0b427b;
    background: #fff;
}









.features-section {
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    padding: 0 15px;
    margin-bottom: 30px;
}

.feature-title {
    color: #0d233a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 25px;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* --- Custom CSS Suit Shapes --- */
.suit-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Blue Color for Shapes */
.suit-bg {
    position: absolute;
    background-color: #0040a1; 
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Inner Icon Styling */
.suit-icon {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 2.5rem;
}

/* 1. Spade Shape */
.shape-spade {
    background: none;
}
.shape-spade::before {
    content: "";
    position: absolute;
    background: #0040a1;
    width: 100px;
    height: 100px;
    transform: rotate(-45deg);
    top: 15px;
    left: 20px;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}
.shape-spade::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 58px;
    width: 24px;
    height: 35px;
    background: #0040a1;
    border-radius: 20px 20px 0 0;
    transform: perspective(20px) rotateX(25deg);
}
.shape-spade .suit-icon {
    transform: translateY(-8px);
}

/* 2. Diamond Shape */
.shape-diamond {
    transform: rotate(45deg) scale(0.75);
    border-radius: 8px;
}
.shape-diamond .suit-icon {
    transform: rotate(-45deg);
}

/* 3. Heart Shape */
.shape-heart {
    background: none;
    width: 120px;
    height: 120px;
}
.shape-heart::before,
.shape-heart::after {
    content: "";
    position: absolute;
    left: 60px;
    top: 10px;
    width: 60px;
    height: 100px;
    background: #0040a1;
    border-radius: 50px 50px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}
.shape-heart::after {
    left: 0;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}
.shape-heart .suit-icon {
    transform: translateY(-5px);
}

/* 4. Club Shape */
.shape-club {
    background: none;
}
.shape-club::before {
    content: "";
    position: absolute;
    background: #0040a1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 15px;
    left: 40px;
    box-shadow: -28px 30px 0 #0040a1, 28px 30px 0 #0040a1;
}
.shape-club::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 58px;
    width: 24px;
    height: 35px;
    background: #0040a1;
    border-radius: 20px 20px 0 0;
    transform: perspective(20px) rotateX(25deg);
}
.shape-club .suit-icon {
    transform: translateY(5px);
}
.mainImgHome img{
    height: 550px!important;
}