/* ============================================
   BETPRIZ AZERBAIJAN - MAIN STYLESHEET
   Domain: betpriz.org
   ============================================ */

:root {
    --primary: #FF6B00;
    --primary-light: #FF8C3A;
    --primary-dark: #E55A00;
    --secondary: #1A56DB;
    --secondary-light: #3B82F6;
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-card: #1E293B;
    --bg-card-hover: #334155;
    --text-white: #FFFFFF;
    --text-light: #E2E8F0;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    --accent-green: #22C55E;
    --accent-red: #EF4444;
    --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8C3A 100%);
    --gradient-secondary: linear-gradient(135deg, #1A56DB 0%, #3B82F6 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 30px rgba(255,107,0,0.3);
    --container-width: 1200px;
    --section-padding: 80px;
    --card-radius: 16px;
    --transition: 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 20px; }

/* Background */
.bg-pattern {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FF6B00' fill-opacity='1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.98), rgba(15,23,42,0.95));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,107,0,0.1);
    transition: all var(--transition);
}

.header.scrolled { padding: 8px 0; background: rgba(15,23,42,0.98); box-shadow: var(--shadow-lg); }

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

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 42px; width: auto; }
.logo-text {
    font-family: 'Montserrat', sans-serif; font-size: 1.6rem; font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; letter-spacing: 1px;
}

.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
    color: var(--text-light); font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.5px; padding: 8px 0; position: relative;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-buttons { display: flex; gap: 12px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; }
.menu-toggle span { width: 25px; height: 3px; background: var(--primary); border-radius: 3px; transition: all var(--transition); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border: none; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer;
    transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--gradient-primary); color: var(--text-white); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); color: var(--text-white); }
