:root {
    --primary: #1a4d8f;
    --secondary: #e91e63;
    --accent: #00d4aa;
    --dark: #0d1b2a;
    --light: #ffffff;
    --gray: #f4f4f9;
    --gold: #ffb700;
    --success: #00ff88;
    --czech-red: #d7141a;
    --czech-blue: #11457e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    background-attachment: fixed;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s;
}

a:hover {
    opacity: 0.8;
    color: #33e0bd;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    background: rgba(13, 27, 42, 0.98);
    box-shadow: 0 5px 30px rgba(26, 77, 143, 0.3);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
}

.site-logo {
    background: rgba(255,255,255,0.1);
    padding: 8px;
    border-radius: 8px;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.site-title {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.3rem;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-buttons {
    display: flex;
    gap: 8px;
    z-index: 10000;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-czech {
    background: linear-gradient(45deg, var(--czech-red), var(--czech-blue));
    color: #fff;
    box-shadow: 0 4px 15px rgba(215, 20, 26, 0.4);
}

.main-navigation {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    margin-top: 8px;
}

.nav-container {
    position: relative;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.main-navigation a {
    display: block;
    padding: 10px 12px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--accent);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 8px;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 40px;
    text-align: center;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.hero-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
    font-weight: 700;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(45deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
    position: relative;
    margin-top: 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
    animation: pulse 2s infinite;
}

.breadcrumbs {
    padding: 80px 0 15px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.breadcrumbs a {
    color: var(--accent);
}

.breadcrumbs span {
    margin: 0 6px;
}

/* Content */
.content-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    border-radius: 2px;
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    margin: 25px 0 12px;
    color: #fff;
}

h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin: 20px 0 10px;
    color: var(--accent);
}

h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin: 18px 0 10px;
    color: #fff;
}

p {
    margin-bottom: 12px;
    font-size: 1rem;
}

ul, ol {
    margin: 12px 0 12px 18px;
}

li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.featured-image {
    margin: 25px 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.featured-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Live Preview */
.live-preview-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.live-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: center;
}

.live-preview-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--accent);
}

.live-stats {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.live-stat {
    background: rgba(0, 212, 170, 0.1);
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.live-stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

.live-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-preview-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
    background: linear-gradient(45deg, var(--primary), var(--dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 11px;
    z-index: 10;
    animation: pulse 2s infinite;
}

.live-play-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.live-play-btn:hover {
    transform: scale(1.1);
    background: white;
}

.live-play-btn svg {
    fill: var(--primary);
    margin-left: 5px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Grids */
.casino-grid,
.bonuses-grid,
.strategy-grid,
.tips-grid,
.steps-grid {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.casino-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.bonuses-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards */
.casino-card,
.bonus-card,
.strategy-card,
.tip-card,
.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.casino-card:hover,
.bonus-card:hover,
.strategy-card:hover,
.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.step-card {
    text-align: center;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 20px;
}

.step-card h3 {
    margin: 25px 0 15px;
    color: var(--accent);
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
}

.casino-card .top-choice {
    position: absolute;
    top: -8px;
    right: 16px;
    background: var(--czech-red);
    color: white;
    padding: 4px 12px;
    border-radius: 0 0 10px 10px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.2rem;
}

.rating-number {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

.casino-bonus {
    background: rgba(0, 212, 170, 0.1);
    padding: 16px;
    border-radius: 10px;
    margin: 16px 0;
    border-left: 3px solid var(--accent);
}

.casino-features {
    list-style: none;
    margin-left: 0;
}

.casino-features li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.casino-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 14px;
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.bonus-multiplier {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
}

.bonus-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Special elements */
.czech-features {
    background: linear-gradient(135deg, rgba(215, 20, 26, 0.1), rgba(17, 69, 126, 0.1));
    border: 1px solid rgba(215, 20, 26, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin: 25px 0;
}

.czech-features h3 {
    color: var(--czech-red);
    margin-top: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #b8134f 100%);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.warning-box h4 {
    color: #ffc107;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Tables */
.table-container,
.wheel-structure {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

th {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ */
.faq-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-answer {
    padding: 0 16px 16px;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-toggle {
    color: var(--accent);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.footer-widget-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
}

.footer-widget a:hover {
    color: var(--accent);
}

.footer-widget ul {
    list-style: none;
    margin-left: 0;
}

.footer-widget p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.responsible-gaming-logos {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.responsible-gaming-logos img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.responsible-gaming-logos img:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.responsible-gaming {
    background: rgba(225, 112, 85, 0.1);
    border: 1px solid rgba(225, 112, 85, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.responsible-gaming h4 {
    color: #e17055;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header-inner {
        flex-wrap: wrap;
    }
    
    .site-branding {
        margin-bottom: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .header-buttons {
        margin: 0 auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 12px;
        top: 12px;
    }
    
    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .live-preview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .live-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .casino-grid,
    .bonuses-grid,
    .strategy-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .content-card {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .content-card {
        padding: 16px 12px;
    }
    
    .live-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .live-stat {
        width: 100%;
        max-width: 180px;
    }
}