/* Base Variables and Reset */
:root {
    --bg-dark: #0a0b10;
    --bg-card: #151720;
    --bg-card-hover: #1e212f;
    --primary-color: #ff5e00;
    --secondary-color: #00d084;
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --border-color: rgba(255, 255, 255, 0.08);
    --glow-primary: rgba(255, 94, 0, 0.4);
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(90deg, #ff5e00, #ffb300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #111, #ff5e00, #111);
    color: #fff;
    padding: 6px 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Header */
.header {
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(to right, #fff, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    background: rgba(255, 94, 0, 0.1);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-login {
    background: transparent;
    color: #fff;
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background: rgba(255,255,255,0.05);
}

.btn-signup, .btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 15px var(--glow-primary);
}

/* Glowing Animation */
.glowing-btn {
    position: relative;
    z-index: 1;
}

.glowing-btn::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #ff5e00, #ff00c8, #ff0000);
    z-index: -1;
    background-size: 400%;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: glowing 20s linear infinite;
}

.glowing-btn:hover::before {
    opacity: 1;
}

.glowing-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    z-index: -1;
    border-radius: 8px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Sections */
.main-content {
    padding: 60px 20px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover, .category-card.active-cat {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.15);
}

.cat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.category-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* What Is Reddy Anna Book ID Section */
.info-section {
    margin-bottom: 80px;
    background-color: var(--bg-dark);
}

.info-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.info-text-content {
    flex: 1;
    min-width: 300px;
}

.gold-heading {
    font-size: 36px;
    margin-bottom: 25px;
    color: #fcb900;
}

.gold-text {
    color: #fcb900;
}

.info-text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 25px;
    line-height: 1.8;
}

.info-action {
    margin-top: 30px;
}

.whatsapp-glow-btn {
    background: #000;
    color: #fff;
    border: 1px solid #1f222a;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
}

.whatsapp-glow-btn:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.9);
    transform: translateY(-2px);
}

.info-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.info-image-border {
    max-width: 100%;
    border-radius: 16px;
    border: 2px solid #fcb900;
}

