/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px !important;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

section {
    padding:20px !important;
    border-radius: 10px !important;
}

/* Reset list styles */
ul, ol {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Navigation */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #ff00ff !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand:hover {
    color: #ff00ff !important;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-size: 18px !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ff00ff !important;
}

.navbar-nav .nav-link::before,
.navbar-nav .nav-link::after {
    display: none !important;
    content: none !important;
}

.navbar-nav .nav-item {
    list-style: none !important;
}

.navbar-nav .nav-item::before,
.navbar-nav .nav-item::after {
    display: none !important;
    content: none !important;
}

.navbar-toggler {
    border-color: #ff00ff !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ff00ff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.btn-casino {
    background-color: #ff00ff !important;
    color: #ffffff !important;
    border: none !important;
    padding: 10px 25px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    border-radius: 5px !important;
    transition: all 0.3s !important;
    text-decoration: none !important;
    display: inline-block !important;
    white-space: nowrap !important;
}

.btn-casino:hover {
    background-color: #cc00cc !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Hero Section */
.hero-section {
    position: relative !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 80px 20px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%) !important;
}

.hero-bg-shape {
    position: absolute !important;
    z-index: 0 !important;
}

.hero-bg-shape:nth-child(1) {
    top: -100px !important;
    right: -100px !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.1) 0%, transparent 70%) !important;
    border-radius: 50% !important;
}

.hero-bg-shape:nth-child(2) {
    bottom: -150px !important;
    left: -150px !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.05) 0%, transparent 70%) !important;
    border-radius: 50% !important;
}

.hero-content {
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.hero-section h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

.hero-section p {
    font-size: 20px !important;
    color: #555 !important;
    margin-bottom: 30px !important;
}

/* Headers */
h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
}

h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-top: 50px !important;
    margin-bottom: 20px !important;
}

h3 {
    font-size: 28px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}

/* Paragraphs */
p {
    font-size: 18px !important;
    color: #555 !important;
    margin-bottom: 20px !important;
    line-height: 1.8 !important;
}

/* Sections */
section {
    padding: 60px 0;
}

.content-section {
    background-color: #ffffff;
}

.content-section:nth-child(even) {
    background-color: #f9f9f9;
}

/* Cards */
.info-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Content Lists */
.content-section ul li {
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 15px !important;
    font-size: 18px !important;
    color: #555 !important;
}

.content-section ul li::before {
    content: "—" !important;
    position: absolute !important;
    left: 0 !important;
    color: #ff00ff !important;
    font-weight: bold !important;
}

.content-section ol {
    counter-reset: item;
}

.content-section ol li {
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 15px !important;
    font-size: 18px !important;
    color: #555 !important;
    counter-increment: item;
}

.content-section ol li::before {
    content: counter(item) "." !important;
    position: absolute !important;
    left: 0 !important;
    color: #ff00ff !important;
    font-weight: bold !important;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
}

table thead {
    background-color: #ff00ff;
    color: #ffffff;
}

table thead th {
    padding: 15px;
    font-size: 18px !important;
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid #cc00cc;
}

table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

table tbody tr:hover {
    background-color: #f9f9f9;
}

table tbody td {
    padding: 15px;
    font-size: 18px !important;
    color: #555;
}

/* Images */
picture img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

footer h5 {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #ff00ff !important;
    margin-bottom: 20px !important;
}

footer ul {
    list-style: none !important;
    padding: 0 !important;
}

footer ul li {
    margin-bottom: 10px !important;
}

footer ul li::before,
footer ul li::after {
    display: none !important;
    content: none !important;
}

footer a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 18px !important;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff00ff !important;
}

footer .copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #555;
    font-size: 16px !important;
    color: #aaa !important;
}

/* Icons */
.fa, .fas, .far, .fab {
    color: #ff00ff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    p, .content-section ul li, .content-section ol li {
        font-size: 18px !important;
    }

    .navbar-nav {
        text-align: center;
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .btn-casino {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 400px !important;
        padding: 60px 15px !important;
    }

    .hero-section h1 {
        font-size: 32px !important;
    }

    .hero-section p {
        font-size: 18px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 20px !important;
    }
}
