/* Mariobet Color Palette - Modern Elektrik Tema */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099cc;
    --accent-color: #33e6ff;
    --gold-color: #ffd700;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff3366;
    --electric-blue: #e6f7ff;
    --dark-blue: #003366;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-accent: linear-gradient(135deg, #33e6ff 0%, #00d4ff 100%);
    --gradient-success: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    --gradient-warning: linear-gradient(135deg, #ffaa00 0%, #ff8800 100%);
    --gradient-electric: linear-gradient(135deg, #00d4ff 0%, #33e6ff 50%, #00d4ff 100%);
    --shadow-light: 0 2px 10px rgba(0, 212, 255, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 212, 255, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 212, 255, 0.2);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.4);
    --shadow-electric: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header-section {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-medium);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.brand-text {
    background: linear-gradient(45deg, var(--gold-color), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(10px) translateY(5px); }
    75% { transform: translateX(-5px) translateY(10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 107, 53, 0.4); }
}

.highlight {
    background: linear-gradient(45deg, var(--gold-color), #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: buttonFloat 3s ease-in-out infinite;
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: var(--white);
    box-shadow: var(--shadow-medium);
    animation: buttonGlow 2s ease-in-out infinite alternate;
}

@keyframes buttonGlow {
    0% { box-shadow: var(--shadow-medium); }
    100% { box-shadow: var(--shadow-glow); }
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-heavy);
    background: var(--gradient-accent);
    animation: none;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.trust-item i {
    color: var(--gold-color);
    font-size: 1.2rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    color: var(--text-dark);
    max-width: 250px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(5deg);
    box-shadow: var(--shadow-glow);
    animation: none;
}

.floating-card:nth-child(1) {
    top: 20px;
    right: 50px;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 200px;
    right: 20px;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 50px;
    right: 80px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.delay-1 { animation-delay: 2s; }
.delay-2 { animation-delay: 4s; }

.card-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.8rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.security-icons {
    display: flex;
    gap: 0.5rem;
    color: var(--primary-color);
}

.security-icons i {
    font-size: 1.2rem;
}

.update-indicators {
    display: flex;
    gap: 0.3rem;
}

.indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
}

.indicator-1 { 
    background: #e74c3c; 
    animation-delay: 0s;
}
.indicator-2 { 
    background: #f39c12; 
    animation-delay: 0.5s;
}
.indicator-3 { 
    background: #27ae60; 
    animation-delay: 1s;
}

/* Section Styles */
.section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--electric-blue);
    position: relative;
    overflow: hidden;
}

.features-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"><defs><pattern id="circuits" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,20 L40,20 M20,0 L20,40 M10,10 L30,30 M30,10 L10,30" stroke="rgba(0,212,255,0.1)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23circuits)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

/* Promotions Section */
.promotions-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.promotions-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"><defs><pattern id="stars" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,212,255,0.1)"/><circle cx="5" cy="25" r="0.5" fill="rgba(0,212,255,0.05)"/><circle cx="25" cy="5" r="0.5" fill="rgba(0,212,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: backgroundMove 25s ease-in-out infinite reverse;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: electricFloat 4s ease-in-out infinite;
}

@keyframes electricFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-8px) scale(1.02); }
    50% { transform: translateY(-4px) scale(1.01); }
    75% { transform: translateY(-12px) scale(1.03); }
}

.promotion-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: promotionGlow 3s ease-in-out infinite;
}

@keyframes promotionGlow {
    0%, 100% { box-shadow: var(--shadow-light); }
    50% { box-shadow: var(--shadow-glow); }
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-electric);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-electric);
    border-color: var(--accent-color);
    animation: none;
}

.promotion-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
    animation: none;
}

.promotion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.promotion-badge {
    background: var(--gradient-warning);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.bonus-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bonus-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bonus-amount {
    background: var(--gradient-gold);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
    animation: bonusPulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

@keyframes bonusPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { transform: scale(1.1); box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5); }
}

/* Security Section */
.security-section {
    padding: 5rem 0;
    background: var(--electric-blue);
    position: relative;
    overflow: hidden;
}

