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

/* Football Betting Section */
.football-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.football-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></svg>') repeat; /* Changed from orange to white */
    background-size: 50px 50px;
    pointer-events: none;
}

.football-matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.match-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Changed from orange to white */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.match-card:hover::before {
    left: 100%;
}

.match-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626; /* Changed from orange to red */
    box-shadow: 0 15px 35px rgba(220, 38, 38, 0.2); /* Changed from orange to red */
}

.match-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.match-time {
    color: #ffffff; /* Changed from orange to white */
    font-weight: 600;
    font-size: 0.9rem;
}

.match-league {
    color: #cccccc;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.4); /* Changed from orange background to black */
    padding: 4px 12px;
    border-radius: 20px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px;
}

.team-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

.match-vs {
    color: #ffffff; /* Changed from orange to white */
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 15px;
    background: rgba(0, 0, 0, 0.6); /* Changed from orange background to black */
    padding: 8px 12px;
    border-radius: 50%;
    min-width: 40px;
    text-align: center;
}

.match-odds {
    display: flex;
    gap: 10px;
}

.odd-option {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.odd-option:hover {
    background: rgba(220, 38, 38, 0.2); /* Changed from orange to red */
    border-color: #dc2626; /* Changed from orange to red */
    transform: scale(1.05);
}

.odd-label {
    display: block;
    color: #cccccc;
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.odd-value {
    display: block;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile Responsive for Football Section */
@media (max-width: 768px) {
    .football-section {
        padding: 30px 0;
    }
    
    .football-matches {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .match-card {
        padding: 20px;
    }
    
    .match-teams {
        margin-bottom: 20px;
    }
    
    .team-logo {
        width: 50px;
        height: 50px;
    }
    
    .team-name {
        font-size: 0.8rem;
    }
    
    .match-vs {
        font-size: 1rem;
        margin: 0 10px;
        padding: 6px 10px;
    }
    
    .odd-option {
        padding: 10px 6px;
    }
    
    .odd-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .match-header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .team-name {
        font-size: 0.75rem;
    }
    
    .match-vs {
        font-size: 0.9rem;
        padding: 5px 8px;
    }
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65; /* Slightly increased from 1.6 for better readability */
    color: #333;
    background-color: #0a0a0a;
    overflow-x: hidden;
    letter-spacing: 0.01em; /* Added subtle letter spacing */
}

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

/* Brand Colors */
:root {
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --secondary-gold: #dc2626; /* Changed from gold to red */
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --dark-border: #333;
    --text-light: #f5f5f5;
    --text-muted: #9ca3af;
    --success: #10b981;
    --warning: #dc2626; /* Changed from gold to red */
    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --gradient-gold: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%); /* Changed from gold to red gradient */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600; /* Reduced from 700 to 600 for slightly lighter headings */
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: -0.02em; /* Added negative letter spacing for headings */
}

h1 { font-size: 2.6rem; font-weight: 700; } /* Slightly larger, kept bold for main title */
h2 { font-size: 2.1rem; } /* Slightly increased */
h3 { font-size: 1.6rem; } /* Slightly increased */
h4 { font-size: 1.3rem; } /* Slightly increased */

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7; /* Increased line height for paragraphs */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500; /* Reduced from 600 to 500 for slightly lighter button text */
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    gap: 8px;
    letter-spacing: 0.025em; /* Added letter spacing to buttons */
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.75rem 0; /* Reduced from 1rem */
}

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

.logo-img {
    height: 45px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

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

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-border);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-red);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.mobile-btn-outline:hover {
    background: var(--primary-red);
    color: white;
}

.mobile-btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.mobile-menu-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.mobile-menu-footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    padding-bottom: 2rem;
}

.hero-banner-link {
    display: block;
    transition: transform 0.3s ease;
}

.hero-banner-link:hover {
    transform: scale(1.02);
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Casino Section */
.casino-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.casino-content {
    margin-top: 2rem;
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.slot-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-border);
    cursor: pointer;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}

.slot-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slot-card:hover .slot-image {
    transform: scale(1.05);
}

.slot-info {
    padding: 1rem;
}

.slot-info h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.slot-provider {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Game Providers */
.providers-section {
    margin-top: 3rem;
    text-align: center;
}

.providers-section h3 {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.providers-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.provider-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Promotions Section */
.promotions-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

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

.promo-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.promo-card.featured {
    border-color: var(--secondary-gold);
    background: linear-gradient(135deg, var(--dark-card) 0%, rgba(220, 38, 38, 0.1) 100%); /* Changed from gold to red */
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.promo-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* About 1RedBet Section */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.about-content {
    margin-top: 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: var(--dark-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-gold);
}

.about-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--dark-bg);
}

.about-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.about-cta {
    text-align: center;
    background: var(--dark-card);
    border-radius: 12px;
    padding: 3rem 2rem;
    border: 1px solid var(--dark-border);
}

.about-cta h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-cta p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile App Section */
.mobile-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.mobile-content {
    text-align: center;
}

.mobile-text h2 {
    margin-bottom: 1rem;
}

.mobile-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.mobile-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mobile-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.mobile-feature i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-card);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
}

