/* Bee999 Casino - Main Styles */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #FFDD3F;
}

h2 {
    font-size: 2rem;
    color: #FFDD3F;
}

h3 {
    font-size: 1.5rem;
    color: #FFDD3F;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #fff;
}

a {
    color: #FFDD3F;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #B54010;
}

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

/* Header Styles */
.header {
    background-color: #0C4C4D;
    border-bottom: 1px solid #176E52;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    max-width: unset;
}

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

.logo {
    height: 30px;
}

.logo img {
    height: 100%;
    width: auto;
}

/* Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav a:hover {
    background-color: #176E52;
    color: #FFDD3F;
}

.nav a.active {
    background-color: #FFDD3F;
    color: #0C4C4D;
    font-weight: 600;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(180deg, rgba(255, 227, 57, 1) 40%, rgba(254, 183, 47, 1) 100%);
    color: #B54010;
    box-shadow: 0 4px 15px rgba(255, 221, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 221, 63, 0.4);
    color: #B54010;
}

.btn-secondary {
    border: 1px solid #FFDD3F;
    color: #FFDD3F;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #FFDD3F;
    color: #0C4C4D;
    transform: translateY(-2px);
}

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

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #0C4C4D;
    border-top: 1px solid #176E52;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

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

.mobile-menu .nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
}

.mobile-menu .nav a {
    display: block;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #176E52;
}

.mobile-menu .nav a:last-child {
    border-bottom: none;
}

.mobile-menu .nav a.active {
    background-color: #FFDD3F;
    color: #0C4C4D;
    font-weight: 600;
}

.content-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Content */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0C4C4D 0%, #176E52 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    color: #FFDD3F;
    margin-bottom: 1.5rem;
}

.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;
}

/* Content Sections */
.section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #FFDD3F;
}

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

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

.card {
    background: linear-gradient(135deg, #176E52 0%, #0C4C4D 100%);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFDD3F;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 221, 63, 0.3);
    border-color: #B54010;
}

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

.card p {
    color: #fff;
}

.card ul {
    color: #fff;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #176E52 0%, #0C4C4D 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid #FFDD3F;
}

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

.table th {
    background-color: #0C4C4D;
    color: #FFDD3F;
    font-weight: 600;
}

.table tr:hover {
    background-color: rgba(255, 221, 63, 0.1);
}

.table a {
    color: #FFDD3F;
}

.table a:hover {
    color: #B54010;
}

/* Lists */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #FFDD3F;
}

.feature-list li {
    color: #fff;
}

/* Footer */
.footer {
    background-color: #0C4C4D;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #FFDD3F;
}

.footer-bottom {
    border-top: 1px solid #176E52;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

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

@media (max-width: 768px) {
    
    .header-buttons {
        gap: 0.5rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {


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

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

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

    .banner-swiper {
        height: 140px !important;
    }

    .container {
        padding: 0 10px;
    }
    
    .header-content {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-height: 44px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 2rem 0;
}

/* Content Images */
.content-image {
    margin: 2rem 0;
    text-align: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* FAQ Styles */
.faq {
    margin: 2rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #176E52 0%, #0C4C4D 100%);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border: 1px solid #FFDD3F;
}

.faq-question {
    padding: 1rem;
    background-color: #176E52;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    color: #FFDD3F;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #0C4C4D;
}

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

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

/* CTA Buttons in Content */
.content-cta {
    text-align: center;
    margin: 2rem 0;
}

.content-cta .btn {
    margin: 0.5rem;
}

/* Slider Styles */
.slider-section {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
}

.banner-swiper {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.banner-swiper .swiper-slide img:hover {
    transform: none;
    box-shadow: none;
}

/* Swiper Navigation Buttons */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #FFDD3F;
    background-color: rgba(12, 76, 77, 0.8);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background-color: rgba(255, 221, 63, 0.9);
    color: #0C4C4D;
    transform: scale(1.1);
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 900;
}

/* Swiper Pagination */
.banner-swiper .swiper-pagination {
    bottom: 10px;
}

.banner-swiper .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.banner-swiper .swiper-pagination-bullet-active {
    background-color: #FFDD3F;
    transform: scale(1.2);
}

/* Responsive Slider */
@media (min-width: 768px) {
    .banner-swiper {
        height: 300px;
    }
}

@media (min-width: 1024px) {
    .banner-swiper {
        height: 400px;
    }
}

@media (min-width: 1200px) {
    .banner-swiper {
        height: 500px;
    }
}