/* ================================
   RESET & BASE STYLES
   ================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff88;
    --secondary-color: #ff0066;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #16213e;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --accent-gold: #ffd700;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================
   HEADER
   ================================ */
.header {
    background: var(--darker-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: cover;
}

.logo i {
    font-size: 32px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.mobile-menu-toggle.active i::before {
    content: "\f00d";
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    min-height: 44px;
    touch-action: manipulation;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: slideShow 18s infinite;
    transition: opacity 1s ease-in-out, transform 18s ease-in-out;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    5% {
        opacity: 1;
    }
    28% {
        opacity: 1;
        transform: scale(1);
    }
    33% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(22, 33, 62, 0.75) 50%, rgba(26, 26, 46, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 24px;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

.hero-features {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1.6s ease;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.hero-feature i {
    color: var(--primary-color);
    font-size: 20px;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 136, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ================================
   TRUST SECTION
   ================================ */
.trust-section {
    background: var(--darker-bg);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-badge i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-badge h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-badge p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ================================
   SECTIONS
   ================================ */
.why-choose,
.sports-section,
.betting-ids,
.payment-section,
.how-it-works,
.transaction-section,
.offers-section,
.demo-section,
.responsible-section,
.quick-links {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-bottom: 50px;
}

/* ================================
   FEATURES GRID
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ================================
   SPORTS SECTION
   ================================ */
.sports-section {
    background: var(--darker-bg);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.sport-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.sport-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

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

.sport-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.sport-card:hover .sport-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.2) 100%);
}

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

.sport-overlay h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.sport-overlay p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.sport-btn {
    background: var(--gradient-green);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.sport-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 136, 0.5);
    background: var(--primary-color);
}

.all-sports {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.all-sports:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.all-sports img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.all-sports:hover img {
    transform: scale(1.02);
}

/* ================================
   BETTING IDS
   ================================ */
.betting-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.betting-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(0, 255, 136, 0.1);
}

.betting-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 255, 136, 0.3);
}

.betting-logo {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.betting-btn {
    background: var(--gradient-green);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.betting-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.more-ids {
    margin-top: 60px;
    text-align: center;
}

.more-ids h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.ids-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.ids-list span {
    background: var(--card-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.ids-list span:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.05);
}

/* ================================
   PAYMENT SECTION
   ================================ */
.payment-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.payment-logo {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(0, 255, 136, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.payment-logo:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.payment-logo img,
.payment-icon {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    min-height: 40px;
    object-fit: contain;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: transparent;
}

.payment-logo:hover img,
.payment-logo:hover .payment-icon {
    opacity: 1;
    transform: scale(1.1);
}

.payment-logo img[src=""],
.payment-logo img:not([src]) {
    display: none;
}

.payment-logo i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: none;
}

.payment-logo span {
    display: block;
    color: #333;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 600;
}

.razorpay-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
}

.razorpay-section img {
    max-width: 300px;
    margin-bottom: 15px;
}

.razorpay-section p {
    color: #333;
    font-weight: 500;
}

/* ================================
   HOW IT WORKS
   ================================ */
.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-gray);
    font-size: 14px;
}

/* ================================
   TRANSACTION SECTION
   ================================ */
.transaction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.transaction-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s;
}

.transaction-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.transaction-card > i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.transaction-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.transaction-card > p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.transaction-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.transaction-features li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.transaction-features i {
    color: var(--primary-color);
}

.transaction-btn {
    background: var(--gradient-green);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.transaction-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

/* ================================
   OFFERS SECTION
   ================================ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s;
}

.offer-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.3);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
}

.offer-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.offer-amount {
    font-size: 64px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.offer-card > p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.offer-features li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 14px;
}

.offer-btn {
    background: var(--gradient-green);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

/* ================================
   DEMO SECTION
   ================================ */
.demo-card {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.demo-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.demo-credentials {
    margin-bottom: 30px;
}

.credential {
    margin-bottom: 20px;
}

.credential label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.credential input {
    width: 100%;
    padding: 12px;
    background: var(--darker-bg);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    margin-bottom: 10px;
}

.credential button {
    background: var(--primary-color);
    color: var(--dark-bg);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.credential button:hover {
    transform: scale(1.05);
}

.demo-note {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
}

.demo-btn {
    background: var(--gradient-green);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.demo-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.4);
}

.demo-features h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.demo-features ul {
    list-style: none;
}

.demo-features li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-features i {
    color: var(--primary-color);
}

/* ================================
   RESPONSIBLE SECTION
   ================================ */
.responsible-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.responsible-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.responsible-card i {
    font-size: 48px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.responsible-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.responsible-card p {
    color: var(--text-gray);
}

.responsible-banner {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.responsible-banner img {
    width: 150px;
}

.responsible-text {
    flex: 1;
}

.responsible-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.responsible-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.responsible-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* ================================
   QUICK LINKS
   ================================ */
.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.links-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 12px;
}

.links-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(0, 255, 136, 0.2);
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 10px;
}

.footer-logo span {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-top: 5px;
}

.footer-logo p {
    color: var(--text-gray);
    margin-top: 5px;
}

.footer-logo i {
    font-size: 36px;
}

.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s;
    border: 2px solid rgba(0, 255, 136, 0.2);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

.copyright {
    color: var(--text-gray);
    font-size: 14px;
}

/* ================================
   FLOATING ELEMENTS
   ================================ */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    transition: all 0.3s;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.5);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .betting-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 42px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 17px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .betting-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .demo-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .steps-container::before {
        display: none;
    }
    
    .step {
        position: relative;
    }
    
    .step::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: var(--primary-color);
    }
    
    .step:last-child::before {
        display: none;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .why-choose,
    .sports-section,
    .betting-ids,
    .payment-section,
    .how-it-works,
    .transaction-section,
    .offers-section,
    .demo-section,
    .responsible-section,
    .quick-links {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 2px solid rgba(0, 255, 136, 0.2);
        display: none;
        z-index: 999;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    }
    
    .nav-link:last-of-type {
        border-bottom: none;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 60px 0;
        min-height: 500px;
    }
    
    .hero-slide {
        animation-duration: 15s;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trust-badge h3 {
        font-size: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
    
    .sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sport-card {
        height: 250px;
    }
    
    .sport-overlay {
        padding: 20px;
    }
    
    .sport-overlay h3 {
        font-size: 24px;
    }
    
    .sport-overlay p {
        font-size: 14px;
    }
    
    .betting-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .betting-card {
        padding: 25px 15px;
    }
    
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .payment-logo {
        padding: 25px 15px;
        min-height: 130px;
    }
    
    .transaction-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .transaction-card {
        padding: 40px 30px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .offer-card {
        padding: 35px 25px;
    }
    
    .responsible-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .responsible-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .responsible-banner img {
        width: 100px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .why-choose,
    .sports-section,
    .betting-ids,
    .payment-section,
    .how-it-works,
    .transaction-section,
    .offers-section,
    .demo-section,
    .responsible-section,
    .quick-links {
        padding: 50px 0;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .mobile-menu-toggle {
        padding: 8px 12px;
        font-size: 20px;
    }
    
    .footer-logo-img {
        height: 45px;
    }
    
    .hero {
        padding: 40px 0;
        min-height: 450px;
    }
    
    .hero-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-image img {
        border-radius: 15px;
    }
    
    .floating-card {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-badge i {
        font-size: 40px;
    }
    
    .trust-badge h3 {
        font-size: 28px;
    }
    
    .trust-badge p {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 30px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .sport-card {
        height: 200px;
    }
    
    .sport-overlay {
        padding: 15px;
    }
    
    .sport-overlay h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .sport-overlay p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .sport-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .all-sports img {
        border-radius: 10px;
    }
    
    .betting-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .betting-card {
        padding: 20px 15px;
    }
    
    .betting-logo {
        font-size: 16px;
        min-height: 35px;
    }
    
    .betting-btn {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .ids-list {
        gap: 10px;
    }
    
    .ids-list span {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .payment-logos {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-logo {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .payment-logo img {
        max-height: 50px;
    }
    
    .razorpay-section {
        padding: 30px 20px;
    }
    
    .razorpay-section img {
        max-width: 250px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-content h3 {
        font-size: 17px;
    }
    
    .step-content p {
        font-size: 12px;
    }
    
    .transaction-card {
        padding: 30px 20px;
    }
    
    .transaction-card > i {
        font-size: 50px;
    }
    
    .transaction-card h3 {
        font-size: 22px;
    }
    
    .transaction-card > p {
        font-size: 14px;
    }
    
    .transaction-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-card h3 {
        font-size: 20px;
    }
    
    .offer-amount {
        font-size: 42px;
    }
    
    .offer-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .demo-card {
        padding: 25px 15px;
        gap: 25px;
    }
    
    .demo-content h3 {
        font-size: 22px;
    }
    
    .credential {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .credential label {
        font-size: 13px;
    }
    
    .credential input {
        padding: 10px;
        font-size: 14px;
        margin-bottom: 0;
    }
    
    .credential button {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .demo-features h4 {
        font-size: 18px;
    }
    
    .demo-features li {
        font-size: 13px;
    }
    
    .responsible-card {
        padding: 30px 20px;
    }
    
    .responsible-card i {
        font-size: 40px;
    }
    
    .responsible-card h3 {
        font-size: 20px;
    }
    
    .responsible-card p {
        font-size: 14px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo span {
        font-size: 26px;
    }
    
    .footer-logo p {
        font-size: 13px;
    }
    
    .footer-contact h4 {
        font-size: 18px;
    }
    
    .footer-contact p {
        font-size: 13px;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .why-choose,
    .sports-section,
    .betting-ids,
    .payment-section,
    .how-it-works,
    .transaction-section,
    .offers-section,
    .demo-section,
    .responsible-section,
    .quick-links {
        padding: 40px 0;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 75px;
        right: 15px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ================================
   SMOOTH SCROLLING
   ================================ */
html {
    scroll-behavior: smooth;
}

/* ================================
   SELECTION STYLES
   ================================ */
::selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--dark-bg);
}

