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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111827;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #064e3b;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #064e3b;
}

.logo-icon.large {
    width: 64px;
    height: 64px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.7), rgba(17, 24, 39, 0.9));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.hero-info {
    font-size: 1.125rem;
    color: #d1d5db;
}

/* Info Section */
.info-section {
    background-color: #064e3b;
    padding: 4rem 0;
    text-align: center;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-text {
    font-size: 1.25rem;
    color: #f59e0b;
}

/* Services Section */
.services-section {
    background-color: #f3f4f6;
    padding: 5rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #064e3b;
    font-style: italic;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
}

.service-image-placeholder {
    width: 100%;
    height: 256px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.entertainment-bg {
    background: linear-gradient(135deg, #065f46, #059669);
}

.music-bg {
    background: linear-gradient(135deg, #d97706, #fbbf24);
}

.placeholder-icon {
    color: #f59e0b;
}

.music-icon {
    color: #064e3b;
}

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #064e3b;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    color: #4b5563;
}

.service-list li {
    margin-bottom: 0.5rem;
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
    padding: 5rem 0;
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #064e3b;
    font-style: italic;
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-emerald {
    background: linear-gradient(135deg, #047857, #10b981);
    color: #f59e0b;
}

.gallery-amber {
    background: linear-gradient(135deg, #d97706, #fbbf24);
    color: #064e3b;
}

.gallery-emerald-dark {
    background: linear-gradient(135deg, #065f46, #059669);
    color: #f59e0b;
}

.gallery-amber-light {
    background: linear-gradient(135deg, #f59e0b, #fcd34d);
    color: #064e3b;
}

.gallery-gray {
    background: linear-gradient(135deg, #1f2937, #4b5563);
    color: #f59e0b;
}

.gallery-emerald-medium {
    background: linear-gradient(135deg, #059669, #34d399);
    color: #ffffff;
}

.gallery-amber-dark {
    background: linear-gradient(135deg, #b45309, #f59e0b);
    color: #064e3b;
}

.gallery-emerald-darkest {
    background: linear-gradient(135deg, #064e3b, #047857);
    color: #f59e0b;
}

.gallery-text {
    font-size: 2rem;
    font-weight: 700;
}

.gallery-text.white {
    color: #ffffff;
}

.gallery-text.dark {
    color: #064e3b;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(90deg, #064e3b, #065f46, #064e3b);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #f59e0b;
}

/* Footer */
.footer {
    background-color: #111827;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-contact {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.contact-item.link:hover {
    color: #f59e0b;
}

.contact-icon {
    color: #f59e0b;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background-color: #065f46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #f59e0b;
}

.copyright {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .info-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Casino Cards */
.casino-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.casino-card {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 0.75rem 1rem;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.casino-rank {
    flex-shrink: 0;
}

.rank-number {
    background: #f59e0b;
    color: #111827;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
}

.casino-logo {
    font-weight: 800;
    font-size: 1rem;
    color: #f59e0b;
    background: #1f2937;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    min-width: 70px;
    text-align: center;
    white-space: nowrap;
}

.casino-info {
    min-width: 0;
}

.casino-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f9fafb;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.casino-rating {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.35rem;
    white-space: nowrap;
}

.stars {
    color: #f59e0b;
}

.casino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.casino-tag {
    background: #374151;
    color: #d1d5db;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
}

.casino-bonus {
    text-align: center;
    white-space: nowrap;
}

.bonus-label {
    font-size: 0.65rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #34d399;
}

.casino-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: #f59e0b;
    color: #111827;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #d97706;
}

.disclaimer {
    font-size: 0.65rem;
    color: #6b7280;
    white-space: nowrap;
}

/* Casino modal responsive */
@media (max-width: 640px) {
    .casino-card {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto auto auto;
        padding: 0.875rem;
    }

    .casino-rank {
        grid-column: 1;
        grid-row: 1;
    }

    .casino-logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: start;
        font-size: 0.875rem;
        min-width: 60px;
        padding: 0.4rem 0.6rem;
    }

    .casino-info {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .casino-info h3 {
        white-space: normal;
    }

    .casino-bonus {
        grid-column: 1 / 3;
        grid-row: 3;
        text-align: left;
    }

    .casino-action {
        grid-column: 1 / 3;
        grid-row: 4;
        flex-direction: column;
        align-items: stretch;
        border-top: 1px solid #374151;
        padding-top: 0.75rem;
        margin-top: 0.25rem;
        width: 100%;
    }

    .btn {
        font-size: 0.875rem;
        padding: 0.6rem 1rem;
        text-align: center;
        width: 100%;
    }
}
