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

html {
    overflow-x: hidden; /* Prevent horizontal scrolling on html level */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e6e6e6;
    background: #0b0b0f;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

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

.hero-container {
    width: 100%;
    height: 300px;
    position: relative;
}

/* Header Styles */
.header {
    background: rgba(15, 15, 17, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

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

.logo h1 {
    color: #d4af37;
    letter-spacing: 0.5px;
    font-size: 2rem;
    font-weight: 700;
}

.contact-info .phone {
    color: #0b0b0f;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-info .phone:hover {
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.contact-info .phone i {
    color: #0b0b0f;
}

.contact-info .phone:hover i {
    color: #0b0b0f;
}

/* Messages Styles */
.messages-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.message {
    background: rgba(15, 15, 17, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(78, 205, 196, 0.2);
    animation: slideInRight 0.3s ease-out;
}

.message-success {
    border-left: 4px solid #4CAF50;
}

.message-error {
    border-left: 4px solid #f44336;
}

.message-info {
    border-left: 4px solid #2196F3;
}

.message-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.75rem;
}

.message-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.message-success .message-icon {
    color: #4CAF50;
}

.message-error .message-icon {
    color: #f44336;
}

.message-info .message-icon {
    color: #2196F3;
}

.message-text {
    flex: 1;
    color: #e6e6e6;
    font-weight: 500;
}

.message-close {
    background: none;
    border: none;
    color: #a0a0a0;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.message-close:hover {
    background: rgba(160, 160, 160, 0.1);
    color: #e6e6e6;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile responsive messages */
@media (max-width: 768px) {
    .messages-container {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .message {
        margin-bottom: 0.5rem;
    }
    
    .message-content {
        padding: 0.75rem;
    }
}

/* Form Error Messages */
.error-message {
    color: #f44336;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Form Field Styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #e6e6e6;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4ECDC4;
    box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #a0a0a0;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #d4af37;
    color: #0b0b0f;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.45);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.6);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.btn-demo {
    background: #111317;
    color: #d4af37;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-glow-demo 2s ease-in-out infinite;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    animation: sparkle 3s infinite;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse-glow-demo-hover 1s ease-in-out infinite;
}

.btn-demo:hover::before {
    animation: sparkle 1s infinite;
}

@keyframes pulse-glow-demo {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 2px 15px rgba(212, 175, 55, 0.4);
    }
}

@keyframes pulse-glow-demo-hover {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }
}

.btn-action {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #0b0b0f;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-action::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.5) 50%,
        transparent 70%
    );
    animation: sparkle 3s infinite;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #ffd700, #d4af37);
    animation: pulse-glow-hover 1s ease-in-out infinite;
}

.btn-action:hover::before {
    animation: sparkle 1s infinite;
}

@keyframes sparkle {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
    }
    50% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    }
}

@keyframes pulse-glow-hover {
    0%, 100% {
        box-shadow: 0 10px 26px rgba(212, 175, 55, 0.45);
    }
    50% {
        box-shadow: 0 10px 35px rgba(212, 175, 55, 0.7);
    }
}

/* Hero Section */
.hero {
    background: transparent;
    background-size: cover;
    background-position: center;
    padding: 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 20px;
    height: 300px;
    width: 100%;
}


/* .hero::before removed to eliminate empty space */

.hero-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    min-height: 300px;
    min-width: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    will-change: opacity;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: block;
    min-height: 300px;
    min-width: 100%;
}

