/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffd23f;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #ffd23f 0%, #ff6b35 100%);
    --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.3);
    --shadow-dark: 0 8px 40px rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background: var(--dark-bg);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.link-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    display: block;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.link-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Game Preview Section */
.game-preview {
    padding: 80px 0;
    background: var(--darker-bg);
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.preview-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.game-steps {
    list-style: none;
    margin-bottom: 2rem;
}

.game-steps li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.game-steps li:last-child {
    border-bottom: none;
}

.preview-image {
    position: relative;
}

.preview-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.link-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Bonus Games Specific Styles */
.bonus-overview {
    padding: 80px 0;
    background: var(--darker-bg);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.overview-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Game Detail Styles */
.game-detail {
    padding: 80px 0;
    background: var(--dark-bg);
}

.game-detail:nth-child(even) {
    background: var(--darker-bg);
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-content.reverse {
    direction: rtl;
}

.game-content.reverse > * {
    direction: ltr;
}

.game-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.game-rules {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.game-rules li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
}

.game-features {
    margin-bottom: 2rem;
    list-style: none;
}

.game-features li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.game-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.game-stats {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.stat-label {
    color: var(--text-gray);
}

.stat-value {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    transition: var(--transition);
}

.detail-img:hover {
    transform: scale(1.02);
}

/* Bonus Tips Styles */
.bonus-tips {
    padding: 80px 0;
    background: var(--darker-bg);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.tip-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Related Links Styles */
.related-links {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* Strategy Specific Styles */
.strategy-overview {
    padding: 80px 0;
    background: var(--darker-bg);
}

.strategy-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.strategy-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.strategy-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.strategy-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.strategy-detail {
    padding: 80px 0;
    background: var(--dark-bg);
}

.strategy-detail:nth-child(even) {
    background: var(--darker-bg);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.strategy-content.reverse {
    direction: rtl;
}

.strategy-content.reverse > * {
    direction: ltr;
}

.strategy-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.principle-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.principle-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.principle-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bankroll-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.example-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.example-card ul {
    list-style: none;
}

.example-card li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.betting-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bet-type {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bet-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bet-type p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bet-odds {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bet-odds span {
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.strategy-list {
    display: grid;
    gap: 1.5rem;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.strategy-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.strategy-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.bonus-strategies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bonus-strategy {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bonus-strategy h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.bonus-strategy ul {
    list-style: none;
}

.bonus-strategy li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.bonus-strategy li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.psychology-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.rule-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.rule-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.warning-signs {
    display: grid;
    gap: 1rem;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.warning-icon {
    font-size: 1.5rem;
}

.warning-item p {
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.advanced-tips {
    padding: 80px 0;
    background: var(--darker-bg);
}

/* Odds and Statistics Specific Styles */
.key-stats {
    padding: 80px 0;
    background: var(--darker-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.main-odds {
    padding: 80px 0;
    background: var(--dark-bg);
}

.odds-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 1rem;
    color: var(--text-light);
    border-right: 1px solid rgba(255, 107, 53, 0.2);
}

.table-cell:last-child {
    border-right: none;
}

.table-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.bonus-stats {
    padding: 80px 0;
    background: var(--darker-bg);
}

.bonus-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.bonus-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-stat-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.bonus-stats-details {
    display: grid;
    gap: 1rem;
}

.probability-analysis {
    padding: 80px 0;
    background: var(--dark-bg);
}

.analysis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.analysis-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.analysis-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.analysis-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.analysis-list {
    list-style: none;
    margin-bottom: 2rem;
}

.analysis-list li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.analysis-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.frequency-chart {
    display: grid;
    gap: 1rem;
}

.chart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-bar {
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 10px;
    min-width: 50px;
}

.chart-item span {
    color: var(--text-light);
    font-weight: 500;
    min-width: 120px;
}

.historical-data {
    padding: 80px 0;
    background: var(--darker-bg);
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.data-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.record-list {
    display: grid;
    gap: 1rem;
}

.record-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.record-multiplier {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.record-game {
    color: var(--text-light);
    font-weight: 500;
}

.record-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.payout-stats {
    display: grid;
    gap: 1rem;
}

.payout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.payout-range {
    color: var(--text-light);
    font-weight: 500;
}

.payout-percentage {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.time-stats {
    display: grid;
    gap: 1rem;
}

.time-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.time-label {
    color: var(--text-gray);
}

.time-value {
    color: var(--primary-color);
    font-weight: 600;
}

.odds-tips {
    padding: 80px 0;
    background: var(--dark-bg);
}

/* Top Casinos Specific Styles */
.top-casinos {
    padding: 80px 0;
    background: var(--darker-bg);
}

.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.casino-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.casino-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.casino-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.casino-rank {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.casino-logo {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.casino-info {
    padding: 0 2rem 1rem;
    text-align: center;
}

.casino-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.rating-score {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.casino-bonus {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.3);
    margin-bottom: 1.5rem;
}

.bonus-amount {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.bonus-text {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.casino-features {
    padding: 0 2rem 1.5rem;
    display: grid;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1rem;
}

.casino-actions {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
}

.casino-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.casino-comparison {
    padding: 80px 0;
    background: var(--dark-bg);
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.comparison-table .table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
}

.comparison-table .table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.comparison-table .table-row:last-child {
    border-bottom: none;
}

.comparison-table .table-cell {
    padding: 1rem;
    color: var(--text-light);
    border-right: 1px solid rgba(255, 107, 53, 0.2);
    font-size: 0.9rem;
}

.comparison-table .table-cell:last-child {
    border-right: none;
}

.comparison-table .table-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.how-to-choose {
    padding: 80px 0;
    background: var(--darker-bg);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.choose-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.choose-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.choose-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.choose-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.payment-methods {
    padding: 80px 0;
    background: var(--dark-bg);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.payment-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.payment-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.casino-tips {
    padding: 80px 0;
    background: var(--darker-bg);
}

/* How to Play Specific Styles */
.quick-start {
    padding: 80px 0;
    background: var(--darker-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.step-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.step-link:hover {
    color: var(--accent-color);
}

.detailed-instructions {
    padding: 80px 0;
    background: var(--dark-bg);
}

.instructions-content {
    display: grid;
    gap: 3rem;
}

.instruction-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.instruction-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.instruction-steps {
    display: grid;
    gap: 2rem;
}

.instruction-step {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.instruction-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.instruction-step p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.instruction-step ul, .instruction-step ol {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.instruction-step li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.betting-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.betting-tip {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.betting-tip h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.betting-tip p {
    color: var(--text-gray);
    line-height: 1.6;
}

.bonus-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.bonus-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.bonus-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.beginner-tips {
    padding: 80px 0;
    background: var(--darker-bg);
}

.common-mistakes {
    padding: 80px 0;
    background: var(--dark-bg);
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mistake-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: var(--transition);
}

.mistake-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.mistake-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mistake-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.mistake-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* History Specific Styles */
.timeline {
    padding: 80px 0;
    background: var(--darker-bg);
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

.evolution-gaming {
    padding: 80px 0;
    background: var(--dark-bg);
}

.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.company-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.company-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.company-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.achievements-list {
    list-style: none;
    margin-bottom: 2rem;
}

.achievements-list li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.awards-grid {
    display: grid;
    gap: 1rem;
}

.award-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.award-year {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.award-name {
    color: var(--text-light);
    font-weight: 500;
}

.game-development {
    padding: 80px 0;
    background: var(--darker-bg);
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.development-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.development-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.development-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.development-steps {
    display: grid;
    gap: 1.5rem;
}

.dev-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.dev-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.dev-step p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.technical-innovation {
    padding: 80px 0;
    background: var(--dark-bg);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.innovation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.innovation-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.innovation-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.impact-success {
    padding: 80px 0;
    background: var(--darker-bg);
}

.impact-content {
    display: grid;
    gap: 3rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-stats .stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: var(--transition);
}

.impact-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.success-factors h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.factor-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.factor-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.factor-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.future {
    padding: 80px 0;
    background: var(--dark-bg);
}

.future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.future-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.future-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.future-plans {
    list-style: none;
}

.future-plans li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.future-plans li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ Specific Styles */
.faq-search {
    padding: 40px 0;
    background: var(--darker-bg);
}

.search-box {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-light);
}

.search-input::placeholder {
    color: var(--text-gray);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.faq-categories {
    padding: 80px 0;
    background: var(--dark-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.category-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.faq-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.faq-section:nth-child(even) {
    background: var(--dark-bg);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-support {
    padding: 80px 0;
    background: var(--darker-bg);
    text-align: center;
}

.support-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.support-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews Specific Styles */
.overall-rating {
    padding: 80px 0;
    background: var(--darker-bg);
}

.rating-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
}

.rating-score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.score-stars {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.score-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.rating-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.rating-stats .stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.rating-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.rating-stats .stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.featured-reviews {
    padding: 80px 0;
    background: var(--dark-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.review-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.review-card.featured::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.reviewer-location {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.review-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.review-date {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.review-casino {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.recent-reviews {
    padding: 80px 0;
    background: var(--darker-bg);
}

.reviews-list {
    display: grid;
    gap: 1.5rem;
}

.review-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.review-item:hover {
    border-color: var(--primary-color);
}

.review-categories {
    padding: 80px 0;
    background: var(--dark-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-review {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
}

.category-review:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.category-review h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.category-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.rating-score {
    color: var(--primary-color);
    font-weight: 600;
}

.category-review p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.big-wins {
    padding: 80px 0;
    background: var(--darker-bg);
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.win-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: var(--transition);
}

.win-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.win-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.win-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.win-details p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.win-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.write-review {
    padding: 80px 0;
    background: var(--dark-bg);
    text-align: center;
}

.review-form p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bonuses Specific Styles */
.top-bonuses {
    padding: 80px 0;
    background: var(--darker-bg);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.bonus-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-light);
}

.bonus-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.casino-logo .logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.bonus-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.bonus-description {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bonus-details {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-light);
    font-weight: 600;
}

.bonus-actions {
    display: flex;
    gap: 1rem;
}

.bonus-actions .btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.promo-codes {
    padding: 80px 0;
    background: var(--dark-bg);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.promo-code {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.promo-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.promo-details p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promo-conditions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.promo-conditions span {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    text-align: center;
}

.copy-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.bonus-types {
    padding: 80px 0;
    background: var(--darker-bg);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.type-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.type-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.type-card ul {
    list-style: none;
    text-align: left;
}

.type-card li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.type-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.wagering-info {
    padding: 80px 0;
    background: var(--dark-bg);
}

.wagering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.wagering-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.wagering-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.wagering-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.calculation-example {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.calc-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.calc-number {
    background: var(--gradient-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.calc-text {
    color: var(--text-light);
    font-weight: 500;
}

.wagering-tips h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.wagering-tips ul {
    list-style: none;
}

.wagering-tips li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.wagering-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.bonus-tips {
    padding: 80px 0;
    background: var(--darker-bg);
}

.bonus-calendar {
    padding: 80px 0;
    background: var(--dark-bg);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.calendar-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.calendar-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--primary-color);
}

.calendar-date {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.calendar-bonus h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.calendar-bonus p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Language Switcher Styles */
.language-switcher {
    margin-left: 2rem;
    position: relative;
    perspective: 1000px;
}

.lang-toggle {
    position: relative;
    display: inline-block;
    width: 130px;
    height: 45px;
    transform-style: preserve-3d;
}

.lang-checkbox {
    display: none;
}

.lang-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 107, 53, 0.2) 50%, 
        rgba(247, 147, 30, 0.2) 100%);
    border-radius: 30px;
    padding: 6px 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid rgba(255, 107, 53, 0.7);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(255, 107, 53, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transform: translateZ(0);
}

.lang-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 30px;
    transform: scale(0.8);
}

.lang-label::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color),
        var(--primary-color));
    border-radius: 32px;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
}

.lang-label:hover {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.4) 0%, 
        rgba(247, 147, 30, 0.35) 50%, 
        rgba(255, 210, 63, 0.3) 100%);
    border-color: var(--primary-color);
    border-width: 4px;
    transform: translateY(-4px) rotateX(5deg) scale(1.05);
    box-shadow: 
        0 15px 50px rgba(255, 107, 53, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.lang-label:hover::before {
    opacity: 0.15;
    transform: scale(1);
}

.lang-label:hover::after {
    opacity: 0.4;
}

.lang-text {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.lang-text:first-child {
    margin-right: 8px;
}

.lang-text:last-child {
    margin-left: 8px;
}

.lang-slider {
    position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, 
        #ff6b35 0%, 
        #f7931e 50%, 
        #ffd23f 100%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.lang-slider::before {
    content: '🌐';
    font-size: 18px;
    transition: all 0.4s ease;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-slider::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 70%);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.lang-checkbox:checked + .lang-label .lang-slider {
    transform: translateY(-50%) translateX(84px) scale(1.1);
    background: linear-gradient(135deg, 
        #f7931e 0%, 
        #ffd23f 50%, 
        #ff6b35 100%);
    box-shadow: 
        0 10px 30px rgba(247, 147, 30, 0.8),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(247, 147, 30, 0.5),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    border-width: 3px;
}

.lang-checkbox:checked + .lang-label .lang-slider::before {
    content: '🇧🇩';
    font-size: 20px;
    transform: scale(1.2);
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5))
        drop-shadow(0 0 10px rgba(255, 210, 63, 0.4));
}

.lang-checkbox:checked + .lang-label .lang-slider::after {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.lang-checkbox:checked + .lang-label {
    background: linear-gradient(135deg, 
        rgba(247, 147, 30, 0.4) 0%, 
        rgba(255, 210, 63, 0.35) 50%, 
        rgba(255, 107, 53, 0.3) 100%);
    border-color: var(--secondary-color);
    border-width: 4px;
    transform: translateY(-3px) rotateX(-2deg) scale(1.02);
    box-shadow: 
        0 12px 45px rgba(247, 147, 30, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(247, 147, 30, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.lang-checkbox:checked + .lang-label .lang-text:first-child {
    opacity: 0.6;
    transform: scale(0.9);
}

.lang-checkbox:checked + .lang-label .lang-text:last-child {
    opacity: 1;
    transform: scale(1.1);
    color: var(--accent-color);
}

.lang-checkbox:not(:checked) + .lang-label .lang-text:first-child {
    opacity: 1;
    transform: scale(1.1);
    color: var(--primary-color);
}

.lang-checkbox:not(:checked) + .lang-label .lang-text:last-child {
    opacity: 0.6;
    transform: scale(0.9);
}

/* Loading animation */
.lang-label {
    animation: slideInFromRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) rotateY(15deg);
    }
    50% {
        opacity: 0.7;
        transform: translateX(10px) rotateY(5deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

/* Pulsation effect when changing language */
.lang-checkbox:checked + .lang-label .lang-slider {
    animation: pulse 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes pulse {
    0% {
        transform: translateY(-50%) translateX(82px) scale(1.05);
    }
    25% {
        transform: translateY(-50%) translateX(82px) scale(1.3) rotateZ(5deg);
    }
    50% {
        transform: translateY(-50%) translateX(82px) scale(1.1) rotateZ(-3deg);
    }
    75% {
        transform: translateY(-50%) translateX(82px) scale(1.2) rotateZ(2deg);
    }
    100% {
        transform: translateY(-50%) translateX(82px) scale(1.05) rotateZ(0deg);
    }
}

/* New animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(-45deg);
    }
    50% {
        transform: translateX(100%) rotate(-45deg);
    }
    100% {
        transform: translateX(200%) rotate(-45deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

/* Additional animations */
.lang-toggle.switching .lang-label {
    animation: switchGlow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lang-toggle.clicked .lang-label {
    animation: clickBounce 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lang-toggle.loading .lang-label {
    animation: loadingPulse 1s ease-in-out infinite;
}

@keyframes switchGlow {
    0% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 4px 16px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(255, 107, 53, 0.6),
            0 8px 25px rgba(247, 147, 30, 0.4),
            0 0 30px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 4px 16px rgba(255, 107, 53, 0.1);
    }
}

@keyframes clickBounce {
    0% {
        transform: scale(1) rotateX(0deg);
    }
    25% {
        transform: scale(0.9) rotateX(5deg);
    }
    50% {
        transform: scale(1.05) rotateX(-2deg);
    }
    75% {
        transform: scale(0.98) rotateX(1deg);
    }
    100% {
        transform: scale(1) rotateX(0deg);
    }
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

/* Glow effect on hover */
.lang-label:hover .lang-slider {
    animation: float 2s ease-in-out infinite;
}

.lang-label:hover .lang-slider::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

/* Additional hover effects */
.lang-label:hover .lang-text {
    animation: textGlow 0.3s ease-out;
}

@keyframes textGlow {
    0% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 107, 53, 0.5);
    }
    100% {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
}

/* Particle effect */
.lang-label::before {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, rgba(247, 147, 30, 0.1) 1px, transparent 1px);
    background-size: 20px 20px, 15px 15px, 25px 25px;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%;
    }
}

/* Additional animations for new effects */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    }
}

/* Enhanced animations for text */
.lang-text {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lang-checkbox:checked + .lang-label .lang-text:first-child {
    opacity: 0.4;
    transform: scale(0.8) translateX(-8px);
    filter: blur(1px);
    color: rgba(255, 255, 255, 0.6);
}

.lang-checkbox:checked + .lang-label .lang-text:last-child {
    opacity: 1;
    transform: scale(1.2) translateX(8px);
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 210, 63, 0.8),
        0 0 25px rgba(255, 210, 63, 0.4);
}

.lang-checkbox:not(:checked) + .lang-label .lang-text:first-child {
    opacity: 1;
    transform: scale(1.2) translateX(8px);
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(255, 107, 53, 0.8),
        0 0 25px rgba(255, 107, 53, 0.4);
}

.lang-checkbox:not(:checked) + .lang-label .lang-text:last-child {
    opacity: 0.4;
    transform: scale(0.8) translateX(-8px);
    filter: blur(1px);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design for Language Switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }
    
    .lang-toggle {
        width: 120px;
        height: 42px;
    }
    
    .lang-label {
        padding: 5px 10px;
        border-radius: 28px;
        border-width: 3px;
    }
    
    .lang-text {
        font-size: 13px;
        letter-spacing: 0.6px;
        font-weight: 800;
    }
    
    .lang-text:first-child {
        margin-right: 6px;
    }
    
    .lang-text:last-child {
        margin-left: 6px;
    }
    
    .lang-slider {
        width: 32px;
        height: 32px;
        left: 5px;
    }
    
    .lang-slider::before {
        font-size: 16px;
    }
    
    .lang-checkbox:checked + .lang-label .lang-slider {
        transform: translateY(-50%) translateX(75px) scale(1.1);
    }
    
    .lang-checkbox:checked + .lang-label .lang-slider::before {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .language-switcher {
        margin-left: 0.5rem;
    }
    
    .lang-toggle {
        width: 110px;
        height: 38px;
    }
    
    .lang-label {
        padding: 4px 8px;
        border-radius: 25px;
        border-width: 3px;
    }
    
    .lang-text {
        font-size: 12px;
        letter-spacing: 0.5px;
        font-weight: 800;
    }
    
    .lang-text:first-child {
        margin-right: 5px;
    }
    
    .lang-text:last-child {
        margin-left: 5px;
    }
    
    .lang-slider {
        width: 30px;
        height: 30px;
        left: 4px;
    }
    
    .lang-slider::before {
        font-size: 15px;
    }
    
    .lang-checkbox:checked + .lang-label .lang-slider {
        transform: translateY(-50%) translateX(70px) scale(1.1);
    }
    
    .lang-checkbox:checked + .lang-label .lang-slider::before {
        font-size: 17px;
    }
}
