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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF0000 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo i {
    font-size: 32px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #FFE4B5;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: #FFD700;
}

/* Listings Section */
.listings {
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.section-header p {
    font-size: 18px;
    color: #FFE4B5;
}

/* Casino Card */
.casino-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.card-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #8B0000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    z-index: 1;
}

.card-content {
    display: flex;
    align-items: center;
    padding: 30px 30px 30px 80px;
    gap: 50px;
}

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

.casino-logo a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

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

.casino-logo i {
    display: none !important;
}

.logo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-placeholder img {
    width: 200px;
    border-radius: 20px;
    max-height: 150px;
}

.logo-placeholder i {
    font-size: 40px;
    color: #FFD700;
    margin-bottom: 8px;
}

.logo-placeholder span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating i {
    color: #FFD700;
    font-size: 18px;
}

.rating-text {
    margin-left: 10px;
    font-weight: 600;
    color: #555;
    font-size: 16px;
}

.bonus-info {
    margin-top: 15px;
}

.bonus-info a {
    text-decoration: none;
    display: block;
}

.bonus-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.bonus-info a:hover .bonus-highlight {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
}

.bonus-highlight i {
    font-size: 24px;
    color: #8B0000;
}

.bonus-highlight strong {
    color: #8B0000;
    font-size: 18px;
    font-weight: 700;
}

.features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 14px;
}

.features i {
    color: #28a745;
    font-size: 14px;
}

.casino-action {
    flex-shrink: 0;
    text-align: center;
}

.casino-action a {
    text-decoration: none;
    display: inline-block;
}

.btn-play {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FFD700 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-play:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 140, 0, 0.7);
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 50%, #FF8C00 100%);
}

.btn-play:active {
    transform: translateY(-1px) scale(1.02);
}

.terms {
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

/* Info Section */
.info-section {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 80px 20px;
    margin-top: 40px;
}

.info-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFD700;
}

.info-card i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    color: #FFE4B5;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-section p {
    color: #FFE4B5;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFE4B5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.responsible-logos {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.responsible-logos span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.responsible-logos i {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #FFE4B5;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #FFD700;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.disclaimer {
    font-size: 12px;
    color: #FFA500;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .card-content {
        flex-direction: column;
        text-align: center;
        padding: 80px 30px 30px;
    }

    .casino-action {
        width: 100%;
    }

    .btn-play {
        width: 100%;
        justify-content: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .casino-name {
        font-size: 22px;
    }

    .bonus-highlight strong {
        font-size: 16px;
    }
}
