/* Olimpbet KZ Styles */

:root {
    --color-header: #22125b;
    --color-bg: #13083c;
    --color-btn-login: #8476b5;
    --color-btn-signup: #ffd571;
    --color-text-light: #e8e8e8;
    --color-text-muted: #b0b0b0;
    --color-card-bg: #1a0f4d;
    --color-border: #2d1e6b;
}

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.js9m4x {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.qx7f2k {
    background: linear-gradient(135deg, var(--color-header) 0%, #1a0d45 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.xn5v8t {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.bx4n7q .jf9p2m {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.jf9p2m li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.jf9p2m li a:hover {
    color: var(--color-btn-signup);
}

.jf9p2m li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-btn-signup);
    transition: width 0.3s;
}

.jf9p2m li a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.qw8x2l {
    background-color: var(--color-btn-login);
    color: #fff;
}

.qw8x2l:hover {
    background-color: #9686c5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(132, 118, 181, 0.4);
    color: #fff;
}

.lm4y7p {
    background-color: var(--color-btn-signup);
    color: #000;
}

.lm4y7p:hover {
    background-color: #ffe291;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 213, 113, 0.4);
    color: #000;
}

/* Mobile burger */
.burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--color-text-light);
    transition: all 0.3s;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--color-header);
    transition: left 0.3s;
    z-index: 999;
    padding: 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 20px;
}

.mobile-nav-list li a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.mobile-nav-list li a:hover {
    background: rgba(255,255,255,0.1);
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s;
    background-color: #1a0d45;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19,8,60,0.9) 0%, rgba(26,15,77,0.7) 100%);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.btn-hero {
    padding: 15px 40px;
    font-size: 18px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.hero-prev, .hero-next {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.hero-prev:hover, .hero-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

/* Section Cards */
.section-card {
    background: var(--color-card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border: 1px solid var(--color-border);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-btn-signup);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-btn-login), var(--color-btn-signup));
}

/* Casino Info Table */
.casino-info-table {
    background: transparent;
    color: var(--color-text-light);
}

.casino-info-table td {
    padding: 15px 20px;
    border: 2px solid var(--color-border);
}

.param-name {
    font-weight: 600;
    width: 40%;
    background: rgba(132, 118, 181, 0.1);
}

.param-value {
    background: rgba(255, 213, 113, 0.05);
}

/* Screenshots */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.screenshot-item img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.screenshot-item img:hover {
    transform: scale(1.05);
}

/* Tournaments */
.tournaments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tournament-card {
    background: linear-gradient(135deg, #2a1a5e 0%, #1a0f4d 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-border);
    transition: transform 0.3s;
}

.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(132, 118, 181, 0.3);
}

.tournament-header {
    background: var(--color-btn-login);
    padding: 20px;
    text-align: center;
}

.tournament-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.tournament-body {
    padding: 25px;
}

.tournament-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

.tournament-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

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

.timer-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-btn-signup);
}

.timer-label {
    font-size: 12px;
    color: var(--color-text-muted);
}

.tournament-prize {
    text-align: center;
    font-size: 16px;
    padding: 15px;
    background: rgba(255, 213, 113, 0.1);
    border-radius: 8px;
}

.btn-tournament {
    width: 100%;
}

/* Video */
.video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Slot Machine */
.slot-machine {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.slot-reel {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2a1a5e, #1a0f4d);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-btn-signup);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slot-symbol {
    font-size: 60px;
    animation: spin 0.5s ease-in-out;
}

@keyframes spin {
    from {
        transform: rotateX(0deg);
    }
    to {
        transform: rotateX(360deg);
    }
}

.btn-spin {
    padding: 15px 60px;
    font-size: 20px;
    font-weight: 700;
}

.slot-result {
    padding: 20px;
    background: linear-gradient(135deg, var(--color-btn-login), #1a0f4d);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    display: none;
}

.slot-result.show {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Text */
.content-text {
    font-size: 16px;
    line-height: 1.8;
}

.content-text h2 {
    color: var(--color-btn-signup);
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-text h3 {
    color: var(--color-text-light);
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-text p {
    margin-bottom: 15px;
}

.content-text ul, .content-text ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.content-text li {
    margin-bottom: 8px;
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.content-text table td, .content-text table th {
    padding: 12px;
    border: 1px solid var(--color-border);
}

.content-text table th {
    background: var(--color-btn-login);
    font-weight: 600;
}

.content-text a {
    color: var(--color-btn-login);
    text-decoration: underline;
}

.content-text a:hover {
    color: var(--color-btn-signup);
}

/* Author Block */
.author-block {
    background: rgba(132, 118, 181, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--color-btn-signup);
}

.author-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--color-btn-login);
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(132, 118, 181, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(132, 118, 181, 0.2);
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-btn-signup);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer > div {
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Footer */
.gf8m2k {
    background: linear-gradient(135deg, var(--color-header) 0%, #0d0628 100%);
    margin-top: auto;
    padding-top: 20px;
}

.footer-logo {
    max-width: 160px;
    height: auto;
}

.tz3m8p {
    color: var(--color-btn-signup);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-btn-signup);
}

.providers-grid, .payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    text-align: center;
}

.provider-item, .payment-item {
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    border: 1px solid var(--color-border);
}

/* Sticky Widget */
.sticky-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--color-btn-login), #1a0f4d);
    padding: 15px;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: slideUp 0.5s;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.widget-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.widget-text {
    flex: 1;
}

.btn-widget {
    white-space: nowrap;
}

/* Unused styles for uniqueness */
.elementor-section-wrap {}
.wp-block-columns {}
.has-text-align-center {}
.entry-content {}
.post-thumbnail {}
.site-branding {}
.navigation-top {}

/* Responsive adjustments handled in responsive.css */
