/* 0777bet Casino - Main Styles */

:root {
    --primary-color: #604898;
    --secondary-color: #7862ab;
    --bg-color: #6B53A2;
    --accent-color: #fff;
    --border-color: #7862ab;
    --text-color: #333;
    --light-text: #666;
    --section-bg: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: var(--bg-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem;
    margin: 2rem auto;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Content Sections */
.content-section {
    margin: 3rem 0;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.content-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 2rem 0 1rem 0;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.content-section ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section a:not(.btn) {
    color: #fff;
    text-decoration: underline;
}

.content-section a:not(.btn):hover {
    color: var(--secondary-color);
}

/* Images */
.content-image {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
}

/* Cards */
.card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.card p {
    color: rgba(255, 255, 255, 0.9);
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

table th {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
}

table tr:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-question {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--accent-color);
    padding: 3rem 1rem 1rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--accent-color);
    opacity: 0.9;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.legal-notice {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Burger Menu Icon */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

/* Image border */
.content-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Order list */
.content-section ol {
    margin-left: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.content-section ol li {
    margin-bottom: 0.5rem;
}

/* Responsive Utilities */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Strong and bold text */
strong, b {
    color: #fff;
}

/* Slider Section */
.slider-section {
    width: 100%;
    max-width: 1200px;
    margin: 4rem auto;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 300px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
}

.swiper-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.swiper-slide picture img {
    width: 100%;
    height: 100%;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background-color: rgba(0, 0, 0, 0.3) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background-color: #fff !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: var(--accent-color) !important;
}

@media (max-width: 1024px) {
    .swiper {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .swiper {
        height: 200px;
        min-height: 200px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 1430px) {

    .burger-menu {
        display: flex;
    }

    
    .nav-menu {
        width: 100%;
        position: absolute;
        display: none;
        top: 100%;
        background-color: var(--primary-color);
        left: 0;
        align-items: center;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    .nav-menu.active {
        display: flex;
    }
}

@media (max-width: 768px) {

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-group .btn {
        width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 0.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }
}


@media (max-width: 480px) {
    .button-group {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 15px;
    }


    .swiper{
        min-height: 130px;
        height: 130px;
    }

    .button-group .btn {
        width: 100%;
    }

    .header-container {
        flex-wrap: wrap;
    }
}
