/* Leto Casino - Main Styles */
/* Primary: Onyx (#36454f), Accent: Teal (#008080) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: #36454f !important;
    background-color: #f8f9fa !important;
}

/* Navigation Styles */
.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;
}

.nav-menu li::marker {
    display: none !important;
    content: none !important;
}

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

nav ul li,
nav ol li,
footer ul li,
footer ol li {
    list-style: none !important;
    margin-bottom: 0 !important;
}

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

nav ul li::marker,
nav ol li::marker,
footer ul li::marker,
footer ol li::marker {
    display: none !important;
    content: none !important;
}

/* Header & Navigation */
header {
    background: #36454f !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 45px;
    height: 45px;
    box-shadow: none !important;
}

.logo span {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

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

.nav-menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem !important;
}

.nav-menu a:hover {
    color: #008080 !important;
}

.nav-cta {
    background: #008080 !important;
    color: #fff !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    transition: background 0.3s ease !important;
}

.nav-cta:hover {
    background: #006666 !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(54, 69, 79, 0.85), rgba(54, 69, 79, 0.9)), url('investitsii-v-onlain-kazino-s-nizkim-depozitom_6792.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 6rem 2rem !important;
    text-align: center !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden !important;
}

.hero h1 {
    font-size: 2.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    color: #fff !important;
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero p {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.9) !important;
    max-width: 700px !important;
    margin: 0 auto 2rem !important;
    line-height: 1.8 !important;
}

.hero-btn {
    display: inline-block !important;
    background: #008080 !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
    transition: transform 0.3s ease, background 0.3s ease !important;
}

.hero-btn:hover {
    background: #006666 !important;
    transform: translateY(-3px) !important;
}

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

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

/* Table of Contents */
.toc {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

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

.toc-btn:hover {
    background: #008080;
    color: #fff !important;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

section {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem !important;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

h2 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #36454f !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 3px solid #008080 !important;
}

h3 {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: #36454f !important;
    margin-bottom: 1rem !important;
}

p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #4a5568 !important;
    margin-bottom: 1.25rem !important;
}

strong {
    color: #36454f !important;
}

em {
    color: #008080 !important;
    font-style: italic;
}

/* Lists Styling */
article ul,
article ol,
main ul,
main ol,
section ul,
section ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

article ul li,
article ol li,
main ul li,
main ol li,
section ul li,
section ol li {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 0.75rem !important;
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
}

article ul li::before,
article ol li::before,
main ul li::before,
main ol li::before,
section ul li::before,
section ol li::before {
    content: '+' !important;
    position: absolute !important;
    left: 0 !important;
    color: #008080 !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

article ul li::marker,
article ol li::marker,
main ul li::marker,
main ol li::marker,
section ul li::marker,
section ol li::marker {
    display: none !important;
    content: none !important;
}

/* Images */
article img,
section img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
    margin: 1.5rem 0;
}

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

table {
    width: 100% !important;
    border-collapse: collapse !important;
    min-width: 500px !important;
}

thead {
    background: #36454f !important;
}

th {
    color: #fff !important;
    padding: 1rem !important;
    text-align: left !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

td {
    padding: 1rem !important;
    border-bottom: 1px solid #e2e8f0 !important;
    font-size: 1rem !important;
    color: #4a5568 !important;
}

tbody tr:hover {
    background: #f7fafc !important;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Conversion Buttons */
.cta-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #008080, #006666) !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
    text-align: center !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin: 1rem 0 !important;
}

.cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(0,128,128,0.3) !important;
}

/* Footer */
footer {
    background: #36454f !important;
    color: #fff !important;
    padding: 3rem 2rem 1.5rem !important;
    margin-top: 3rem !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #008080 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
}

.footer-section p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.footer-section a {
    color: rgba(255,255,255,0.8) !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    transition: color 0.3s ease !important;
}

.footer-section a:hover {
    color: #008080 !important;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 0.9rem !important;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-5px); }
    50% { transform: translateX(0) translateY(0); }
    75% { transform: translateX(-5px) translateY(5px); }
    100% { transform: translateX(0) translateY(0); }
}

.animated-float {
    animation: float 3s ease-in-out infinite;
}

.animated-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animated-wave {
    animation: wave 4s ease-in-out infinite;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,128,128,0.1);
    pointer-events: none;
}

.decoration-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: -75px;
    animation: float 5s ease-in-out infinite 1s;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 4rem 1rem !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    section {
        padding: 1.5rem !important;
    }

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

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

    .toc {
        flex-direction: column;
        align-items: center;
    }
}

/* Icon Colors */
.fa, .fas, .far, .fab {
    color: #008080 !important;
}

/* Utility Classes */
.text-center { text-align: center !important; }
.mt-2 { margin-top: 2rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
