@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');

:root {
    --background: #F8F6F3;
    --foreground: #1A1A1A;
    --muted: #F1EDE8;
    --muted-foreground: #6B6B6B;
    --accent: #2D2D2D;
    --accent-foreground: #F8F6F3;
    --border: #E5E1DC;
    --input: #FFFFFF;
    --primary: #1A1A1A;
    --primary-foreground: #F8F6F3;
    --secondary: #8B7355;
    --secondary-foreground: #F8F6F3;
    --tertiary: #4A90E2; /* New accent color */
    --tertiary-foreground: #F8F6F3;
    --destructive: #DC2626;
    --destructive-foreground: #F8F6F3;
    --ring: #2D2D2D;
    --radius: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    text-wrap: balance;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    width: 36px;
    height: 36px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--tertiary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--tertiary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 24px;
    height: 1px;
    background: var(--foreground);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(2px, -1px);
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(21, 208, 241, 0.5) 0%, rgba(246, 248, 248, 0.5)), url('img/bg.jpeg') no-repeat center center/cover;
}
.about {
      background: linear-gradient(180deg, rgba(21, 208, 241, 0.5) 0%, rgba(246, 248, 248, 0.5)), url('img/about.jpeg') no-repeat center center/cover;

}
.hero-content {
    max-width: 900px;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--foreground);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.cta-button:hover {
    background: var(--tertiary);
    color: var(--tertiary-foreground);
    transform: translateY(-2px);
}

.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 4rem;
    color: var(--foreground);
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    text-align: center;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.casino-card {
    background: var(--input);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.casino-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--tertiary);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.casino-logo {
    width: 150px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--foreground);
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.casino-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.bonus-highlight {
    background: var(--muted);
    color: var(--foreground);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    margin: 1.5rem 0;
    border: 1px solid var(--border);
}

.casino-features {
    list-style: none;
    margin: 1.5rem 0;
}

.casino-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

.casino-features li:last-child {
    border-bottom: none;
}

.casino-features i {
    color: var(--tertiary);
    width: 16px;
    font-size: 0.9rem;
}

.expand-btn {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.expand-btn:hover {
    background: var(--tertiary);
    color: var(--tertiary-foreground);
    border-color: var(--tertiary);
}

.casino-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.casino-details.expanded {
    max-height: 500px;
}

.casino-details p {
    margin-bottom: 0.75rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.casino-details strong {
    color: var(--foreground);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--input);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--tertiary);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--foreground);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

.tabs-container {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--muted);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    background: var(--tertiary);
    color: var(--tertiary-foreground);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.rating {
    color: var(--tertiary);
    margin: 1rem 0;
    font-size: 1.1rem;
}

.faq-item {
    background: var(--input);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--foreground);
}

.faq-question:hover {
    background: var(--muted);
}

.faq-question i {
    color: var(--muted-foreground);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--muted-foreground);
    border-top: 1px solid var(--border);
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.footer {
    background: var(--muted);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--tertiary);
}

.footer p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 1rem;
}

.newsletter-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--muted-foreground);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input);
    color: var(--foreground);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: var(--muted-foreground);
}

.newsletter-form button {
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--tertiary);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--input);
    color: var(--foreground);
    font-size: 0.95rem;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--muted-foreground);
}

.contact-form button {
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--tertiary);
}

.privacy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.privacy-checkbox input {
    width: 16px;
    height: 16px;
}

.privacy-checkbox a {
    color: var(--tertiary);
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.team-photo {
    width: 100px;
    height: 100px;
    background: var(--muted);
    border-radius: 50%;
    margin: 0 auto 1rem;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-role {
    font-size: 0.95rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.timeline-container {
    position: relative;
    margin: 2rem auto;
    max-width: 800px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--tertiary);
}

.timeline-content {
    background: var(--input);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    background: var(--tertiary);
    border-radius: 50%;
}

.slider-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.3s ease;
}

.slide {
    min-width: 100%;
    padding: 1rem;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    padding: 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 1rem;
}

.slider-next {
    right: 1rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--tertiary);
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid var(--border);
    border-radius: 50%;
    border-top-color: var(--foreground);
    animation: spin 1s ease-in-out infinite;
}
.contact-info {
    text-align: center;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
a {
    text-decoration: none;
    color: var(--foreground);
}
.icon-large {
    font-size: 2.5rem;
    color: var(--tertiary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.icon-small {
    font-size: 1rem;
    color: var(--tertiary);
    transition: transform 0.3s ease;
}

.casino-card:hover .icon-small,
.expand-btn:hover .icon-small,
.comparison-table th:hover .icon-small {
    transform: scale(1.15);
}
.contact-item {
    display: flex;
   
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.95rem;
    border: 1px;
    border-radius: var(--radius);
    padding: 1rem;
    background: var(--input);
    border: 1px solid var(--border);
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .burger {
        display: flex;
    }

    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .casino-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tabs-nav {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-form {
        padding: 0 1rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-item::before {
        left: 0.5rem;
    }

    .timeline-content::before {
        left: -1.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
        .section-title {
        font-size: 2rem;
    }
    .casino-grid {
        grid-template-columns:repeat(1, 1fr);
        gap: 1.5rem;
    }
    .casino-card {
        padding: 1.5rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}