.btn-secondary { background: var(--gradient-secondary); color: var(--text-white); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(26,86,219,0.4); color: var(--text-white); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--text-white); }
.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-small { padding: 10px 20px; font-size: 0.8rem; }
.btn-green { background: var(--accent-green); color: var(--text-white); }
.btn-green:hover { background: #16A34A; box-shadow: 0 0 20px rgba(34,197,94,0.4); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    padding: 120px 0 80px; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(ellipse at 20% 30%, rgba(255,107,0,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 70%, rgba(26,86,219,0.15) 0%, transparent 50%),
                var(--bg-darker);
    z-index: -1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px;
    background: rgba(255,107,0,0.15); border: 1px solid rgba(255,107,0,0.3);
    border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: var(--primary); margin-bottom: 25px; animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,107,0,0); }
}
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero-text { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 35px; max-width: 650px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; justify-content: center; gap: 50px; padding-top: 40px; border-top: 1px solid rgba(255,107,0,0.2); flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { display: block; font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 1px; }

/* Floating Icons */
.floating-icons { position: absolute; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.float-icon { position: absolute; font-size: 3rem; opacity: 0.1; animation: floatAnim 6s ease-in-out infinite; }
.float-icon:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { bottom: 25%; left: 8%; animation-delay: 3s; }
.float-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 4.5s; }
@keyframes floatAnim {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--section-padding) 0; position: relative; }
.section-dark { background: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; color: var(--primary); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; }
.section-title { margin-bottom: 15px; }
.section-desc { color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* ============================================
   BONUS CARD
   ============================================ */
.bonus-showcase { padding: 60px 0; }
.bonus-card {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,86,219,0.1) 100%);
    border: 1px solid rgba(255,107,0,0.3); border-radius: 24px; padding: 50px;
    text-align: center; position: relative; overflow: hidden;
}
.bonus-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,107,0,0.1), transparent 30%);
    animation: rotateGlow 12s linear infinite;
}
@keyframes rotateGlow { to { transform: rotate(360deg); } }
.bonus-content { position: relative; z-index: 1; }
.bonus-tag { display: inline-block; padding: 8px 20px; background: var(--accent-red); border-radius: 6px; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.bonus-amount { font-family: 'Montserrat', sans-serif; font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 10px; }
.bonus-amount span { font-size: 0.4em; vertical-align: super; }
.bonus-title { font-size: 1.5rem; margin-bottom: 15px; }
.bonus-desc { color: var(--text-gray); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.bonus-features { display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
.bonus-feature { display: flex; align-items: center; gap: 8px; color: var(--primary-light); font-weight: 500; }
.bonus-feature svg { width: 20px; height: 20px; fill: var(--accent-green); }

/* ============================================
   GAME CARDS
   ============================================ */
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 25px; }
.game-card {
    background: var(--bg-card); border-radius: var(--card-radius); overflow: hidden;
    transition: all var(--transition); border: 1px solid rgba(255,255,255,0.03); position: relative;
}
.game-card:hover { transform: translateY(-8px); border-color: rgba(255,107,0,0.3); box-shadow: var(--shadow-lg), 0 0 30px rgba(255,107,0,0.1); }
.game-image {
    width: 100%; height: 180px; background: var(--bg-darker);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem; position: relative; overflow: hidden;
}
.game-image::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,107,0,0.2), transparent);
    transition: left 0.6s ease;
}
.game-card:hover .game-image::after { left: 100%; }
.game-badge { position: absolute; top: 12px; right: 12px; background: var(--accent-red); padding: 5px 12px; border-radius: 4px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.game-badge.hot { background: #FF6B00; }
.game-badge.new { background: var(--accent-green); }
.game-badge.top { background: var(--secondary); }
.game-info { padding: 20px; }
.game-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 5px; color: var(--text-white); }
.game-provider { font-size: 0.85rem; color: var(--text-gray); }

/* ============================================
   SPORTS SECTION
   ============================================ */
.sports-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.sports-content h2 { margin-bottom: 20px; }
.sports-content p { color: var(--text-gray); margin-bottom: 25px; }
.sports-list { list-style: none; margin-bottom: 30px; }
.sports-list li { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.sports-list li:last-child { border-bottom: none; }
.sport-icon { width: 45px; height: 45px; background: rgba(255,107,0,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.sport-info strong { display: block; color: var(--text-white); margin-bottom: 3px; }
.sport-info span { font-size: 0.85rem; color: var(--text-gray); }

/* Live Panel */
.live-panel { background: var(--bg-card); border-radius: var(--card-radius); padding: 25px; border: 1px solid rgba(255,107,0,0.2); }
.live-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.live-dot { width: 10px; height: 10px; background: var(--accent-red); border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.live-header span { font-weight: 700; color: var(--accent-red); text-transform: uppercase; letter-spacing: 2px; }
.match-card { background: rgba(255,255,255,0.02); border-radius: 12px; padding: 20px; margin-bottom: 15px; }
.match-card:last-child { margin-bottom: 0; }
.match-teams { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.team { text-align: center; flex: 1; }
.team-flag { font-size: 2rem; margin-bottom: 5px; }
.team-name { font-size: 0.85rem; font-weight: 600; }
.match-score { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.match-odds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.odd-btn { background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2); border-radius: 8px; padding: 12px 8px; text-align: center; cursor: pointer; transition: all var(--transition); }
.odd-btn:hover { background: var(--primary); border-color: var(--primary); }
.odd-btn:hover .odd-label, .odd-btn:hover .odd-value { color: var(--text-white); }
.odd-label { display: block; font-size: 0.75rem; color: var(--text-gray); margin-bottom: 3px; }
.odd-value { font-weight: 700; font-size: 1.1rem; color: var(--text-white); }

/* ============================================
   FEATURES
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
.feature-card { background: var(--bg-card); border-radius: var(--card-radius); padding: 35px 25px; text-align: center; border: 1px solid rgba(255,255,255,0.03); transition: all var(--transition); }
.feature-card:hover { border-color: rgba(255,107,0,0.3); transform: translateY(-5px); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,107,0,0.05)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; }
.feature-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--text-white); }
.feature-desc { font-size: 0.9rem; color: var(--text-gray); line-height: 1.6; }

/* ============================================
   PAYMENTS
   ============================================ */
.payment-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.payment-item { background: var(--bg-card); border-radius: 12px; padding: 18px 30px; display: flex; align-items: center; gap: 10px; font-weight: 600; transition: all var(--transition); border: 1px solid rgba(255,255,255,0.03); }
.payment-item:hover { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.3); transform: scale(1.05); }
.payment-icon { font-size: 1.4rem; }

/* ============================================
   CTA
   ============================================ */
.cta-section { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center, rgba(255,107,0,0.2) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 20px; }
.cta-section p { color: var(--text-gray); font-size: 1.2rem; margin-bottom: 35px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-darker); padding: 60px 0 30px; border-top: 1px solid rgba(255,107,0,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { color: var(--text-gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 42px; height: 42px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 1.1rem; transition: all var(--transition); }
.social-link:hover { background: var(--primary); color: var(--text-white); }
.footer-links h4 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; color: var(--primary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--text-gray); font-size: 0.9rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { color: var(--text-gray); font-size: 0.85rem; margin: 0; }
.age-warning { display: flex; align-items: center; gap: 12px; }
.age-badge { width: 42px; height: 42px; background: var(--accent-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; }
.age-warning span { font-size: 0.85rem; color: var(--text-gray); }

/* ============================================
   BREADCRUMB & PAGE HERO
   ============================================ */
.breadcrumb { padding: 120px 0 30px; background: var(--bg-darker); }
.breadcrumb-list { display: flex; align-items: center; gap: 10px; list-style: none; font-size: 0.9rem; }
.breadcrumb-list a { color: var(--text-gray); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .separator { color: var(--text-muted); }
.breadcrumb-list .current { color: var(--primary); }
.page-hero { padding: 40px 0 60px; background: var(--bg-darker); text-align: center; }
.page-hero h1 { margin-bottom: 15px; }
.page-hero p { color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border-radius: 12px; margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.03); overflow: hidden; }
.faq-question { width: 100%; padding: 20px 25px; background: none; border: none; color: var(--text-white); font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform var(--transition); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-item.active .faq-answer { padding: 0 25px 20px; max-height: 500px; }
.faq-answer p { color: var(--text-gray); margin: 0; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-dark); flex-direction: column; padding: 20px; gap: 0; border-top: 1px solid rgba(255,107,0,0.1); }
    .nav-menu.active { display: flex; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .menu-toggle { display: flex; }
    .sports-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px; }
    .header { padding: 10px 0; }
    .logo-text { font-size: 1.4rem; }
    .nav-buttons .btn { padding: 10px 16px; font-size: 0.8rem; }
    .hero { padding: 100px 0 60px; }
    .hero-stats { gap: 30px; }
    .stat-value { font-size: 2rem; }
    .bonus-card { padding: 35px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 280px; }
    .hero-stats { flex-direction: column; gap: 20px; }
    .bonus-features { flex-direction: column; gap: 15px; }
    .match-odds { grid-template-columns: 1fr; }
}