.hero-image.active {
    opacity: 1;
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero {
        height: 280px !important;
        margin-top: 50px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-container {
        height: 280px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-content {
        height: 280px !important;
        min-height: 280px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-images-container {
        height: 280px !important;
        min-height: 280px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-image {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        object-fit: contain;
        object-position: center;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Reduce scrolling message margins and padding on mobile */
    .marquee-section {
        margin: 5px 0 !important;
        padding: 10px 0 !important;
    }
    
    /* Remove any extra spacing from containers */
    .container {
        margin: 0 !important;
        padding: 0 15px !important;
    }
    
    /* Ensure hero section has no bottom margin */
    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Remove ::before pseudo-element on mobile */
    .hero::before {
        display: none !important;
    }
    
    /* Remove min-height on hero-content to eliminate empty space */
    .hero-content {
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Make container and hero-container not add extra space */
    .hero .container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
}

@media (max-width: 480px) {
    .hero {
        height: 220px !important;
        margin-top: 40px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-container {
        height: 220px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-content {
        height: 220px !important;
        min-height: 220px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-images-container {
        height: 220px !important;
        min-height: 220px !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .hero-image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        object-fit: contain;
        object-position: center;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Reduce scrolling message margins and padding on small mobile */
    .marquee-section {
        margin: 2px 0 !important;
        padding: 5px 0 !important;
    }
    
    /* Remove any extra spacing from containers on small mobile */
    .container {
        margin: 0 !important;
        padding: 0 10px !important;
    }
    
    /* Ensure hero section has no bottom margin on small mobile */
    .hero {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Remove ::before pseudo-element on small mobile */
    .hero::before {
        display: none !important;
    }
    
    /* Remove min-height on hero-content to eliminate empty space */
    .hero-content {
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Make container and hero-container not add extra space */
    .hero .container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
}

/* Mobile container adjustments to prevent horizontal scrolling */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-container {
        padding: 0;
        margin: 0;
    }
    
    /* Ensure all elements don't exceed viewport width */
    * {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .hero-container {
        padding: 0;
        margin: 0;
    }
    
    /* Ensure all elements don't exceed viewport width */
    * {
        max-width: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 1px 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 3;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 2.5rem;
    color: #e9e2c9;
}

/* Platforms Section */
.platforms {
    padding: 40px 0 80px;
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .platforms {
        padding: 44px 0 80px;
    }
    
    .platform-actions {
        flex-direction: row !important;
        gap: 0.5rem !important;
        margin: 1rem 0 !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .platform-actions .btn-action {
        flex: 1 !important;
        padding: 0.5rem 0.5rem !important;
        font-size: 0.7rem !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
        max-width: 50% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        line-height: 1.2 !important;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        display: grid !important;
    }
    
    .feature-card {
        padding: 0.75rem !important;
        margin: 0 !important;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .feature-card h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.2 !important;
    }
    
    .feature-card p {
        font-size: 0.7rem !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    
    /* Decrease padding for sections in mobile view */
    .how-to {
        padding: 40px 0 !important;
    }
    
    .why-choose {
        padding: 40px 0 !important;
    }
    
    .exchange-percentages {
        padding: 40px 0 !important;
    }
    
    .contact-form-section {
        padding: 40px 0 !important;
    }
}

.platform-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

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

.platform-card {
    background: #0f0f14;
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: #e6e6e6;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 175, 55, 0.5);
}

.platform-logo {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    border-radius: 12px;
    overflow: hidden;
}

.platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.platform-card h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.platform-card p {
    display: none;
}

/* How to Section */
.how-to {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #fff;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1rem 0;
}

.step-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: #0f0f14;
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    color: #e6e6e6;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.45);
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Sports Betting Section */
.sports-betting-section {
    padding: 80px 0;
    background: #0b0b0f;
}

.betting-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Left Panel - Betting Stats */
.betting-stats-panel {
    background: linear-gradient(180deg, #1a4d1a 0%, #2d7a2d 50%, #4a9a4a 100%);
    padding: 3rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.betting-header {
    text-align: left;
}

.betting-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.betting-subtitle {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.betting-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-amount {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-tag {
    background: #ff6b35;
    color: #fff;
    animation: pulse 2s infinite;
}

.line-tag {
    background: #4a9a4a;
    color: #fff;
}

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

/* Right Panel - Sports Grid */
.sports-grid-panel {
    background: #1a1a2e;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.sport-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.sport-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Sport card as link */
.sport-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sport-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.sport-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

/* Exchange Percentages Section */
.exchange-percentages {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.exchange-types {
    max-width: 1200px;
    margin: 0 auto;
}

.exchange-type-header {
    text-align: center;
    margin-bottom: 3rem;
}

.exchange-type-header h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.type-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.type-filter {
    background: rgba(255, 255, 255, 0.1);
    color: #b8b8b8;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.type-filter:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border-color: rgba(212, 175, 55, 0.3);
}

.type-filter.active {
    background: #d4af37;
    color: #0b0b0f;
    border-color: #d4af37;
}

.exchanges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.exchange-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.exchange-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.exchange-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.exchange-name {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.exchange-percentage {
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #0b0b0f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.exchange-url {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    word-break: break-all;
}

.exchange-type {
    color: #e6e6e6;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #b8b8b8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #0f0f14;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-item.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item.clickable:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-item.clickable:nth-child(2):hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    width: 30px;
    text-align: center;
}

.contact-item h4 {
    color: #e9e2c9;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: #0f0f14;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #0b0b0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e6e6e6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0b0b0f;
    color: #e6e6e6;
}

/* Footer */
.footer {
    background: #0d0d12;
    color: #d9d9d9;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
}

@media (max-width: 768px) {
    /* Hide Quick Navigation and Get In Touch sections on mobile */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: none;
    }
}

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

.footer-section h3,
.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.footer-section ul li a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .contact-info {
        font-size: 0.8rem;
    }
    
    .contact-info .phone {
        background: linear-gradient(135deg, #d4af37, #ffd700);
        color: #0b0b0f;
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.7rem !important;
        box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
    }
    
    .contact-info .phone i {
        color: #0b0b0f;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .platform-logo {
        height: 80px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .step-card {
        padding: 1rem !important;
        border-radius: 12px !important;
        order: var(--step-order) !important;
    }
    
    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
        top: -10px !important;
    }
    
    .step-card h3 {
        font-size: 1rem !important;
        margin: 0.5rem 0 !important;
    }
    
    .step-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .exchanges-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .exchange-card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    
    .exchange-card-header {
        margin-bottom: 0.75rem !important;
    }
    
    .exchange-name {
        font-size: 0.95rem !important;
    }
    
    .exchange-percentage {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .exchange-url {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    .exchange-type {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    .exchange-card p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
    }
    
    .exchange-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .master-id-features {
        grid-template-columns: 1fr;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 50vh;
        min-height: 220px;
        margin-top: 70px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .platform-card,
    .step-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .platform-card h3 {
        font-size: 0.9rem !important;
    }
    
    .platform-card .btn,
    .platform-card .btn-demo {
        padding: 0.5rem 1rem !important;
        font-size: 0.85rem !important;
        width: 100% !important;
    }
    
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container .contact-info {
        display: none !important;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .betting-interface {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .betting-stats-panel {
        padding: 2rem 1.5rem;
    }
    
    .sports-grid-panel {
        padding: 2rem 1.5rem;
    }
    
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .sport-card {
        min-height: 100px;
        padding: 1rem 0.5rem;
    }
    
    .sport-icon {
        font-size: 2rem;
    }
    
    .sport-name {
        font-size: 0.8rem;
    }
}

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

.platform-card,
.step-card,
.feature-card,
.exchange-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c39c2e;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #0b0b0f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    z-index: 1100;
    animation: float-whatsapp 3s ease-in-out infinite, whatsapp-pulse 2s ease-in-out infinite;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-ripple 2s ease-out infinite;
    z-index: -1;
    pointer-events: none;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
    background: #22c35e;
    animation: float-whatsapp-hover 1.5s ease-in-out infinite;
}

@keyframes float-whatsapp {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    }
}

@keyframes float-whatsapp-hover {
    0%, 100% {
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 14px 30px rgba(34, 195, 94, 0.5);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 18px 40px rgba(34, 195, 94, 0.7);
    }
}

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

@keyframes whatsapp-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* Desktop view - reduce banner container width */
@media (min-width: 769px) {
    .hero-container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-images-container {
        max-width: 95%;
        margin: 0 auto;
    }

    /* Ensure full image is visible on desktop by increasing hero height */
    .hero {
        height: 450px;
    }

    .hero-container,
    .hero-content,
    .hero-images-container {
        height: 450px;
        min-height: 450px;
    }

    .hero-image {
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #0b0b0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 12px 16px;
    height: 120px;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
    flex-direction: column;
}

.preloader-title {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
    font-weight: 800;
    letter-spacing: 1px;
    /* Gold gradient text */
    background: linear-gradient(180deg, #ffef9a 0%, #ffd54a 40%, #d4af37 75%, #b68c28 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 0 rgba(0,0,0,0.35), 0 6px 18px rgba(212, 175, 55, 0.35);
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-top: 14px;
    white-space: nowrap;
}

.spinner-ring {
    width: 56px;
    height: 56px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: preloader-spin 0.9s linear infinite;
    position: static;
    margin-bottom: 10px;
}

@keyframes preloader-spin {
    to { transform: rotate(360deg); }
}
