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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #f4f4f4;
    line-height: 1.6;
    padding-top: 80px;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid #ff6b35;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #f4f4f4;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff6b35;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-btn {
    padding: 12px 30px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-btn-play {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: 2px solid #1e7e34;
}

.nav-btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
}

.nav-btn-enver {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid #5568d3;
}

.nav-btn-enver:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5568d3 0%, #6a3d91 100%);
}

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

header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

h1 {
    font-size: clamp(2rem, 5vw, 3em);
    margin: 0 0 10px 0;
    padding: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: 700;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    contain: layout style;
    will-change: transform;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
}

.game-demo {
    background: #1e1e2e;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.game-demo-content {
    flex: 1;
    min-width: 0;
}

.game-sidebar {
    width: 350px;
    flex-shrink: 0;
    background: #252540;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
}

.game-sidebar h3 {
    color: #ff6b35;
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.game-sidebar table {
    width: 100%;
    margin: 0;
    background: transparent;
}

.game-sidebar th,
.game-sidebar td {
    padding: 10px 8px;
    font-size: 0.9em;
    border-bottom: 1px solid #3a3a5c;
}

.game-sidebar th {
    background: transparent;
    color: #f7931e;
    font-weight: 600;
    width: 45%;
}

.game-sidebar td {
    color: #f4f4f4;
}

.game-sidebar-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.game-sidebar .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.95em;
    text-align: center;
}

.demo-header {
    text-align: center;
    margin-bottom: 20px;
}

.demo-header h2 {
    font-size: 2em;
    color: #ff6b35;
    margin-bottom: 15px;
}

.iframe-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #000;
    contain: layout style paint;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.game-loading-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    z-index: 100;
    width: auto;
    height: auto;
    pointer-events: auto;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.demo-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-demo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-play {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

.btn-play-green {
    background: #28a745 !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    color: white !important;
    padding: 20px 50px !important;
    font-size: 1.3em !important;
    min-width: 180px;
    min-height: 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 101;
    cursor: pointer;
    border: 2px solid #1e7e34 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-weight: bold !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-play-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #218838 0%, #1ea080 100%) !important;
}

.btn-demo-yellow {
    background: #ffc107 !important;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%) !important;
    color: #1a1a2e !important;
    padding: 20px 50px !important;
    font-size: 1.3em !important;
    font-weight: bold !important;
    min-width: 180px;
    min-height: 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 101;
    cursor: pointer;
    border: 2px solid #e0a800 !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.3);
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.btn-demo-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #e0a800 0%, #e68900 100%) !important;
}

section {
    background: #1e1e2e;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    overflow-x: auto;
}

.banner-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.banner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h2 {
    color: #ff6b35;
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

h3 {
    color: #f7931e;
    font-size: 1.5em;
    margin: 25px 0 15px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #252540;
    border-radius: 10px;
    overflow: hidden;
    table-layout: fixed;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #3a3a5c;
}

th {
    background: #ff6b35;
    color: white;
    font-weight: bold;
}

tr:hover {
    background: #2a2a4a;
}

.comparator-container {
    margin: 30px 0;
    padding: 20px;
    background: #252540;
    border-radius: 10px;
}

ul, ol {
    margin-left: 30px;
    margin-top: 15px;
}

li {
    margin: 10px 0;
}

.highlight {
    background: #ff6b35;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.casino-table {
    margin: 20px 0;
}

.casino-table .btn-play-now {
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.casino-table .btn-play-now:hover {
    background: #f7931e;
    transform: scale(1.05);
}

.emoji {
    font-size: 1.2em;
}

.review {
    background: #252540;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #ff6b35;
}

.review-author {
    font-weight: bold;
    color: #f7931e;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
    font-size: 1.2em;
}

.comparison-table {
    margin: 30px 0;
}

.faq-item {
    background: #252540;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

.faq-question {
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
    background: #1a1a2e;
    border-radius: 15px;
}

@media (max-width: 1024px) {
    .game-demo {
        flex-direction: column;
    }
    
    .game-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
        flex-wrap: wrap;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2em;
    }
    
    .nav-buttons {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    
    h1 {
        font-size: clamp(1.75rem, 6vw, 2em);
        line-height: 1.3;
    }
    
    .iframe-container {
        min-height: 400px;
        height: 400px;
    }
    
    .game-loading-buttons {
        flex-direction: column;
        gap: 15px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
    }
    
    .btn-play-green,
    .btn-demo-yellow {
        width: 100%;
        min-width: auto;
        padding: 18px 30px;
        font-size: 1.1em;
        min-height: 55px;
    }
    
    .demo-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    section {
        padding: 20px;
    }
    
    table {
        font-size: 0.9em;
    }
    
    th, td {
        padding: 10px 8px;
    }
    
    .banner-image {
        margin-bottom: 20px;
        border-radius: 8px;
        width: 100%;
        overflow: hidden;
    }
    
    .banner-image img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
        display: block;
    }
}