@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #1a365d; /* Deep blue for text on light */
    background: #f7fafc; /* Light blue-gray background */
}

/* Header styles */
.main-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); /* Deep blue gradient */
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Top Navigation */
.top-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-icon:hover::before {
    left: 100%;
}

.nav-icon:hover {
    background: rgba(249, 115, 22, 0.8);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.nav-icon:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-icon:hover svg {
    transform: scale(1.1);
}

/* Active state for current page */
.nav-icon.active {
    background: rgba(249, 115, 22, 0.6);
    color: #fff;
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.login-btn {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Bright orange gradient */
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.login-btn:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

/* Hero section */
.hero {
    background-image: url('img/banner-desk.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    min-height: 350px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
    border-radius: 1.5rem;
    margin-top: 80px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3) 0%, rgba(30, 58, 138, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    color: #1a365d;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    padding: 2rem 2.5rem;
    border-radius: 1rem;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
    border: 2px solid rgba(249, 115, 22, 0.2);
    position: relative;
    z-index: 2;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a365d;
    line-height: 1.2;
}

.cta-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); /* Bright orange gradient */
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 2rem;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
}

/* Content section */
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.content h2 {
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.content h3 {
    color: #1e40af;
    margin: 2rem 0 1rem;
}

.content p {
    margin-bottom: 1rem;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    max-width: 100%;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 0.5rem;
    background: #fff;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 58, 138, 0.9);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button:hover {
    background: #f97316;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 1rem;
}

.carousel-button.next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #f97316;
}

@media (max-width: 768px) {
    .carousel-container {
        max-width: 100%;
        aspect-ratio: 4/3;
    }
    
    .carousel-button {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .carousel-button.prev {
        left: 0.5rem;
    }
    
    .carousel-button.next {
        right: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .carousel-container {
        max-width: 90%;
    }
}

@media (min-width: 1025px) {
    .carousel-container {
        max-width: 800px;
    }
}

/* Content Navigation */
.content-nav {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.nav-toggle {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(249, 115, 22, 0.1);
}

.toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.nav-content {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.nav-content.active {
    max-height: 1000px;
}

.content-nav a {
    color: #1e40af;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.7);
}

.content-nav a:hover {
    background: #f97316;
    color: #fff;
    transform: translateX(5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.6);
}

@media (max-width: 768px) {
    .content-nav {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .nav-content {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
}

.content ul {
    padding-bottom: 16px;
}

.content ol {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content li {
    margin-left: 1rem;
    padding-left: 0.5rem;
}

/* Table styles */
.games-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
}

.games-table th,
.games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #cbd5e1;
}

.games-table th {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
}

.games-table tr:hover {
    background-color: rgba(249, 115, 22, 0.05);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    border-radius: 1rem 1rem 0 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .games-table {
        display: block;
        overflow-x: auto;
    }
    .content {
        border-radius: 0.5rem;
    }
    footer {
        border-radius: 0.5rem 0.5rem 0 0;
    }
}



.hero-content {
    color: #1a365d;
}

/* FAQ Section */
.faq-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.faq-section h2 {
    color: #1e3a8a;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    color: #1e40af;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #f97316;
}

.faq-answer {
    color: #1a365d;
    line-height: 1.6;
    padding-left: 1rem;
    border-left: 3px solid #f97316;
    margin: 0;  /* Reset default paragraph margin */
}

@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 0.5rem;
    }
    
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
}

/* Bonus Block */
.bonus-block {
    background-image: url('img/banner-desk.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 1rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
    border: 2px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(30, 58, 138, 0.2) 100%);
    z-index: 1;
}

.bonus-block .hero-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bonus-block h1 {
    color: #1a365d;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bonus-block p {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}



/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 10px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #bbb;
}

.enlargeable {
    cursor: pointer;
    transition: transform 0.2s;
}

.enlargeable:hover {
    transform: scale(1.05);
}

/* Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slot-item {
    background: #fff;
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.1);
    transition: transform 0.3s ease;
}

.slot-item:hover {
    transform: translateY(-5px);
}

.slot-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.slot-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

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

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    font-size: 0.9rem;
}

.slot-item:hover .play-button {
    opacity: 1;
}

.play-button:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translate(-50%, -50%) scale(1.05);
}

.slot-item h4 {
    padding: 0.8rem;
    margin: 0;
    text-align: center;
    color: #1a365d;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .play-button {
        opacity: 1;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
} 

/* Responsive design for banners */
@media (max-width: 768px) {
    .hero {
        background-image: url('img/banner-mob.webp');
        height: 50vh;
        min-height: 300px;
        max-height: 450px;
        border-radius: 0.5rem;
        margin-top: 70px;
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .bonus-block {
        background-image: url('img/banner-mob.webp');
        padding: 2rem 1rem;
        margin: 1rem;
        border-radius: 0.5rem;
    }
    
    .bonus-block h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .bonus-block p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    /* Mobile navigation adjustments */
    .main-header {
        padding: 0.75rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .top-nav {
        gap: 0.75rem;
    }
    
    .nav-icon {
        width: 32px;
        height: 32px;
    }
    
    .nav-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .login-btn {
        padding: 0.4rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 55vh;
        min-height: 400px;
        max-height: 550px;
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 2rem;
        max-width: 85%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    .bonus-block {
        padding: 2.5rem 1.5rem;
    }
    
    .bonus-block h1 {
        font-size: 2rem;
        line-height: 1.25;
    }
    
    /* Tablet navigation adjustments */
    .top-nav {
        gap: 1.25rem;
    }
    
    .nav-icon {
        width: 38px;
        height: 38px;
    }
}

@media (min-width: 1025px) {
    .hero {
        height: 60vh;
        min-height: 450px;
        max-height: 600px;
        padding: 0 2rem;
    }
    
    .hero-content {
        padding: 2.5rem 3rem;
        max-width: 80%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .bonus-block {
        padding: 3rem 2rem;
    }
    
    .bonus-block h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .main-header {
        padding: 0.5rem;
    }
    
    .logo img {
        height: 32px;
    }
    
    .top-nav {
        gap: 0.5rem;
    }
    
    .nav-icon {
        width: 28px;
        height: 28px;
    }
    
    .nav-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .login-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 70vh;
        min-height: 250px;
        max-height: 400px;
    }
    
    .hero-content {
        padding: 1rem 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .cta-button {
        margin-top: 1rem;
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url('img/banner-desk.webp');
    }
    
    .bonus-block {
        background-image: url('img/banner-desk.webp');
    }
    
    @media (max-width: 768px) {
        .hero {
            background-image: url('img/banner-mob.webp');
        }
        
        .bonus-block {
            background-image: url('img/banner-mob.webp');
        }
    }
} 

/* Medium mobile devices */
@media (max-width: 600px) and (min-width: 481px) {
    .main-header {
        padding: 0.6rem;
    }
    
    .logo img {
        height: 36px;
    }
    
    .top-nav {
        gap: 0.6rem;
    }
    
    .nav-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-icon svg {
        width: 15px;
        height: 15px;
    }
    
    .login-btn {
        padding: 0.35rem 1rem;
        font-size: 0.85rem;
    }
} 