/* 1111Bet Casino Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #212121;
}

/* Header Styles */
.header {
    background-color: #191919;
    border-bottom: 1px solid #ffeb00;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #ffeb00;
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.primary-btn {
    background: linear-gradient(180deg, #fffad5, #ccaf11 48%, #ffeb00);
    color: #000;
    border: 1px solid #ff0;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 235, 0, 0.4);
}

.secondary-btn {
    background: linear-gradient(180deg, #d8d8d8, #5a5a5a 51%, #c3c3c3);
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #191919;
    border-top: 1px solid #ffeb00;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    gap: 1rem;
}

.mobile-menu .header-buttons {
    flex-direction: column;
    margin-top: 1rem;
    gap: 0.5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #212121, #2a2a2a);
    padding: 3rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffeb00;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons Section */
.text-center.mt-2 {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Swiper Styles */
.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 2rem auto;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #ffeb00 !important;
    background: rgba(255, 255, 255, 0.5) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1) !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: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    border-radius: 50% !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
    background: #ffeb00 !important;
}


.swiper-button-next,
.swiper-button-prev {
    opacity: 0.7 !important;
    transition: opacity 0.3s ease;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    color: #ffeb00;
    margin-bottom: 2rem;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-card {
    background: #2a2a2a;
    padding: 2rem;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-center p {
    margin-bottom: 20px;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 235, 0, 0.2);
}

.content-card h3 {
    color: #ffeb00;
    margin-bottom: 1rem;
}

.content-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
}

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

.data-table th {
    background: #ffeb00;
    color: #000;
    font-weight: bold;
}

.data-table tr:hover {
    background: #333;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 2rem auto;
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffeb00;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffeb00;
    box-shadow: 0 0 5px rgba(255, 235, 0, 0.3);
}

/* FAQ Section */
.faq-item {
    background: #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: #333;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #444;
}

.faq-answer {
    padding: 1rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: #191919;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #ffeb00;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffeb00;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffeb00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    color: #ccc;
}

@media (max-width: 1280px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .slider-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    
    .logo {
        height: 40px;
    }


    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons,
    .text-center.mt-2 {
        flex-direction: column;
        align-items: center;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .data-table {
        font-size: 0.9rem;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.5rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}


@media (max-width: 480px) {


    .header-container {
        flex-wrap: wrap;
    }

    .header-buttons {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        order: 3;
    }

    .header-buttons a {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-yellow {
    color: #ffeb00;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* External Links */
.external-link {
    color: #ffeb00;
    text-decoration: none;
}

.external-link:hover {
    text-decoration: underline;
}
