@charset "UTF-8";
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;background-color:#0a0e17;color:#e0e0e0;line-height:1.7;min-height:100vh;display:flex;flex-direction:column}
a{text-decoration:none;color:#f0c14b;transition:color 0.3s ease}
a:hover{color:#ffda6a}
ul,ol{list-style:none}
img{max-width:100%;height:auto;display:block}
h1,h2,h3,h4,h5,h6{color:#ffffff;font-weight:600;line-height:1.3;margin-bottom:1rem}
h1{font-size:2.5rem}
h2{font-size:2rem}
h3{font-size:1.75rem}
h4{font-size:1.5rem}
h5{font-size:1.25rem}
h6{font-size:1rem}
p{margin-bottom:1rem;color:#b0b0b0}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}
.btn{display:inline-block;padding:14px 32px;border-radius:8px;font-weight:600;font-size:1rem;text-align:center;cursor:pointer;transition:all 0.3s ease;border:none}
.btn-primary{background:linear-gradient(135deg,#f0c14b 0%,#d4a43a 100%);color:#0a0e17}
.btn-primary:hover{background:linear-gradient(135deg,#ffda6a 0%,#f0c14b 100%);color:#0a0e17;transform:translateY(-2px);box-shadow:0 8px 20px rgba(240,193,75,0.3)}
.btn-secondary{background:transparent;border:2px solid #f0c14b;color:#f0c14b}
.btn-secondary:hover{background:#f0c14b;color:#0a0e17}
header{background:linear-gradient(180deg,#0d1321 0%,#0a0e17 100%);padding:15px 0;position:sticky;top:0;z-index:1000;border-bottom:1px solid rgba(240,193,75,0.1)}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.logo{display:flex;align-items:center;gap:12px}
.logo-img{width:50px;height:50px;background:linear-gradient(135deg,#f0c14b 0%,#d4a43a 100%);border-radius:10px;display:flex;align-items:center;justify-content:center}
.logo-text{font-size:1.75rem;font-weight:700;color:#ffffff}
.logo-text span{color:#f0c14b}
nav.main-nav ul{display:flex;gap:30px}
nav.main-nav ul li a{color:#e0e0e0;font-weight:500;padding:10px 0;position:relative}
nav.main-nav ul li a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:#f0c14b;transition:width 0.3s ease}
nav.main-nav ul li a:hover{color:#f0c14b}
nav.main-nav ul li a:hover::after{width:100%}
.header-actions{display:flex;gap:15px;align-items:center}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:10px}
.hamburger span{width:25px;height:3px;background:#f0c14b;border-radius:3px;transition:all 0.3s ease}
.mobile-menu{display:none;position:fixed;top:0;left:-100%;width:80%;max-width:320px;height:100vh;background:#0d1321;z-index:2000;padding:80px 30px 30px;transition:left 0.3s ease;overflow-y:auto}
.mobile-menu.active{left:0}
.mobile-menu-overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.7);z-index:1999}
.mobile-menu-overlay.active{display:block}
.mobile-menu ul{display:flex;flex-direction:column;gap:20px}
.mobile-menu ul li a{font-size:1.1rem;color:#e0e0e0;display:block;padding:10px 0;border-bottom:1px solid rgba(240,193,75,0.1)}
.mobile-menu-close{position:absolute;top:20px;right:20px;font-size:1.5rem;color:#f0c14b;cursor:pointer}
.hero{background:linear-gradient(135deg,rgba(13,19,33,0.95) 0%,rgba(10,14,23,0.95) 100%),url('../images/hero-bg.jpg') center/cover no-repeat;padding:100px 0;text-align:center;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 50% 50%,rgba(240,193,75,0.1) 0%,transparent 50%);pointer-events:none}
.hero-content{position:relative;z-index:1;max-width:800px;margin:0 auto}
.hero h1{font-size:3rem;margin-bottom:1.5rem}
.hero h1 span{color:#f0c14b}
.hero p{font-size:1.25rem;margin-bottom:2rem;color:#b0b0b0}
.hero-buttons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.hero-stats{display:flex;justify-content:center;gap:60px;margin-top:60px;flex-wrap:wrap}
.stat-item{text-align:center}
.stat-number{font-size:2.5rem;font-weight:700;color:#f0c14b;display:block}
.stat-label{color:#b0b0b0;font-size:0.9rem}
section{padding:80px 0}
section.alt-bg{background:#0d1321}
.section-header{text-align:center;margin-bottom:60px}
.section-header h2{margin-bottom:1rem}
.section-header p{max-width:600px;margin:0 auto;color:#b0b0b0}
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px}
.feature-card{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:16px;padding:40px 30px;text-align:center;border:1px solid rgba(240,193,75,0.1);transition:all 0.3s ease}
.feature-card:hover{transform:translateY(-5px);border-color:rgba(240,193,75,0.3);box-shadow:0 20px 40px rgba(0,0,0,0.3)}
.feature-icon{width:80px;height:80px;background:linear-gradient(135deg,rgba(240,193,75,0.2) 0%,rgba(240,193,75,0.1) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 25px;font-size:2rem;color:#f0c14b}
.feature-card h3{margin-bottom:15px;font-size:1.25rem}
.feature-card p{color:#b0b0b0;font-size:0.95rem;margin-bottom:0}
.info-section{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.info-image{border-radius:16px;overflow:hidden;box-shadow:0 20px 40px rgba(0,0,0,0.3)}
.info-image img{width:100%;height:auto}
.info-placeholder{width:100%;height:400px;background:linear-gradient(135deg,#1a1f2e 0%,#0d1321 100%);border-radius:16px;display:flex;align-items:center;justify-content:center;border:2px dashed rgba(240,193,75,0.3)}
.info-placeholder i{font-size:4rem;color:rgba(240,193,75,0.3)}
.info-content h2{margin-bottom:1.5rem}
.info-content p{margin-bottom:1.5rem}
.info-list{margin-bottom:2rem}
.info-list li{display:flex;align-items:flex-start;gap:15px;margin-bottom:15px;color:#b0b0b0}
.info-list li i{color:#f0c14b;margin-top:5px;flex-shrink:0}
.games-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px}
.game-card{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:16px;overflow:hidden;border:1px solid rgba(240,193,75,0.1);transition:all 0.3s ease}
.game-card:hover{transform:translateY(-5px);border-color:rgba(240,193,75,0.3)}
.game-card-image{width:100%;height:180px;background:linear-gradient(135deg,#1a1f2e 0%,#0d1321 100%);display:flex;align-items:center;justify-content:center}
.game-card-image i{font-size:3rem;color:rgba(240,193,75,0.4)}
.game-card-content{padding:25px}
.game-card-content h3{font-size:1.1rem;margin-bottom:10px}
.game-card-content p{font-size:0.9rem;color:#b0b0b0;margin-bottom:0}
.faq-section{max-width:800px;margin:0 auto}
.faq-item{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:12px;margin-bottom:15px;border:1px solid rgba(240,193,75,0.1);overflow:hidden}
.faq-question{padding:25px 30px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background 0.3s ease}
.faq-question:hover{background:rgba(240,193,75,0.05)}
.faq-question h4{margin-bottom:0;font-size:1rem;font-weight:500;color:#e0e0e0}
.faq-question i{color:#f0c14b;transition:transform 0.3s ease}
.faq-item.active .faq-question i{transform:rotate(180deg)}
.faq-answer{padding:0 30px;max-height:0;overflow:hidden;transition:all 0.3s ease}
.faq-item.active .faq-answer{padding:0 30px 25px;max-height:500px}
.faq-answer p{margin-bottom:0}
.cta-section{background:linear-gradient(135deg,rgba(240,193,75,0.1) 0%,rgba(240,193,75,0.05) 100%);text-align:center;border-radius:24px;padding:60px 40px;margin:0 20px}
.cta-section h2{margin-bottom:1rem}
.cta-section p{margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto}
.breadcrumb{padding:20px 0;background:#0d1321;border-bottom:1px solid rgba(240,193,75,0.1)}
.breadcrumb ul{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.breadcrumb ul li{display:flex;align-items:center;gap:10px;color:#b0b0b0;font-size:0.9rem}
.breadcrumb ul li a{color:#b0b0b0}
.breadcrumb ul li a:hover{color:#f0c14b}
.breadcrumb ul li i{font-size:0.7rem;color:#666}
.page-header{background:linear-gradient(135deg,rgba(13,19,33,0.95) 0%,rgba(10,14,23,0.95) 100%);padding:60px 0;text-align:center}
.page-header h1{margin-bottom:1rem}
.page-header p{max-width:600px;margin:0 auto;color:#b0b0b0}
.content-section{padding:60px 0}
.content-wrapper{max-width:900px;margin:0 auto}
.content-wrapper h2{margin-top:2.5rem;margin-bottom:1rem;padding-bottom:0.5rem;border-bottom:1px solid rgba(240,193,75,0.2)}
.content-wrapper h3{margin-top:2rem;margin-bottom:1rem}
.content-wrapper p{margin-bottom:1.5rem}
.content-wrapper ul,.content-wrapper ol{margin-bottom:1.5rem;padding-left:20px}
.content-wrapper ul li,.content-wrapper ol li{margin-bottom:10px;color:#b0b0b0;position:relative;padding-left:25px}
.content-wrapper ul li::before{content:'\f00c';font-family:'Font Awesome 6 Free';font-weight:900;position:absolute;left:0;color:#f0c14b;font-size:0.8rem}
.table-responsive{overflow-x:auto;margin-bottom:2rem}
.info-table{width:100%;border-collapse:collapse;background:#0d1321;border-radius:12px;overflow:hidden}
.info-table th,.info-table td{padding:15px 20px;text-align:left;border-bottom:1px solid rgba(240,193,75,0.1)}
.info-table th{background:rgba(240,193,75,0.1);color:#f0c14b;font-weight:600}
.info-table tr:last-child td{border-bottom:none}
.info-table tr:hover td{background:rgba(240,193,75,0.05)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px}
.contact-info{display:flex;flex-direction:column;gap:30px}
.contact-item{display:flex;align-items:flex-start;gap:20px;padding:25px;background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:12px;border:1px solid rgba(240,193,75,0.1)}
.contact-item-icon{width:50px;height:50px;background:linear-gradient(135deg,rgba(240,193,75,0.2) 0%,rgba(240,193,75,0.1) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-item-icon i{color:#f0c14b;font-size:1.25rem}
.contact-item-content h4{margin-bottom:5px;font-size:1rem}
.contact-item-content p{margin-bottom:0;color:#b0b0b0}
.contact-item-content a{color:#f0c14b}
.contact-map{border-radius:16px;overflow:hidden;height:100%;min-height:400px}
.contact-map iframe{width:100%;height:100%;min-height:400px;border:none}
.map-placeholder{width:100%;height:100%;min-height:400px;background:linear-gradient(135deg,#1a1f2e 0%,#0d1321 100%);display:flex;align-items:center;justify-content:center;flex-direction:column;gap:15px;border:2px dashed rgba(240,193,75,0.3);border-radius:16px}
.map-placeholder i{font-size:3rem;color:rgba(240,193,75,0.3)}
.map-placeholder span{color:#b0b0b0}
.social-links{display:flex;gap:15px;margin-top:20px}
.social-links a{width:45px;height:45px;background:linear-gradient(135deg,rgba(240,193,75,0.2) 0%,rgba(240,193,75,0.1) 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#f0c14b;font-size:1.1rem;transition:all 0.3s ease}
.social-links a:hover{background:#f0c14b;color:#0a0e17;transform:translateY(-3px)}
footer{background:#0d1321;padding:60px 0 0;margin-top:auto;border-top:1px solid rgba(240,193,75,0.1)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer-about .logo{margin-bottom:20px}
.footer-about p{color:#b0b0b0;font-size:0.95rem;margin-bottom:20px}
.footer-column h4{color:#f0c14b;margin-bottom:20px;font-size:1rem}
.footer-column ul li{margin-bottom:12px}
.footer-column ul li a{color:#b0b0b0;font-size:0.95rem;display:flex;align-items:center;gap:10px}
.footer-column ul li a:hover{color:#f0c14b}
.footer-column ul li a i{font-size:0.8rem}
.footer-bottom{border-top:1px solid rgba(240,193,75,0.1);padding:25px 0;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px}
.footer-bottom p{color:#666;font-size:0.9rem;margin-bottom:0}
.footer-legal{display:flex;gap:25px}
.footer-legal a{color:#666;font-size:0.9rem}
.footer-legal a:hover{color:#f0c14b}
.warning-box{background:linear-gradient(135deg,rgba(255,152,0,0.1) 0%,rgba(255,152,0,0.05) 100%);border:1px solid rgba(255,152,0,0.3);border-radius:12px;padding:25px;margin:30px 0}
.warning-box h4{color:#ff9800;margin-bottom:10px;display:flex;align-items:center;gap:10px}
.warning-box p{margin-bottom:0;color:#b0b0b0}
.info-box{background:linear-gradient(135deg,rgba(33,150,243,0.1) 0%,rgba(33,150,243,0.05) 100%);border:1px solid rgba(33,150,243,0.3);border-radius:12px;padding:25px;margin:30px 0}
.info-box h4{color:#2196f3;margin-bottom:10px;display:flex;align-items:center;gap:10px}
.info-box p{margin-bottom:0;color:#b0b0b0}
.age-warning{position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border:1px solid rgba(240,193,75,0.3);border-radius:12px;padding:20px;max-width:300px;z-index:1000;display:none}
.age-warning.show{display:block}
.age-warning h5{color:#f0c14b;margin-bottom:10px;display:flex;align-items:center;gap:10px}
.age-warning p{font-size:0.85rem;margin-bottom:15px}
.age-warning .btn{padding:10px 20px;font-size:0.9rem}
.cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#0d1321;border-top:1px solid rgba(240,193,75,0.2);padding:20px;z-index:1001;display:none}
.cookie-banner.show{display:block}
.cookie-banner-inner{max-width:1200px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;gap:30px;flex-wrap:wrap}
.cookie-banner p{margin-bottom:0;flex:1}
.cookie-banner-buttons{display:flex;gap:15px}
.error-page{min-height:60vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:60px 20px}
.error-content h1{font-size:8rem;color:#f0c14b;margin-bottom:1rem;line-height:1}
.error-content h2{margin-bottom:1.5rem}
.error-content p{margin-bottom:2rem;color:#b0b0b0}
.bonus-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px}
.bonus-card{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:16px;padding:30px;border:1px solid rgba(240,193,75,0.1);position:relative;overflow:hidden}
.bonus-card::before{content:'';position:absolute;top:0;right:0;width:100px;height:100px;background:linear-gradient(135deg,rgba(240,193,75,0.1) 0%,transparent 100%);border-radius:0 16px 0 100%}
.bonus-card-icon{width:60px;height:60px;background:linear-gradient(135deg,rgba(240,193,75,0.2) 0%,rgba(240,193,75,0.1) 100%);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
.bonus-card-icon i{font-size:1.5rem;color:#f0c14b}
.bonus-card h3{margin-bottom:15px}
.bonus-card p{color:#b0b0b0;margin-bottom:0}
.steps-section{display:flex;flex-direction:column;gap:30px;max-width:800px;margin:0 auto}
.step-item{display:flex;gap:25px;align-items:flex-start}
.step-number{width:60px;height:60px;background:linear-gradient(135deg,#f0c14b 0%,#d4a43a 100%);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;font-weight:700;color:#0a0e17;flex-shrink:0}
.step-content h3{margin-bottom:10px}
.step-content p{color:#b0b0b0;margin-bottom:0}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:30px}
.stat-card{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:16px;padding:30px;text-align:center;border:1px solid rgba(240,193,75,0.1)}
.stat-card i{font-size:2.5rem;color:#f0c14b;margin-bottom:15px}
.stat-card h3{font-size:2rem;color:#f0c14b;margin-bottom:5px}
.stat-card p{color:#b0b0b0;margin-bottom:0}
.provider-logos{display:flex;flex-wrap:wrap;gap:20px;justify-content:center;align-items:center;padding:40px 0}
.provider-logo{width:120px;height:60px;background:linear-gradient(135deg,#1a1f2e 0%,#0d1321 100%);border-radius:8px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(240,193,75,0.1)}
.provider-logo i{font-size:1.5rem;color:rgba(240,193,75,0.4)}
.accordion{max-width:900px;margin:0 auto}
.accordion-item{background:linear-gradient(135deg,#0d1321 0%,#111827 100%);border-radius:12px;margin-bottom:15px;border:1px solid rgba(240,193,75,0.1);overflow:hidden}
.accordion-header{padding:20px 25px;cursor:pointer;display:flex;justify-content:space-between;align-items:center}
.accordion-header h4{margin-bottom:0;font-weight:500}
.accordion-header i{color:#f0c14b;transition:transform 0.3s ease}
.accordion-item.active .accordion-header i{transform:rotate(180deg)}
.accordion-content{max-height:0;overflow:hidden;transition:max-height 0.3s ease}
.accordion-item.active .accordion-content{max-height:1000px}
.accordion-content-inner{padding:0 25px 25px}
@media screen and (max-width:1024px){
.footer-grid{grid-template-columns:1fr 1fr}
.info-section{grid-template-columns:1fr;gap:40px}
.contact-grid{grid-template-columns:1fr}
}
@media screen and (max-width:768px){
html{font-size:15px}
h1{font-size:2rem}
h2{font-size:1.75rem}
.hamburger{display:flex}
nav.main-nav{display:none}
.header-actions .btn{display:none}
.hero{padding:60px 0}
.hero h1{font-size:2.25rem}
.hero p{font-size:1rem}
.hero-stats{gap:30px}
.stat-number{font-size:2rem}
section{padding:60px 0}
.section-header{margin-bottom:40px}
.footer-grid{grid-template-columns:1fr}
.footer-bottom{flex-direction:column;text-align:center}
.footer-legal{flex-wrap:wrap;justify-content:center}
.mobile-menu{display:block}
.cta-section{padding:40px 25px;margin:0 15px}
.cookie-banner-inner{flex-direction:column;text-align:center}
.contact-map{min-height:300px}
.contact-map iframe{min-height:300px}
}
@media screen and (max-width:480px){
.container{padding:0 15px}
.hero-buttons{flex-direction:column;align-items:center}
.hero-buttons .btn{width:100%;max-width:280px}
.feature-card{padding:30px 20px}
.game-card-content{padding:20px}
.faq-question{padding:20px}
.faq-answer{padding:0 20px}
.faq-item.active .faq-answer{padding:0 20px 20px}
.step-item{flex-direction:column;align-items:center;text-align:center}
.bonus-card{padding:25px 20px}
.footer-about .logo{justify-content:center}
.footer-column{text-align:center}
.footer-column ul li a{justify-content:center}
.social-links{justify-content:center}
}
@media (prefers-reduced-motion:reduce){
*{animation:none!important;transition:none!important}
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.text-center{text-align:center}
.text-left{text-align:left}
.text-right{text-align:right}
.mt-1{margin-top:0.5rem}
.mt-2{margin-top:1rem}
.mt-3{margin-top:1.5rem}
.mt-4{margin-top:2rem}
.mb-1{margin-bottom:0.5rem}
.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}
.mb-4{margin-bottom:2rem}
.pt-1{padding-top:0.5rem}
.pt-2{padding-top:1rem}
.pb-1{padding-bottom:0.5rem}
.pb-2{padding-bottom:1rem}
.d-flex{display:flex}
.flex-wrap{flex-wrap:wrap}
.align-center{align-items:center}
.justify-center{justify-content:center}
.justify-between{justify-content:space-between}
.gap-1{gap:0.5rem}
.gap-2{gap:1rem}
.gap-3{gap:1.5rem}
