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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #FFD700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 100px 20px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.casino-list {
    padding: 60px 20px;
    background: #f5f5f5;
}

.casino-list h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.casino-card {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.rank-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nyt-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 0 15px 15px 0;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.rank-number {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin-top: -10px;
}

.casino-content {
    display: flex;
    align-items: center;
    padding: 2rem;
    padding-left: 80px;
    gap: 2rem;
}

.casino-logo {
    min-width: 200px;
    text-align: center;
}

.logo-placeholder {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.betinia-logo {
    background: linear-gradient(135deg, #00CED1 0%, #008B8B 100%);
}

.campobet-logo {
    background: linear-gradient(135deg, #228B22 0%, #006400 100%);
}

.casino-logo h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: bold;
}

.casino-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.casino-icons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    min-width: 180px;
}

.star-rating {
    font-size: 1.2rem;
}

.btn-bonus {
    background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    width: 100%;
    text-align: center;
}

.btn-bonus:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.btn-visit {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: white;
    padding: 10px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    width: 100%;
    text-align: center;
}

.btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bonus-text {
    flex: 1;
    min-width: 250px;
}

.bonus-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.bonus-details {
    font-size: 0.8rem;
    color: #666;
}

.casino-features {
    background: rgba(255,255,255,0.5);
    padding: 1rem 2rem;
    padding-left: 80px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.casino-features p {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
}

.about {
    padding: 60px 20px;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    text-align: center;
    color: #555;
}

.faq {
    padding: 60px 20px;
    background: #f5f5f5;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
}

.faq-icon {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
    line-height: 1.8;
}

.responsible-gaming {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.responsible-gaming h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.age-restriction {
    text-align: center;
    margin-bottom: 3rem;
}

.age-icon {
    display: inline-block;
    background: #E53935;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.age-restriction p {
    font-size: 1.2rem;
}

.support-links h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.support-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-item {
    text-align: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

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

.support-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 0.5rem;
    object-fit: contain;
    background: rgb(255, 255, 255);
    padding: 10px;
    border: 2px dashed rgba(255,255,255,0.5);
}

.support-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-logo a,
.footer-logo a:hover,
.footer-logo a:focus,
.footer-logo a:active {
    text-decoration: none;
    color: inherit;
    border-bottom: 0;
    display: inline-block; 
}


.footer-logo p {
    color: #999;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: #FFD700;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 2;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

.legal-page {
    padding: 80px 20px 60px;
    background: white;
    min-height: calc(100vh - 400px);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-page ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
    line-height: 1.8;
    color: #555;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.logo a {
    text-decoration: none;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #1a1a1a;
        padding: 1rem;
        gap: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #333;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

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

    .casino-content {
        flex-direction: column;
        padding: 1.5rem 1rem;
        padding-top: 3rem;
        align-items: flex-start;
    }

    .casino-logo {
        width: 100%;
        min-width: auto;
    }

    .logo-placeholder {
        width: 100%;
        max-width: 200px;
        margin: 0 auto 0.5rem;
    }

    .casino-info {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: flex-start;
    }

    .casino-icons {
        flex-direction: row;
        gap: 1rem;
    }

    .casino-cta {
        width: 100%;
        align-items: stretch;
    }

    .btn-bonus, .btn-visit {
        width: 100%;
    }

    .bonus-text {
        width: 100%;
    }

    .casino-features {
        padding: 1rem;
    }

    .rank-badge {
        width: 50px;
        height: 65px;
    }

    .rank-number {
        font-size: 1.5rem;
    }

    .nyt-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .support-logos {
        gap: 1.5rem;
    }

    .support-logo {
        width: 60px;
        height: 60px;
    }

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



.casino-content{
    display:grid;
    grid-template-columns: 260px 1fr 260px;
    align-items:center;
    gap:24px;
    padding:2rem 2rem 2rem 80px;
}


.casino-logo{ text-align:center; }
.brand-logo{
    width:220px; height:120px;
    background:#fff; border:1px solid rgba(0,0,0,.08);
    border-radius:14px; display:grid; place-items:center;
    box-shadow:0 8px 18px rgba(0,0,0,.08);
    margin:0 auto;
}
.brand-logo-img{ max-width:90%; max-height:80%; object-fit:contain; display:block; }
.brand-name, .casino-logo h3{ text-align:center; margin-top:10px; }


.casino-icons{ display:none !important; }


.casino-info{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.bonus-text{ flex:1 1 auto; min-width:260px; }


.casino-cta{ display:flex; flex-direction:column; align-items:flex-end; gap:10px; min-width:240px; }
.star-rating{ width:100%; text-align:center; line-height:1; }
.star-rating::before{
    content:"★★★★★"; color:#FFB800; letter-spacing:2px; font-size:1.05rem;
    -webkit-text-stroke:.5px #a06a00;
}


@media (max-width: 768px){
    .casino-content{ grid-template-columns:1fr; gap:16px; padding:18px; }
    .brand-logo{ width:220px; height:120px; }
    .casino-info{ flex-direction:column; align-items:stretch; gap:12px; }
    .casino-cta{ align-items:stretch; }
    .star-rating{ text-align:center; }
}
