/* Import Clash Display Font */
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

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

body {
    font-family: 'Clash Display', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Critical Menu Fix */
.nav-menu li {
    margin-bottom: 0 !important;
    list-style: none !important;
}

.nav-menu li::before,
.nav-menu li::after {
    display: none !important;
    content: none !important;
}

/* Navigation Styles */
header {
    background: linear-gradient(135deg, cyan 0%, royalblue 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 50px;
    height: 50px;
    filter: none !important;
    box-shadow: none !important;
}

.brand-name {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.nav-menu li::before,
.nav-menu li::after {
    display: none !important;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

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

    .nav-menu li {
        padding: 0.75rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Hero Section */
.hero-section {
    background-image: url('overview-of-desktop-casino-benefits_6287847424.jpg');
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative !important;
    padding: 8rem 2rem !important;
    text-align: center !important;
    min-height: 500px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

.hero-section h1 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.2 !important;
}

.hero-section p {
    font-size: 1.25rem !important;
    color: white !important;
    margin-bottom: 2rem !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section p {
        font-size: 1.1rem !important;
    }
}

/* Conversion Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, cyan 0%, royalblue 100%);
    color: white !important;
    padding: 1rem 2.5rem !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    white-space: nowrap !important;
    text-align: center !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

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

/* Section Styling */
section {
    padding: 2rem 2rem;
    animation: fadeIn 0.6s ease-in;
}

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

section:not(.hero-section) {
    border-radius: 20px;
 
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
}

h1 {
    font-size: 3rem !important;
    color: #1e3a8a !important;
}

h2 {
    font-size: 2.5rem !important;
    color: #1e3a8a !important;
    margin-top: 3rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 3px solid cyan !important;
}

h3 {
    font-size: 2rem !important;
    color: royalblue !important;
    margin-top: 2rem !important;
}

h4 {
    font-size: 1.5rem !important;
    color: #333 !important;
}

/* Paragraphs */
p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444;
}

/* Lists - Content Lists with Diamond Markers */
ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    list-style: none;
}

ul li, ol li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

ul li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: royalblue;
    font-size: 1rem;
}

ol {
    counter-reset: item;
}

ol li {
    counter-increment: item;
}

ol li::before {
    content: counter(item) ". ";
    position: absolute;
    left: 0;
    color: royalblue;
    font-weight: 600;
}

/* Footer Lists - No Markers */
footer ul,
footer ol,
footer .nav-menu {
    list-style: none !important;
}

footer ul li,
footer ol li,
footer .nav-menu li {
    list-style: none !important;
}

footer ul li::before,
footer ul li::after,
footer ol li::before,
footer ol li::after,
footer .nav-menu li::before,
footer .nav-menu li::after {
    display: none !important;
    content: none !important;
}

/* Table Styling */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

thead {
    background: linear-gradient(135deg, cyan 0%, royalblue 100%);
}

thead th {
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.125rem;
}

tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background-color: #f0f9ff;
}

tbody td {
    padding: 1.25rem;
    font-size: 1.125rem;
}

/* Image Styling */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

picture {
    display: inline-block;
    margin: 1rem 0;
}

/* Cards */
.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white !important;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

footer p,
footer a,
footer li {
    color: white !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h3 {
    color: white !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
    border-bottom: 2px solid cyan !important;
    padding-bottom: 0.5rem !important;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 0.75rem !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.footer-links li::before,
.footer-links li::after {
    display: none !important;
    content: none !important;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: cyan !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
}

.footer-bottom p {
    color: white !important;
    margin: 0.5rem 0;
}

/* Material Icons */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    vertical-align: middle;
    color: royalblue;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.5rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2.5rem 0;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.75rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid cyan;
    outline-offset: 2px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
