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

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #454545;
    background-color: #ffffff;
}

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

/* Header Styles */
header {
    background: linear-gradient(135deg, #061526 0%, #192f4d 100%);
    color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fe6642;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #ffffff;
}

/* Navigation Styles */
nav {
    display: flex;
    align-items: center;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu > li > a:hover {
    color: #fe6642;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #142035;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 5px;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #fe6642;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #192f4d 0%, #0f89d6 100%);
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Main Content */
main {
    padding: 40px 0;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 36px;
    color: #061526;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    color: #192f4d;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Casino Operators Section */
.operators-section {
    background-color: #f8f9fb;
    padding: 40px 0;
    margin-bottom: 40px;
}

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

.operator-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #fe6642;
}

.operator-logo {
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #061526;
}

.operator-rating {
    color: #ffa500;
    font-size: 18px;
    margin-bottom: 10px;
}

.operator-bonus {
    color: #0f89d6;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.operator-features {
    list-style: none;
    margin: 15px 0;
    font-size: 14px;
    color: #8a98ab;
}

.operator-features li {
    margin-bottom: 8px;
}

.btn-primary {
    background-color: #fe6642;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e5533a;
    transform: scale(1.05);
}

/* Content Plan Section */
.plan-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.plan-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f8f9fb;
    border-left: 4px solid #0f89d6;
    border-radius: 5px;
}

.plan-item h3 {
    color: #061526;
    font-size: 22px;
    margin-bottom: 15px;
}

.plan-item p {
    color: #454545;
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #061526 0%, #192f4d 100%);
    color: #ffffff;
    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: #fe6642;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8a98ab;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #142035;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .nav-menu > li > a {
        padding: 15px 20px;
    }

    .dropdown-content {
        position: static;
        display: none;
        background-color: #0f1d2f;
        margin-top: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-section h2 {
        font-size: 28px;
    }

    .operators-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .operators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

.badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #0f89d6;
    color: #ffffff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin: 0 5px;
}

.badge.featured {
    background-color: #fe6642;
}
