/* DKVIP Casino - Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Styles */
.header {
    background-color: #065C26;
    border-bottom: 1px solid #127C3A;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

@media (max-width: 1280px) {
    .jackpot-amount, .jackpot-currency {
        font-size: 3rem !important;
    }

    .jackpot-amount-container {
        margin-top: 70px !important;
    }
}

@media (max-width: 991px) {
    .jackpot-amount, .jackpot-currency {
        font-size: 2rem !important;
    }

    .jackpot-amount-container {
        margin-top: 50px !important;
    }
}

@media (max-width: 768px) {
    .jackpot-amount, .jackpot-currency {
        font-size: 1.5rem !important;
    }

    .jackpot-amount-container {
        margin-top: 40px !important;
    }
}

@media (max-width: 576px) {
    .jackpot-amount, .jackpot-currency {
        font-size: 1.2rem !important;
    }

    .jackpot-amount-container {
        margin-top: 30px !important;
    }

    .jackpot-counter {
        background-size: 100% 50% !important;
    }
}

.logo {
    height: 40px;
    transition: color 0.3s ease;
}

.logo img {
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #FEE001;
    background-color: rgba(254, 224, 1, 0.1);
}

.header-buttons {
    display: flex;
    gap: 15px;
}

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

.primary-btn {
    background-color: #FEE001;
    color: #065C26;
}

.primary-btn:hover {
    background-color: #e6c700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 224, 1, 0.3);
}

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

.secondary-btn:hover {
    background-color: #FEE001;
    color: #065C26;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FEE001;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #065C26;
    border-top: 1px solid #127C3A;
    padding: 20px;
}

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

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

.mobile-menu .header-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 140px);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0F6C31 0%, #065C26 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Swiper Styles */
.swiper-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 40px;
}

.swiper-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    border-radius: 10px;
    height: 400px;
    overflow: hidden;
}

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

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

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    z-index: 10;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #FEE001;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* Swiper Navigation */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: #FEE001 !important;
    background: rgba(255, 255, 255, 0.25) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-top: -25px !important;
    backdrop-filter: blur(10px) !important;
    transition: .2s ease-in-out;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Fix for Swiper overflow issues */
.swiper-wrapper {
    width: 100%;
    height: 100%;
}

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

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.2rem;
    color: #FEE001;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.content-card {
    background: #127C3A;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FEE001;
}

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

.content-card h3 {
    color: #FEE001;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.content-card p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tables */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.data-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    background: #065C26;
    border-radius: 10px;
    overflow: hidden;
}

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

.data-table th {
    background-color: #065C26;
    color: white;
    font-weight: 600;
}

.data-table tr:hover {
    background-color: #127C3A;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #127C3A;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #FEE001;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FEE001;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FEE001;
}

/* Footer */
.footer {
    background-color: #065C26;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-section h3 {
    color: #FEE001;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #f1f1f1;
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    border-top: 1px solid #127C3A;
    padding-top: 20px;
    text-align: center;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .swiper-container {
        height: 350px;
    }
}

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

@media (max-width: 768px) {

    
    .header-container {
        height: 60px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .swiper-container {
        height: 250px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .table-container {
        margin: 20px 0;
    }
    
    .data-table {
        font-size: 14px;
        min-width: 500px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

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

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

    .header-container {
        height: auto;
        padding-bottom: 15px;
        padding-top: 15px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .swiper-container {
        height: 200px;
    }
    
    .slide-content {
        padding: 15px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

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

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

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* External Links */
.external-link {
    color: #FEE001;
    text-decoration: none;
    font-weight: 600;
}

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

/* Image Styles */
.content-image {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* FAQ Styles */
.faq-item {
    background: #127C3A;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #fff;
    line-height: 1.6;
    display: none;
}

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

/* Testimonials */
.testimonial {
    background: #127C3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border: 1px solid #FEE001;
}

.testimonial-text {
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    color: #FEE001;
    font-weight: 600;
}

/* Jackpot Counter Section */
.jackpot-counter-section {
    margin: 40px 0;
}

.jackpot-counter {
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jackpot-content {
    position: relative;
    z-index: 2;
    color: white;
}

.jackpot-title {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 20px;
   background: linear-gradient(45deg, #FEE001, #ffd700);
   background-clip: text;
   -webkit-background-clip: text;
   color: transparent;
   -webkit-text-fill-color: transparent;
   filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
   animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px #FEE001, 0 0 30px #FEE001, 0 0 40px #FEE001;
    }
    to {
        text-shadow: 0 0 30px #FEE001, 0 0 40px #FEE001, 0 0 50px #FEE001;
    }
}

.jackpot-amount-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.jackpot-currency {
    font-size: 4rem;
    font-weight: bold;
    color: #FFFF6F;
    font-style: italic;
    margin-right: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.jackpot-amount {
    font-size: 4rem;
    font-weight: bold;
    font-style: italic;
    color: #FFFF6F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.jackpot-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: #FEE001;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Jackpot Counter */
@media (max-width: 768px) {
    .jackpot-counter {
        padding: 30px 15px;
        min-height: 250px;
    }
    
    .jackpot-title {
        font-size: 2rem;
    }
    
    .jackpot-currency,
    .jackpot-amount {
        font-size: 2.5rem;
    }
    
    .jackpot-subtitle {
        font-size: 1.2rem;
    }
}