.security-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"><defs><pattern id="shields" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,5 L35,15 L35,35 L25,45 L15,35 L15,15 Z" fill="none" stroke="rgba(0,212,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23shields)"/></svg>');
    animation: backgroundMove 30s ease-in-out infinite;
}

/* Support Section */
.support-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.support-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"><defs><pattern id="support" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(0,212,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(0,212,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23support)"/></svg>');
    animation: backgroundMove 35s ease-in-out infinite reverse;
}

.security-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: securityPulse 4s ease-in-out infinite;
}

@keyframes securityPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
}

.support-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: supportFloat 5s ease-in-out infinite;
}

@keyframes supportFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(1deg); }
    50% { transform: translateY(-3px) rotate(0deg); }
    75% { transform: translateY(-9px) rotate(-1deg); }
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 35, 126, 0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover::before {
    left: 100%;
}

.security-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-electric);
    border-color: var(--primary-color);
    animation: none;
}

.support-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
    animation: none;
}

.feature-icon,
.security-icon,
.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    animation: iconElectric 3s ease-in-out infinite;
}

@keyframes iconElectric {
    0%, 100% { transform: scale(1) rotate(0deg); box-shadow: 0 0 20px rgba(0, 212, 255, 0.3); }
    50% { transform: scale(1.1) rotate(180deg); box-shadow: 0 0 30px rgba(0, 212, 255, 0.6); }
}

.game-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.game-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Mobile Section */
.mobile-section {
    padding: 5rem 0;
    background: var(--light-orange);
    position: relative;
    overflow: hidden;
}

.mobile-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"><defs><pattern id="waves" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M0,20 Q10,0 20,20 T40,20" stroke="rgba(255,107,53,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    animation: backgroundMove 20s ease-in-out infinite;
}

.mobile-content {
    padding-right: 2rem;
}

.mobile-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mobile-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.mobile-features i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.mobile-buttons {
    margin-top: 2rem;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-2deg); }
}

.phone-screen {
    background: var(--white);
    border-radius: 25px;
    padding: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
    overflow: hidden;
}

.app-interface {
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 15px;
    padding: 1rem;
    min-height: 400px;
}

.app-header {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.app-content {
    padding: 1rem 0;
}

.live-match {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.team {
    font-size: 0.9rem;
    font-weight: 500;
}

.score {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--gold-color);
}

.live-indicator {
    position: absolute;
    top: 5px;
    right: 10px;
    background: var(--danger-color);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.bet-options {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.bet-option {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: betOptionPulse 3s ease-in-out infinite;
}

@keyframes betOptionPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bet-option:hover {
    background: var(--gold-color);
    color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    animation: none;
}

.advantage-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.1), transparent);
    transition: left 0.5s ease;
}

.advantage-card:hover::before {
    left: 100%;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #fef5e7 100%);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.advantage-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer-section {
    background: var(--dark-orange);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-links h5 {
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(241, 196, 15, 0.5);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-link {
    color: var(--gold-color);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 126, 34, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--gold-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        animation: none;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        animation: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        margin: 0;
        animation: none;
    }
    
    .btn-primary {
        animation: none;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem auto;
        max-width: 100%;
        animation: none;
    }
    
    .floating-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .hero-image {
        height: auto;
        margin-top: 2rem;
    }
    
    .bonus-card,
    .game-card,
    .advantage-card {
        margin-bottom: 2rem;
        animation: none;
    }
    
    .bonus-card:hover,
    .game-card:hover {
        transform: translateY(-5px) scale(1.02);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mobile-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .phone-mockup {
        max-width: 250px;
        animation: none;
    }
    
    .app-interface {
        min-height: 300px;
    }
    
    .match-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bet-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bet-option {
        animation: none;
    }
    
    .bet-option:hover {
        transform: scale(1.05);
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .feature-card,
    .game-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-card {
        padding: 1.5rem;
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--gold-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(241, 196, 15, 0.3);
}

/* Print Styles */
@media print {
    .header-section,
    .footer-section,
    .loading-overlay {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
}
