/* 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: #f8f9fa;
    background-color: #292D3B;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #f8f9fa;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #737787;
}

a {
    color: #0AB76B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #088f56;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: #0AB76B;
    color: white;
}

.btn-primary:hover {
    background-color: #088f56;
    color: white;
    box-shadow: 0 8px 25px rgba(10, 183, 107, 0.3);
}

.btn-secondary {
    background-color: #292D3B;
    color: white;
}

.btn-secondary:hover {
    background-color: #f8f9fa;
    box-shadow: 0 8px 25px rgba(41, 45, 59, 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    background-color: #212430;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-list a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: #0AB76B;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */

section .container p {
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10, 183, 107, .1) 0%, rgba(8, 143, 86, .1) 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-image:first-child {
    grid-column: 1 / -1;
}

/* Sections */
.why-choose,
.features,
.pros-cons,
.faq,
.review,
.conclusion,
.experience,
.login-process,
.advantages,
.download-process,
.why-app-works,
.game-types,
.provider-reviews,
.discovery,
.top-slots,
.real-money,
.bonus-offers,
.strategy,
.popular-sports,
.why-it-works,
.how-it-works,
.why-stands-out,
.comparison,
.what-makes-special,
.switching-games {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.why-choose h2,
.features h2,
.pros-cons h2,
.faq h2,
.review h2,
.experience h2,
.login-process h2,
.advantages h2,
.download-process h2,
.why-app-works h2,
.game-types h2,
.provider-reviews h2,
.discovery h2,
.top-slots h2,
.real-money h2,
.bonus-offers h2,
.strategy h2,
.popular-sports h2,
.why-it-works h2,
.how-it-works h2,
.why-stands-out h2,
.comparison h2,
.what-makes-special h2,
.switching-games h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #f8f9fa;
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.game-category {
    background: #212430;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.game-category i {
    font-size: 3rem;
    color: #0AB76B;
    margin-bottom: 1rem;
}

.game-category h3 {
    color: #f8f9fa;
    margin-bottom: 1rem;
}

.game-category p {
    color: #666;
}

/* Game Ratings */
.game-ratings {
    margin: 3rem 0;
}

.game-ratings h3 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Provider Reviews */
.provider-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.provider-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.provider-card h3 {
    color: #0AB76B;
    margin-bottom: 1rem;
}

/* Strategy Steps */
.strategy-steps {
    margin: 3rem 0;
}

.strategy-step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #212430;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.strategy-step .step-content h3 {
    margin-bottom: 0.5rem;
    color: #f8f9fa;
}

.strategy-step .step-content p {
    color: #666;
    margin-bottom: 0;
}

/* Reasons */
.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reason {
    background: #212430;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reason i {
    font-size: 2.5rem;
    color: #0AB76B;
    margin-bottom: 1rem;
}

.reason h3 {
    color: #f8f9fa;
    margin-bottom: 1rem;
}

.reason p {
    color: #666;
}

/* Process Steps */
.process-steps {
    margin: 3rem 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #212430;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: #0AB76B;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #f8f9fa;
}

/* Features Table */
.features-table {
    margin: 3rem 0;
}

.features-table h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.advantages-table {
    width: 100%;
    border-collapse: collapse;
    background: #212430;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.advantages-table th,
.advantages-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.advantages-table th {
    background-color: #0AB76B;
    color: white;
    font-weight: 600;
}

.advantages-table tr:hover {
    background-color: rgba(10, 183, 107, .1);
}

/* Pros Cons */
.pros-cons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.pros h3,
.cons h3 {
    color: #0AB76B;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #dc3545;
}

.pros ul,
.cons ul {
    list-style: none;
    padding-left: 0;
}

.pros li,
.cons li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pros li:before {
    content: "✓ ";
    color: #0AB76B;
    font-weight: bold;
}

.cons li:before {
    content: "✗ ";
    color: #dc3545;
    font-weight: bold;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #212430;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #0AB76B;
    margin-bottom: 1rem;
}

.faq-item p {
    text-align: left !important;
}

/* Review */
.review {
    background: linear-gradient(135deg, #212430 0%, #292D3B 100%);
    color: white;
    text-align: center;
}

.review h2 {
    color: white;
    font-size: 2.5rem;
}

.review p {
    color: rgba(255, 255, 255, 0.9);
}

header .container {
    max-width: unset;
}

/* CTA Sections */
.cta-section,
.final-cta {
    text-align: center;
    margin: 3rem 0;
}

/* Footer */
.footer {
    background-color: #212430;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #0AB76B;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0AB76B;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: #0AB76B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #292D3B;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .pros-cons-content {
        gap: 2rem;
    }
    
    .step,
    .strategy-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    
    .game-categories {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .provider-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reasons {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 1440px) {
    .nav {
        display: none;
        background: #292D3B;
        border-radius: 8px;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
    }



    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;

    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #212430;
    }
    
    .nav-list a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .payment-methods{
        justify-content: center;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-images {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .pros-cons-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-table {
        font-size: 0.9rem;
    }
    
    .advantages-table th,
    .advantages-table td {
        padding: 0.75rem 0.5rem;
    }
    
    section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step,
    .strategy-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .game-categories {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-category {
        padding: 1.5rem;
    }
    
    .reasons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reason {
        padding: 1.5rem;
    }
}

@media (max-width: 430px) {
    .header-buttons {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

    .header-content {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .advantages-table {
        font-size: 0.8rem;
    }
    
    .advantages-table th,
    .advantages-table td {
        padding: 0.5rem 0.25rem;
    }
    
    .step,
    .strategy-step {
        padding: 1rem 0.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .game-category {
        padding: 1rem;
    }
    
    .game-category i {
        font-size: 2.5rem;
    }
    
    .provider-card {
        padding: 1.5rem;
    }
    
    .reason {
        padding: 1rem;
    }
    
    .reason i {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.why-choose,
.features,
.pros-cons,
.faq,
.review,
.conclusion,
.experience,
.login-process,
.advantages,
.download-process,
.why-app-works,
.game-types,
.provider-reviews,
.discovery,
.top-slots,
.real-money,
.bonus-offers,
.strategy,
.popular-sports,
.why-it-works,
.how-it-works,
.why-stands-out,
.comparison,
.what-makes-special,
.switching-games {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.hero-image:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-list a:focus {
    outline: 2px solid #0AB76B;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 