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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

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

/* Glassmorphism Utility Classes */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #e0e0e0;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
}

.btn-bonus {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    width: 100%;
    text-align: center;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 40px 20px;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-menu.active {
    display: flex;
}

.mobile-nav-menu .nav-link {
    font-size: 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav-menu .nav-link:hover {
    color: #ff6b6b;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-actions .btn-secondary,
.mobile-nav-actions .btn-primary {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 46, 0.2));
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 900px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 20px;
    line-height: 1.8;
}

.hero-subdescription {
    font-size: 1.1rem;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-cta {
    text-align: center;
}

.cta-bonus {
    color: #f39c12;
    font-weight: 600;
    margin-top: 10px;
    font-size: 1.1rem;
}

.hero-image {
    max-width: 800px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.6;
}

/* Section Styles */
.sports-betting, .casino {
    padding: 100px 0;
}

.sports-betting {
    background: rgba(0, 0, 0, 0.1);
}

.casino {
    background: rgba(0, 0, 0, 0.25);
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.section-content .section-text {
    max-width: 900px;
    text-align: center;
}

.section-content .section-image {
    max-width: 800px;
    width: 100%;
}

.section-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-text p {
    font-size: 1.1rem;
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Sports Coverage Styles */
.sports-coverage {
    margin: 40px 0;
}

.sports-coverage h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sport-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sport-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sport-item h4 {
    color: #f39c12;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.sport-item ul {
    list-style: none;
}

.sport-item li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lead-text {
    font-size: 1.3rem;
    color: rgba(224, 224, 224, 0.95);
    margin-bottom: 20px;
    line-height: 1.8;
    font-weight: 300;
}

/* Casino Categories */
.game-categories-expanded {
    margin: 40px 0;
}

.game-categories-expanded h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-item h4 {
    color: #e67e22;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.games-detail p {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.games-detail ul {
    list-style: none;
    margin-bottom: 15px;
}

.games-detail li {
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 8px;
    font-size: 0.9rem;
    padding-left: 15px;
    position: relative;
}

.games-detail li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
}
    margin-bottom: 10px;
    font-weight: 600;
}

.category p {
    color: rgba(224, 224, 224, 0.8);
    margin: 0;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Bonuses Section */
.bonuses {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.15);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
}

.bonus-card.featured {
    border: 2px solid #f39c12;
    background: rgba(243, 156, 18, 0.05);
    transform: scale(1.05);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bonus-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.bonus-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
}

.bonus-extras {
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.bonus-features li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    padding-left: 10px;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.08);
}

.bonus-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

/* How to Play Section */
.how-to-play {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.how-to-play h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: rgba(224, 224, 224, 0.8);
    line-height: 1.6;
}

/* Betting Features */
.betting-features {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.betting-features h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Casino Benefits */
.casino-benefits {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.casino-benefits h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.casino-benefits ul {
    list-style: none;
}

.casino-benefits li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Payment Methods Section */
.payment-methods {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.15);
}

.payment-methods h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.payment-method {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method.featured {
    background: rgba(255, 255, 255, 0.06);
    border-color: #f39c12;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.payment-method h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.method-details p {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.method-features {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.method-features li {
    color: rgba(224, 224, 224, 0.85);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Payment Security */
.payment-security {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-security h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.security-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-item .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.security-item p {
    color: rgba(224, 224, 224, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.25);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.rating {
    color: #f39c12;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(224, 224, 224, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: #ffffff;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: rgba(224, 224, 224, 0.7);
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator {
    text-align: center;
}

.indicator-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
}

.indicator p {
    color: rgba(224, 224, 224, 0.9);
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.faq-categories {
    margin-top: 60px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    color: #f39c12;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.faq-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsible Gambling Section */
.responsible-gambling {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.responsible-gambling h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.responsible-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.responsible-info,
.responsible-help {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
}

.responsible-info h3,
.responsible-help h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.responsible-info p,
.responsible-help p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
}

.control-tools,
.warning-signs {
    list-style: none;
    margin-bottom: 30px;
}

.control-tools li,
.warning-signs li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.warning-signs li {
    padding-left: 20px;
    position: relative;
    color: rgba(224, 224, 224, 0.85);
}

.warning-signs li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.help-resources {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-resources p {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.age-restriction h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.age-restriction p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: rgba(224, 224, 224, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-licenses {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.license-badge,
.security-badge,
.age-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 10px 20px;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.license-badge:hover,
.security-badge:hover,
.age-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-bottom p {
    color: rgba(224, 224, 224, 0.6);
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.5);
}

/* Article Page Styles */
.article-hero {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(26, 26, 46, 0.3));
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    color: rgba(224, 224, 224, 0.7);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #f39c12;
    text-decoration: none;
}

.article-hero h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.3rem;
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.article-meta span {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.article-cta {
    margin-top: 40px;
}

.cta-subtitle {
    color: #f39c12;
    font-size: 1rem;
    margin-top: 10px;
}

.article-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.article-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.article-toc {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.article-toc h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.article-toc ul {
    list-style: none;
}

.article-toc li {
    margin-bottom: 10px;
}

.article-toc a {
    color: rgba(224, 224, 224, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.article-toc a:hover {
    color: #f39c12;
}

.article-body {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-section p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid;
}

.highlight-box.warning {
    border-left-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.highlight-box.security {
    border-left-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.highlight-box.success {
    border-left-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.highlight-box h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight-box ul {
    list-style: none;
    margin-left: 0;
}

.highlight-box li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.highlight-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
}

.cta-inline {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(238, 90, 36, 0.1));
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.cta-inline h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.cta-inline p {
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.step-process {
    margin: 30px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(224, 224, 224, 0.8);
    margin: 0;
}

.document-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
}

.document-list h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.document-list ul {
    list-style: none;
}

.document-list li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.payment-methods-analysis,
.bonus-analysis {
    margin: 40px 0;
}

.payment-methods-analysis h3,
.bonus-analysis h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.payment-grid-analysis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.payment-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.payment-item.featured {
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.payment-item h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.payment-item p {
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.recommended {
    background: #2ecc71;
    color: white;
}

.badge.android {
    background: #3498db;
    color: white;
}

.bonus-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.bonus-item h4 {
    color: #f39c12;
    margin-bottom: 10px;
}

.games-overview {
    margin: 30px 0;
}

.games-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.providers-section {
    margin: 40px 0;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.provider-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.provider-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.provider-item p {
    color: rgba(224, 224, 224, 0.7);
    font-size: 0.9rem;
}

.games-categories {
    margin: 40px 0;
}

.category-detailed {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-detailed h4 {
    color: #f39c12;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.mobile-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.mobile-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-option.recommended {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.option-header h4 {
    color: #ffffff;
    font-size: 1.2rem;
}

.mobile-option ul {
    list-style: none;
    margin-top: 15px;
}

.mobile-option li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.app-download-steps {
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
}

.app-download-steps h4 {
    color: #ffffff;
    margin-bottom: 20px;
}

.app-download-steps ol {
    color: rgba(224, 224, 224, 0.9);
    margin-left: 20px;
}

.app-download-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.security-warning {
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border-left: 4px solid #ff6b6b;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.support-channel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-channel.primary {
    border-color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
}

.channel-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.support-channel h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.channel-rating {
    margin-bottom: 15px;
}

.stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.rating-text {
    color: #2ecc71;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 10px;
}

.support-evaluation {
    margin: 40px 0;
}

.evaluation-grid {
    display: grid;
    gap: 15px;
}

.eval-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.eval-label {
    color: rgba(224, 224, 224, 0.9);
    font-size: 0.95rem;
}

.eval-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
}

.eval-fill {
    background: linear-gradient(90deg, #f39c12, #e67e22);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.eval-score {
    color: #f39c12;
    font-weight: 600;
    text-align: right;
}

.withdrawal-process {
    margin: 40px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.step-details h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.step-details p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.withdrawal-details {
    margin: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.detail-item h4 {
    color: #f39c12;
    margin-bottom: 10px;
}

.detail-item p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
}

.security-analysis {
    margin: 40px 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.security-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.security-item h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.security-item p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.verified {
    background: #2ecc71;
    color: white;
}

.status.warning {
    background: #f39c12;
    color: white;
}

.responsible-gaming {
    margin: 40px 0;
}

.rg-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.rg-tool {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.rg-tool h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.rg-tool p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 0.9rem;
}

.age-restriction-notice {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    margin: 40px 0;
}

.age-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.age-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.age-content p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.6;
}

.final-verdict {
    margin: 40px 0;
}

.verdict-summary {
    text-align: center;
    margin-bottom: 40px;
}

.overall-rating {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 40px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: #f39c12;
    display: block;
}

.rating-stars {
    margin: 10px 0;
}

.rating-stars .stars {
    font-size: 1.5rem;
}

.rating-label {
    color: rgba(224, 224, 224, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

.detailed-ratings {
    margin: 40px 0;
}

.ratings-grid {
    display: grid;
    gap: 15px;
}

.rating-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.rating-category {
    color: rgba(224, 224, 224, 0.9);
    font-size: 0.95rem;
}

.rating-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
}

.rating-fill {
    background: linear-gradient(90deg, #f39c12, #e67e22);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rating-score {
    color: #f39c12;
    font-weight: 600;
    text-align: right;
    font-size: 0.95rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros,
.cons {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pros h4 {
    color: #2ecc71;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.cons h4 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.pros li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.cons li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.final-recommendation {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-recommendation h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.final-recommendation p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.recommendation-tips h4 {
    color: #f39c12;
    margin-bottom: 15px;
}

.recommendation-tips ul {
    list-style: none;
}

.recommendation-tips li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.final-cta {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(238, 90, 36, 0.2));
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.final-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-cta p {
    color: rgba(224, 224, 224, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.author-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.author-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.author-info h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.author-info p {
    color: rgba(224, 224, 224, 0.9);
    line-height: 1.8;
    margin-bottom: 15px;
}

.nav-link.active {
    color: #f39c12;
}

.nav-link.active::after {
    width: 100%;
}

code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #f39c12;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
        padding: 40px 0 60px;
    }
    
    .hero-content {
        gap: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image {
        order: 2;
        margin: 10px auto 15px;
        max-width: 550px;
    }
    
    .hero-cta {
        order: 3;
        margin-top: 5px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-subdescription {
        font-size: 0.95rem;
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .hero-features {
        gap: 15px;
        justify-content: center;
        margin-bottom: 15px;
        order: 4;
    }
    
    .feature {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .features-grid,
    .bonuses-grid,
    .steps,
    .faq-grid,
    .sports-grid,
    .category-grid,
    .payment-grid,
    .testimonials-grid,
    .trust-indicators,
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .sport-item,
    .category-item {
        padding: 20px;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .age-restriction {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
    
    .features h2,
    .faq h2,
    .testimonials h2,
    .payment-methods h2,
    .responsible-gambling h2 {
        font-size: 2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .indicator-number {
        font-size: 2rem;
    }
    
    .bonus-card.featured {
        transform: none;
    }
    
    /* Article page mobile styles */
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .article-toc {
        position: static;
        order: -1;
    }
    
    .article-body {
        padding: 25px;
    }
    
    .games-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .age-restriction-notice {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .final-cta {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
        padding: 30px 0 50px;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .hero-subdescription {
        font-size: 0.9rem;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .hero-image {
        max-width: 500px;
        margin-bottom: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-top: 5px;
    }
    
    .feature {
        min-width: 180px;
        justify-content: center;
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .payment-grid,
    .testimonials-grid,
    .sports-grid,
    .category-grid {
        gap: 20px;
    }
    
    .sport-item,
    .category-item,
    .payment-method,
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .footer-licenses {
        gap: 15px;
    }
    
    .license-badge,
    .security-badge,
    .age-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .bonus-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .feature {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .features h2,
    .bonuses h2,
    .how-to-play h2,
    .faq h2 {
        font-size: 2rem;
    }
    
    .section-text h2 {
        font-size: 2rem;
    }
}

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

.hero-text,
.hero-image,
.feature-card,
.bonus-card,
.step,
.faq-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Page-specific styles */
.page-hero {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(26, 26, 46, 0.2));
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    color: rgba(224, 224, 224, 0.7);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ff6b6b;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
}

.stat-label {
    color: rgba(224, 224, 224, 0.9);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Sports/Casino Categories */
.sports-categories, .game-categories {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.sports-grid, .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sport-card, .category-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.sport-card:hover, .category-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.category-card.featured {
    border: 2px solid #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.sport-icon, .category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.sport-card h3, .category-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-count {
    color: #f39c12;
    font-weight: 600;
    margin-bottom: 15px;
}

.sport-card p, .category-card p {
    color: rgba(224, 224, 224, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.sport-features, .category-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.sport-features li, .category-features li {
    color: rgba(224, 224, 224, 0.9);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.popular-games {
    margin: 15px 0;
}

.game-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(224, 224, 224, 0.9);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin: 2px;
}

/* Live betting section */
.live-betting {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.25);
}

.live-features {
    margin: 30px 0;
}

.live-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
}

.live-features .feature-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.live-features h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

.live-features p {
    color: rgba(224, 224, 224, 0.8);
    margin: 0;
}

/* Betting guide */
.betting-guide {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.guide-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.guide-steps {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guide-steps .step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.guide-steps .step:last-child {
    margin-bottom: 0;
}

.guide-steps .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-steps .step-content h3 {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.guide-steps .step-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.betting-tips {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.betting-tips h3 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.betting-tips ul {
    list-style: none;
}

.betting-tips li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    line-height: 1.5;
    padding-left: 15px;
    position: relative;
}

.betting-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Odds comparison */
.odds-comparison {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.comparison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.odds-advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.advantage {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage h4 {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.advantage p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.odds-table {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.odds-table h4 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.odds-table table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.odds-table th,
.odds-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.odds-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.odds-table .highlight {
    background: rgba(243, 156, 18, 0.2);
}

.table-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 15px;
    text-align: center;
}

/* Game showcase */
.popular-games-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.games-showcase {
    margin-top: 50px;
}

.game-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-highlight.reverse {
    grid-template-columns: 1fr 1fr;
}

.game-highlight.reverse .game-info {
    order: 1;
}

.game-highlight.reverse .game-image {
    order: 2;
}

.game-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.game-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.game-stats .stat {
    text-align: left;
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
}

.game-stats .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: block;
}

.game-stats .stat-value {
    color: #f39c12;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Providers */
.providers {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.providers-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.provider-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.provider-card img {
    margin-bottom: 15px;
    opacity: 0.9;
}

.provider-card h4 {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.provider-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Jackpots */
.jackpots {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.jackpots-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.jackpot-display {
    text-align: center;
}

.jackpot-counter {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.2));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #f39c12;
}

.jackpot-counter h3 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.jackpot-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f39c12;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
}

.jackpot-game {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Casino guide tabs */
.casino-guide {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.guide-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: white;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .sports-grid, .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-content,
    .jackpots-content,
    .game-highlight,
    .game-highlight.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .game-highlight.reverse .game-info,
    .game-highlight.reverse .game-image {
        order: unset;
    }
    
    .guide-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .odds-advantages {
        grid-template-columns: 1fr;
    }
    
    .game-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .providers-grid {
        grid-template-columns: 1fr;
    }
}