/* Features Grid Section */
.features-grid-section {
    margin-bottom: 80px;
    padding: 20px 0;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.features-subtitle {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 50px;
}

.feature-card {
    background: #0d0d0d;
    border: 1px solid #fcb900;
    border-radius: 16px;
    padding: 30px 20px;
    width: calc(33.333% - 14px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 0 10px rgba(252, 185, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(252, 185, 0, 0.3);
}

.card-icon {
    font-size: 36px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.feature-card p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.features-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.features-footer p {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-action {
    display: inline-block;
    padding: 2px;
    border-radius: 14px;
    background: linear-gradient(90deg, #00d084, #00b3ff, #00d084);
    background-size: 200% 200%;
    animation: neonBorder 3s linear infinite;
}

@keyframes neonBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.neon-border-btn {
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.neon-border-btn:hover {
    background: #111;
}

@media (max-width: 900px) {
    .feature-card { width: calc(50% - 10px); }
}

@media (max-width: 600px) {
    .feature-card { width: 100%; }
}

/* Premium Casino Banner */
.casino-card-premium {
    background: linear-gradient(135deg, rgba(255,94,0,0.1) 0%, rgba(13,15,22,1) 100%);
    border: 1px solid rgba(255, 94, 0, 0.2);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.casino-info {
    max-width: 500px;
    z-index: 2;
}

.casino-info h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.casino-info p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 18px;
}

.casino-graphic {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
}

.casino-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 94, 0, 0.4));
}

.floating-chip {
    width: 80px; height: 80px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="%23ff5e00" stroke-width="10" stroke-dasharray="20 10"/></svg>') no-result;
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.chip-1 { top: 20%; left: 20%; animation-delay: 0s; }
.chip-2 { bottom: 20%; right: 20%; animation-delay: 2s; width: 60px; height: 60px; }
.chip-3 { top: 40%; right: 10%; animation-delay: 4s; width: 40px; height: 40px; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Footer */
.footer {
    background: #06070a;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.brand-col p {
    color: var(--text-muted);
    margin: 20px 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 30px; height: 2px;
    background: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .casino-card-premium { flex-direction: column; text-align: center; padding: 30px; }
    .casino-graphic { position: static; transform: none; margin-top: 30px; height: 150px; }
}
@media (max-width: 600px) {
    .hero-cta { flex-direction: column; }
    .auth-buttons .btn-signup { display: none; }
}

/* Internal Pages Styling */
.page-padding {
    padding-top: 120px; /* Accounts for fixed header */
    min-height: 70vh;
}

.page-header {
    margin-bottom: 40px;
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Odds Table */
.odds-table-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow-x: auto;
    margin-bottom: 50px;
}

.odds-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.odds-table th {
    background: rgba(0,0,0,0.4);
    padding: 15px 20px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.odds-table td {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    vertical-align: middle;
}

.match-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.match-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.live-badge {
    background: #ff3333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.odds-btn {
    background: #11141c;
    border: 1px solid #2a2e3d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    width: 80px;
    text-align: center;
}

.odds-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.odds-up {
    color: #00ff88;
}

.odds-down {
    color: #ff3333;
}

/* Casino Grid */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.casino-game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

.casino-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.game-img {
    height: 180px;
    background-color: #1a1e29;
    background-size: cover;
    background-position: center;
    position: relative;
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.game-info .btn {
    width: 100%;
}

.roulette-bg { background-image: radial-gradient(circle, #ff5e00 0%, #1a1e29 70%); }
.blackjack-bg { background-image: radial-gradient(circle, #00d084 0%, #1a1e29 70%); }
.baccarat-bg { background-image: radial-gradient(circle, #4a90e2 0%, #1a1e29 70%); }
.poker-bg { background-image: radial-gradient(circle, #fcb900 0%, #1a1e29 70%); }


/* Category SEO Content */
.category-seo {
    background: linear-gradient(145deg, #11141c, #0a0c10);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
}

.category-seo h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.category-seo p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 16px;
}

.category-seo strong {
    color: #fff;
}

/* FAQ Accordion */
.faq-section {
    margin-bottom: 80px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #0d0f14;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255, 94, 0, 0.05);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background: #0a0c10;
}

.faq-answer p {
    color: var(--text-muted);
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}



/* Steps Section */
.steps-section {
    margin-bottom: 80px;
    padding: 20px 0;
}

.steps-header {
    text-align: center;
    margin-bottom: 50px;
}

.steps-header p {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 10px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background: linear-gradient(145deg, #0e1017, #13161f);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--bg-dark);
}

.step-icon {
    font-size: 48px;
    color: #fcb900;
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}


/* Blogs Section */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.blog-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
    text-decoration: none;
}

.blog-read-more:hover {
    color: var(--primary-color);
}

/* Full Blog Article Page Styles */
.blog-articles-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
}

.blog-article h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.article-meta i {
    margin-right: 5px;
}

.article-content h3 {
    color: #fcb900;
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-content p {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.article-content ul li {
    background: rgba(255, 94, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    color: #d1d5db;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
}

.article-content ul li strong {
    color: #fcb900;
    display: inline-block;
    margin-bottom: 5px;
}

/* Promo & Live Section */
.promo-live-section {
    margin-top: 10px;
    margin-bottom: 40px;
}

.promo-grid {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 5px;
}

.promo-card {
    flex: 1;
    overflow: hidden;
    display: block;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-card:hover {
    border-color: #fcb900;
    box-shadow: 0 0 25px rgba(252, 185, 0, 0.6);
    transform: translateY(-8px);
    z-index: 5;
}

.promo-card:hover img {
    transform: scale(1.1);
}

.contact-banner {
    text-align: center;
    background: #000;
    padding: 5px;
    margin-bottom: 10px;
}

.contact-banner p {
    color: #fcb900;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 0;
}

.whatsapp-icon-link {
    background: #25d366;
    color: #fff;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Home Odds Table */
.home-live-matches {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.odds-tabs {
    display: flex;
    background: #fcb900;
    padding: 10px 15px;
    gap: 10px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 4px 15px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
}

.tab-btn.active-tab {
    border-color: #000;
}

.odds-header-row {
    display: flex;
    background: #333;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.odds-match-row {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #ccc;
    padding: 5px;
    align-items: center;
}

.odds-col-match { flex: 3; text-align: left; padding-left: 10px; display: flex; flex-direction: column; gap: 3px; }
.odds-col-1, .odds-col-x, .odds-col-2 { flex: 1; display: flex; justify-content: center; gap: 2px; }

.odds-header-row .odds-col-1, .odds-header-row .odds-col-x, .odds-header-row .odds-col-2 {
    justify-content: center;
}

.match-time { font-size: 10px; color: #666; }
.odds-col-match strong { font-size: 12px; color: #000; }
.match-status { font-size: 10px; color: #008000; display: flex; align-items: center; gap: 5px; }
.live-dot { width: 6px; height: 6px; background: #008000; border-radius: 50%; }

.back-box, .lay-box {
    width: 45px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #000;
}

.back-box { background: #b5e4ff; }
.lay-box { background: #ffb5b5; }

@media (max-width: 768px) {
    .promo-grid { flex-wrap: wrap; }
    .promo-card { min-width: 48%; }
    .odds-col-x { display: none; }
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.security-card {
    background: #3a3d42;
    border: 1px solid #fcb900;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(252, 185, 0, 0.2);
}

.sec-icon {
    font-size: 30px;
    flex-shrink: 0;
    margin-top: 5px;
}

.sec-content h4 {
    color: #fcb900;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.sec-content p {
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

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

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

/* Glowing Header Get ID Button */
.get-id-header-btn {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 35%, #ffa333 45%, #ff9500 60%, #ff6b00 100%);
    color: #000;
    font-size: 14px;
    padding: 10px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    border: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.get-id-header-btn strong {
    font-weight: 900;
    color: #fff;
}

.get-id-header-btn span {
    font-weight: 700;
    color: #fff;
}

.get-id-header-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.8);
    background: linear-gradient(135deg, #ff8c00 0%, #ffa333 40%, #ff9500 55%, #ff6b00 100%);
}

@media (max-width: 768px) {
    .get-id-header-btn {
        display: none; /* Hide on very small screens to make room for menu, or shrink it */
    }
}
