/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc04;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #202124;
    --text-light: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color), #0d47a1);
    color: var(--text-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-brand img,
.logo img {
    display: block;
    height: 40px;       
    width: auto;        
    max-height: 50px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Button Styles */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-login {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-login:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-register {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-register:hover {
    background: #f9ab00;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-cta {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 16px 40px;
    font-size: 17px;
}

.btn-cta:hover {
    background: #2d9348;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #1557b0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.feature-icon {
    font-size: 20px;
    color: var(--accent-color);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: #5f6368;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Sports Betting Section */
.sports-betting {
    background: var(--light-bg);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sport-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.sport-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.sport-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sport-card p {
    color: #5f6368;
    font-size: 15px;
}

/* Live Betting Section */
.live-betting {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--text-light);
}

.live-betting .section-title,
.live-betting .section-description {
    color: var(--text-light);
}

.live-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.live-feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.live-feature h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.live-feature p {
    font-size: 16px;
    opacity: 0.9;
}

/* Casino Section */
.casino-section {
    background: var(--dark-bg);
    color: var(--text-light);
}

.casino-section .section-title,
.casino-section .section-description {
    color: var(--text-light);
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.casino-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.casino-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.casino-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.casino-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Bonuses Section */
.bonuses {
    background: var(--light-bg);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-card.highlight {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f5ff 100%);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.bonus-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.bonus-amount {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
}

.bonus-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: #5f6368;
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-features li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Why Us Section */
.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    color: #5f6368;
    font-size: 15px;
    line-height: 1.6;
}

/* Payment Methods Section */
.payment-methods {
    background: var(--light-bg);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-item {
    background: white;
    padding: 20px 35px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
}

.payment-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: #5f6368;
    font-size: 16px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .sports-grid,
    .casino-grid,
    .bonus-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }

    .section {
        padding: 50px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 15px;
    }
}
.card-content {
    color: #5f6368;            
    font-size: 16px;
    line-height: 1.7;
}

.card-content p {
    margin-bottom: 14px;
}
.card-content-1 {
    color: solid rgba(255, 255, 255, 0.1);            
    font-size: 16px;
    line-height: 1.7;
}

.card-content p {
    margin-bottom: 14px;
}

.card-content li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.card-content ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 14px;
}

.card-content-1 li::before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 8px;
}

.card-content-1 ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 14px;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.btn {
    text-decoration: none;
}

@media (max-width: 768px) {

    .nav-menu {
        display: none;   /* hidden initially */
    }

.hero .cta-button,
.hero .btn-cta,
.hero a.btn-cta {
  display: inline-flex;
  flex-direction: column;     /* allows 2 lines nicely */
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 100%;
  max-width: 320px;           /* adjust */
  padding: 16px 18px;

  white-space: normal;        /* allow wrapping */
  line-height: 1.2;
  border-radius: 10px;
}
}
