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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #007bff;
}

ul {
    list-style: none;
}

/* Header Styles */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo h1 {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    width: 25px;
    height: 25px;
}

.burger-menu .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 1px 0;
    transition: 0.3s;
    position: absolute;
}

.burger-menu .line:nth-child(1) {
    top: 0;
}

.burger-menu .line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.burger-menu .line:nth-child(3) {
    bottom: 0;
}

/* Animation for cross */
.burger-menu.active .line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active .line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .line:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2575fc;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #333;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #666;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: #007bff;
    margin-bottom: 15px;
}

/* Casino Cards Section */
.casino-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.casino-cards h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: white;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.casino-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.card-badge.premium {
    background: #ffd166;
    color: #333;
}

.card-badge.popular {
    background: #06d6a0;
}

.card-badge.new {
    background: #118ab2;
}

.card-logo {
    padding: 30px 20px 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    height: 150px;
}

.card-logo img {
    max-width: 150px;
    height: auto;
}

.card-rating {
    text-align: center;
    padding: 15px 0;
    font-size: 1.2rem;
}

.stars {
    color: #ddd;
    position: relative;
    display: inline-block;
    letter-spacing: 3px;
}

.stars::before {
    content: "★★★★★";
}

.stars::after {
    content: "★★★★★";
    color: #ffc107;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.stars-50::after {
    width: 100%;
}

.stars-48::after {
    width: 96%;
}

.stars-49::after {
    width: 98%;
}

.stars-47::after {
    width: 94%;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.card-features {
    padding: 0 20px 20px;
    flex-grow: 1;
}

.card-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.card-features li:before {
    content: "✓";
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-bonus {
    background: #f1f8ff;
    padding: 20px;
    text-align: center;
    margin: 0 20px 20px;
    border-radius: 8px;
}

.card-bonus h4 {
    color: #007bff;
    margin-bottom: 5px;
}

.card-bonus p {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.card-button {
    display: block;
    background: #007bff;
    color: white;
    text-align: center;
    padding: 15px;
    margin: 0 20px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: auto;
}

.card-button:hover {
    background: #0056b3;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #333;
}

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

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-item h3 {
    color: #007bff;
    margin-bottom: 15px;
}

.why-choose-item .icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.responsible-gaming h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.responsible-gaming p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: white;
}

.responsible-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: black;
}


.help-resources {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.help-resources h3 {
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
}

.help-resources ul {
    padding-left: 20px;
}

.help-resources li {
    margin-bottom: 10px;
    color: #666;
}

.help-resources li .fas {
    color: #007bff;
    margin-right: 10px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #333;
}

.faq-swiper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: calc(250px - 30px);
    display: flex;
    flex-direction: column;
}

.faq-item h3 {
    color: #007bff;
    margin-bottom: 10px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
    background-color: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: calc(50% - 20px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #007bff;
    color: white;
}

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

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 20px;
    margin-bottom: -10px;
}

.swiper-pagination-bullet {
    background-color: #007bff;
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #007bff;
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.disclaimer h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: white;
}

.disclaimer p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1rem;
    color: white;
    text-align: center;
}

/* Footer Section */
.footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo h2 {
    color: white;
    font-size: 1.8rem;
}

.partner-logos {
    display: flex;
    gap: 30px;
}

.partner-logos a {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.partner-logos a:hover {
    transform: scale(1.05);
}

.partner-logos img {
    max-width: 100px;
    height: auto;
}

.footer-contact {
    text-align: center;
    color: #ddd;
}

.footer-contact h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact .fas {
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    color: #aaa;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #555;
    width: 100%;
}

/* Privacy Policy, Terms & Conditions, Cookie Policy Pages */
.policy-page {
    padding: 50px 0;
    background-color: white;
}

.policy-page .container {
    max-width: 800px;
}

.policy-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.policy-page h2 {
    margin: 30px 0 15px;
    color: #007bff;
}

.policy-page p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.policy-page ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-page li {
    margin-bottom: 10px;
    color: #666;
}

/* Age Verification Popup */
.age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}

.age-verification-popup.show {
    display: flex;
}

.age-verification-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.age-verification-content h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.age-verification-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-verification-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    min-width: 120px;
}

.btn.confirm {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.btn.confirm:hover {
    background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
}

.btn.deny {
    background-color: #666;
    color: white;
}

.btn.deny:hover {
    background-color: #888;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    display: none;
    max-width: 400px;
}

.cookie-consent.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #6a11cb;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn.accept {
    background-color: #6a11cb;
    color: white;
}

.btn.accept:hover {
    background-color: #2575fc;
}

.btn.decline {
    background-color: #666;
    color: white;
}

.btn.decline:hover {
    background-color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        background: white;
        width: 100%;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .partner-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}