.download-btn:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 1.5rem;
}

/* Payment Methods */
.payments-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.payments-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-logo {
    height: 50px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.payment-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Simplified Footer */
.footer {
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    height: 35px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-red { color: var(--primary-red); }
.text-gold { color: var(--secondary-gold); }
.text-light { color: var(--text-light); }
.text-muted { color: var(--text-muted); }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Header Layout */
    .header {
        padding: 0.6rem 0; /* Reduced from default for mobile */
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .desktop-nav,
    .desktop-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slots-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .slot-image {
        aspect-ratio: 1 / 1;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-features {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .slot-image {
        aspect-ratio: 1 / 1;
    }
    
    .providers-grid {
        gap: 1rem;
    }
    
    .provider-logo {
        height: 40px;
    }
    
    .payment-logo {
        height: 35px;
    }
    
    .mobile-menu {
        padding: 1.5rem;
    }
    
    .mobile-nav-link {
        padding: 1.25rem 0.75rem;
        font-size: 1rem;
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slider-container {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 5176 / 624; /* Desktop banner aspect ratio */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #000;
}

/* Slide Link Styles */
.slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.slide-link:hover {
    text-decoration: none;
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.promo-title {
    color: #ffffff;
    font-size: 2.0rem; /* Reduced from 2.3rem to better fit slider */
    font-weight: 600; /* Kept reduced weight for consistency */
    margin: 0 0 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.05; /* Slightly reduced from 1.1 for tighter spacing */
    background: none;
    padding: 0;
    letter-spacing: -0.01em; /* Kept subtle negative letter spacing */
}

.promo-subtitle {
    color: #ff6b35;
    font-size: 1.0rem; /* Reduced from 1.15rem to better fit slider */
    font-weight: 500; /* Kept reduced weight for lighter feel */
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.1; /* Slightly reduced from 1.2 */
    letter-spacing: 0.01em; /* Kept subtle letter spacing */
}

.slide-cta-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #dc143c, #b71c1c);
    color: #ffffff;
    border: none;
    padding: 10px 20px; /* Reduced from 12px 24px for better proportion */
    font-size: 0.9rem; /* Reduced from 1rem to fit better */
    font-weight: 600; /* Kept reduced weight for consistency */
    border-radius: 25px;
    cursor: pointer;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 0.75px for better fit */
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    text-shadow: none;
}

.slide-cta-btn:hover {
    background: linear-gradient(135deg, #b71c1c, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.slide-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
}

.promo-text {
    display: none;
}

/* Hover Effects */
.slide-link:hover .promo-title {
    color: #ff6b35;
    transition: color 0.3s ease;
    transform: scale(1.05);
}

.slide-link:hover .promo-subtitle {
    color: #ffffff;
    transition: color 0.3s ease;
    transform: scale(1.05);
}

/* Slider Navigation Dots */
.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot:hover,
.nav-dot.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Mobile Responsive Styles for Navigation */
@media (max-width: 768px) {
    .slider-container {
        aspect-ratio: 2880 / 624; /* Mobile banner aspect ratio */
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    
    .slider-nav {
        bottom: 15px;
        gap: 8px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Hero section tablet styles */
    .slide-content {
        left: 40px;
        top: 45%;
    }
    
    .promo-title {
        font-size: 1.6rem; /* Reduced for tablet */
        line-height: 1.0;
        margin: 0 0 3px 0;
    }
    
    .promo-subtitle {
        font-size: 0.85rem; /* Reduced for tablet */
        line-height: 1.0;
        margin: 0 0 5px 0;
    }
    
    .slide-cta-btn {
        padding: 8px 16px; /* Smaller padding for tablet */
        font-size: 0.8rem; /* Smaller font for tablet */
        margin: 8px 0;
        letter-spacing: 0.3px;
    }
    
    /* About section mobile styles */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .about-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        aspect-ratio: 2880 / 624; /* Keep mobile banner aspect ratio */
    }
    
    .hero-slider {
        border-radius: 8px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .slider-nav {
        bottom: 10px;
        gap: 6px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Hero section mobile styles */
    .slide-content {
        left: 60px; /* Moved from 20px to 60px to avoid slider button overlap */
        top: 50%; /* Moved down from 40% to 50% to center content better */
        transform: translateY(-50%); /* Add transform to properly center vertically */
    }
    
    .promo-title {
        font-size: 1.3rem; /* Further reduced for mobile */
        line-height: 0.95;
        margin: 0 0 2px 0;
    }
    
    .promo-subtitle {
        display: none; /* Hide terms and conditions text on mobile */
    }
    
    .slide-cta-btn {
        padding: 6px 12px; /* Even smaller padding for mobile */
        font-size: 0.7rem; /* Smaller font for mobile */
        margin: 6px 0;
        letter-spacing: 0.2px;
        border-radius: 20px; /* Slightly smaller border radius */
    }
}

/* Hero Title Styles - Hidden for SEO */
.hero-title {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}