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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d35 50%, #0a0e27 100%);
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #1a1d35 0%, #0a0e27 100%);
    border-bottom: 2px solid #ffd700;
    color: white;
    padding: 1.2rem 0;
    box-shadow: 0 4px 30px rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

nav a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

nav a.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1d35;
    font-weight: 700;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section - Full Width */
.hero {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.95) 0%, rgba(255, 215, 0, 0.9) 50%, rgba(184, 134, 11, 0.95) 100%),
                url('/images/hero-background.png') center center / cover no-repeat;
    position: relative;
    color: #1a1d35;
    padding: 6rem 40px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(255, 215, 0, 0.4);
    border-bottom: 4px solid #ffd700;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,215,0,0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
    animation: heroAnimation 20s ease-in-out infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(26,29,53,0.05) 35px, rgba(26,29,53,0.05) 70px);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 4px 20px rgba(255,215,0,0.5);
    letter-spacing: -1px;
    color: #0a0e27;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: #1a1d35;
    text-shadow: 0 1px 3px rgba(255,255,255,0.5);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badge {
    background: linear-gradient(135deg, #1a1d35 0%, #0a0e27 100%);
    border: 2px solid #ffd700;
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    color: #ffd700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.hero-badge::before {
    content: "✓";
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1d35;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

/* Casino Operators List */
.casinos-section {
    padding: 5rem 40px;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1d35 50%, #0a0e27 100%);
    position: relative;
}

.casinos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 50%, transparent 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Horizontal Casino Card */
.casino-card {
    background: linear-gradient(135deg, #1e2139 0%, #1a1d35 100%);
    border: 2px solid #2a2d45;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.1);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem;
    position: relative;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 20%, #ffed4e 50%, #ffd700 80%, transparent 100%);
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 40px rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

.casino-card:hover::before {
    opacity: 1;
}

.casino-card:hover::after {
    opacity: 0.15;
}

/* Casino Logo Section */
.casino-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    border: 2px solid #ffd700;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.casino-logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.3rem;
    color: #1a1d35;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4), inset 0 2px 5px rgba(255,255,255,0.3);
    transition: transform 0.3s ease;
}

.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.casino-card:hover .casino-logo {
    transform: scale(1.05) rotate(-2deg);
}

.casino-rank {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1d35;
    padding: 0.5rem 1.3rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Casino Info Section */
.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.casino-name {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.stars {
    color: #ff6b00;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

.rating-text {
    font-weight: 800;
    color: #1a1d35;
    font-size: 1.1rem;
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 237, 78, 0.1) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-left: 5px solid #ffd700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.bonus-amount {
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.bonus-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
    list-style: none;
    margin: 0;
}

.casino-features li {
    padding: 0.7rem 1rem;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.casino-features li:before {
    content: "✓";
    position: absolute;
    left: 0.5rem;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Casino CTA Section */
.casino-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #1a1d35;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ffd700;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
}

.casino-terms {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-weight: 500;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 50%, #0a0e27 100%);
    border-top: 3px solid #ffd700;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
    box-shadow: 0 -10px 40px rgba(255, 215, 0, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #ffd700 20%, #ffed4e 50%, #ffd700 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-section a:hover {
    color: #ffd700;
    padding-left: 8px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-section a::before {
    content: "→";
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #ffd700;
}

.footer-section a:hover::before {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 237, 78, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffd700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1d35;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.footer-disclaimer {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 237, 78, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.footer-disclaimer p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-disclaimer strong {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    color: rgba(255,255,255,0.6);
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-bottom p {
    margin: 0.8rem 0;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Legal Pages */
.legal-content {
    background: linear-gradient(135deg, #1e2139 0%, #1a1d35 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255, 215, 0, 0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.legal-content h1 {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
}

.legal-content h2 {
    color: #ffd700;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.legal-content h3 {
    color: #ffed4e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-content strong {
    color: #ffd700;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .casino-card {
        grid-template-columns: 240px 1fr;
    }
    
    .casino-cta {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }

    nav ul {
        flex-direction: row;
        gap: 1rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .hero {
        padding: 4rem 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .casinos-section {
        padding: 3rem 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }

    .casino-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.8rem;
    }
    
    .casino-logo-section {
        padding: 1.5rem;
    }
    
    .casino-logo {
        width: 120px;
        height: 120px;
        font-size: 1.1rem;
    }
    
    .casino-name {
        font-size: 1.8rem;
    }
    
    .casino-features {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.05rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .footer-disclaimer {
        margin: 2rem 20px;
        padding: 2rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    nav a {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

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

    .hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    .casino-card {
        padding: 1.5rem 1rem;
    }
    
    .casino-logo-section {
        padding: 1.2rem;
    }
    
    .casino-logo {
        width: 100px;
        height: 100px;
        font-size: 1rem;
    }
    
    .casino-name {
        font-size: 1.5rem;
    }
    
    .casino-bonus {
        padding: 1rem 1.2rem;
    }
    
    .bonus-amount {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-disclaimer {
        padding: 1.5rem;
    }
}

