/* Theme CSS for UfaCasino */

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

/* Navigation menu specific styles */
.nav-menu li {
    margin-bottom: 0 !important;
}

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

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

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

/* Content list styling with chevron markers */
article ul li,
article ol li,
.content-list li {
    position: relative !important;
    padding-left: 1.5rem !important;
    margin-bottom: 0.5rem !important;
}

article ul li::before,
article ol li::before,
.content-list li::before {
    content: '›' !important;
    position: absolute !important;
    left: 0 !important;
    color: #00ff7f !important;
    font-weight: bold !important;
    font-size: 1.25rem !important;
}

article ul li::after,
article ol li::after,
.content-list li::after {
    display: none !important;
    content: none !important;
}

/* Headers with !important */
h1 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

h2 {
    font-size: 1.875rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.75rem !important;
    margin-top: 2rem !important;
}

h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    margin-top: 1.5rem !important;
}

/* Ensure readable text */
body {
    font-size: 18px !important;
    line-height: 1.7 !important;
}

p {
    font-size: 1.125rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
}

/* Table container for horizontal scrolling */
.table-container {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    margin: 1.5rem 0 !important;
}

/* Table styling */
table {
    width: 100% !important;
    border-collapse: collapse !important;
    background: #1a1a1a !important;
    border-radius: 0.5rem !important;
    overflow: hidden !important;
}

th {
    background: #00ff7f !important;
    color: #0d0d0d !important;
    padding: 1rem !important;
    text-align: left !important;
    font-weight: 600 !important;
}

td {
    padding: 1rem !important;
    border-bottom: 1px solid #333 !important;
    color: #e5e5e5 !important;
}

tr:hover td {
    background: #252525 !important;
}

/* Conversion buttons */
.cta-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #00ff7f, #00cc66) !important;
    color: #0d0d0d !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 127, 0.3) !important;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%) !important;
    padding: 4rem 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero h1 {
    color: #ffffff !important;
    font-size: 2.75rem !important;
}

.hero p {
    color: #b3b3b3 !important;
    font-size: 1.25rem !important;
}

/* Logo - no box shadow */
.logo img,
.logo svg {
    box-shadow: none !important;
}

/* Cards */
.card {
    background: #1a1a1a !important;
    border-radius: 1rem !important;
    padding: 1.5rem !important;
    border: 1px solid #333 !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.card:hover {
    transform: translateY(-4px) !important;
    border-color: #00ff7f !important;
}

/* Section styling */
section {
    padding: 3rem 0 !important;
}

/* Footer */
footer {
    background: #0d0d0d !important;
    color: #b3b3b3 !important;
    padding: 3rem 1.5rem !important;
}

footer a {
    color: #00ff7f !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

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

footer p {
    color: #b3b3b3 !important;
}

/* Navigation */
nav {
    background: #0d0d0d !important;
    padding: 1rem 1.5rem !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
}

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

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

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

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

    .mobile-menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #0d0d0d !important;
        padding: 1rem !important;
        flex-direction: column !important;
    }

    .mobile-menu.active {
        display: flex !important;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes wave {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite !important;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite !important;
}

/* Decorative elements */
.circle-decor {
    position: absolute !important;
    border-radius: 50% !important;
    background: rgba(0, 255, 127, 0.1) !important;
    pointer-events: none !important;
}

.wave-decor {
    position: absolute !important;
    width: 200% !important;
    height: 100px !important;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 127, 0.05), transparent) !important;
    animation: wave 8s linear infinite !important;
}

/* Icons styling */
.material-icons {
    color: #00ff7f !important;
    vertical-align: middle !important;
}

/* Table of contents */
.toc {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin: 2rem 0 !important;
}

.toc a {
    display: inline-block !important;
    padding: 0.75rem 1.5rem !important;
    border: 2px solid #00ff7f !important;
    border-radius: 50px !important;
    color: #00ff7f !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
}

.toc a:hover {
    background: #00ff7f !important;
    color: #0d0d0d !important;
}

/* Images */
article img {
    border-radius: 0.75rem !important;
    max-width: 100% !important;
    height: auto !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px !important;
    height: 8px !important;
}

::-webkit-scrollbar-track {
    background: #1a1a1a !important;
}

::-webkit-scrollbar-thumb {
    background: #00ff7f !important;
    border-radius: 4px !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc66 !important;
}
