/* Modern Casino Website Styles - Based on Admin Dashboard */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #6D5109;
    min-height: 100vh;
    color: #2C1810;
}

/* Header Styles */
.header {
    background: #4A3907;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 30px;
    object-fit: contain;
}

.nav-title {
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    object-fit: contain;
}

.logo i {
    margin-right: 8px;
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.nav-menu a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.user-dropdown {
    color: white;
}

.nav-btn {
    padding: 12px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid transparent;
}

.login-btn {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.register-btn {
    background: #2C1810;
    color: #FFD700;
}

.register-btn:hover {
    background: #1A0F08;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.admin-btn {
    background: #8B5CF6;
    color: #fff;
}

.admin-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.logout-btn {
    background: #EF4444;
    color: #fff;
}

.logout-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2C1810;
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Dashboard Cards */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #FFD700;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
}

.card-button {
    background: #B8860B;
    color: #2C1810;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.4);
}

/* Color Variations for Cards */
.trusted-casinos .card-icon { background: #10B981; }
.scam-casinos .card-icon { background: #EF4444; }
.games .card-icon { background: #3B82F6; }
.news .card-icon { background: #8B5CF6; }
.forum .card-icon { background: #F59E0B; }
.users .card-icon { background: #6B7280; }

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><radialGradient id="chip1" cx="0.5" cy="0.5" r="0.5"><stop offset="0%" stop-color="%23DC2626"/><stop offset="50%" stop-color="%23991B1B"/><stop offset="100%" stop-color="%23450A0A"/></radialGradient><radialGradient id="chip2" cx="0.5" cy="0.5" r="0.5"><stop offset="0%" stop-color="%236B7280"/><stop offset="50%" stop-color="%23374151"/><stop offset="100%" stop-color="%23111827"/></radialGradient></defs><circle cx="200" cy="150" r="60" fill="url(%23chip1)" opacity="0.8"/><circle cx="200" cy="150" r="40" fill="none" stroke="white" stroke-width="3" opacity="0.6"/><circle cx="200" cy="150" r="20" fill="none" stroke="white" stroke-width="2" opacity="0.4"/><circle cx="800" cy="400" r="80" fill="url(%23chip2)" opacity="0.7"/><circle cx="800" cy="400" r="60" fill="none" stroke="white" stroke-width="4" opacity="0.5"/><circle cx="800" cy="400" r="30" fill="none" stroke="white" stroke-width="2" opacity="0.3"/><circle cx="1000" cy="200" r="50" fill="url(%23chip1)" opacity="0.6"/><circle cx="1000" cy="200" r="35" fill="none" stroke="white" stroke-width="2" opacity="0.4"/><circle cx="100" cy="450" r="70" fill="url(%23chip2)" opacity="0.5"/><circle cx="100" cy="450" r="50" fill="none" stroke="white" stroke-width="3" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 30px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(107, 114, 128, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero-highlight {
    color: #FFD700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C1810;
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Content Sections */
.content-section {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #FFD700;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFD700;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Featured Casino Cards */
.featured-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.featured-casino-card {
    background: rgba(64, 64, 64, 0.6);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.casino-brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.casino-icon {
    width: 48px;
    height: 48px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

.casino-brand-name {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-game-name {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.casino-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.rating-label {
    color: #ccc;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #FFD700;
    font-size: 0.8rem;
}

.rating-stars i.inactive {
    color: #444;
}

.deposit-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.deposit-label {
    color: #ccc;
}

.deposit-amount {
    color: white;
    font-weight: bold;
}

.visit-casino-btn {
    background: #B8860B;
    color: #2C1810;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.visit-casino-btn:hover {
    background: #DAA520;
    transform: translateY(-2px);
}

/* Casino Grid Styles */
.casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.casino-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

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

.scam-card {
    border: 2px solid #EF4444 !important;
}

.casino-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666, #999);
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.casino-name {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.casino-rating {
    margin-bottom: 20px;
}

.rating-label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.stars i.inactive {
    color: #444;
}

.rating-number {
    font-size: 0.9rem;
    color: #ccc;
}

.casino-details {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item .label {
    color: #ccc;
}

.detail-item .value {
    color: white;
    font-weight: 500;
}

.casino-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.scam-badge {
    background: #EF4444;
    color: white;
}

.blacklisted-badge {
    background: #666;
    color: white;
}

.view-details-btn {
    width: 100%;
    padding: 12px 20px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.view-details-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
}

.warning-banner {
    background: #EF4444;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-banner i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.warning-banner strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.warning-banner p {
    margin: 0;
    line-height: 1.5;
}

.casino-type {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 15px;
}

.casino-type.trusted {
    background: #10B981;
    color: white;
}

.casino-type.scam {
    background: #EF4444;
    color: white;
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #FFD700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #FFD700;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    color: #FFD700;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: #2C1810;
    box-shadow: 0 0 0 2px rgba(44, 24, 16, 0.3);
}

.btn {
    background: #B8860B;
    color: #2C1810;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #DAA520;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(218, 165, 32, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #5A4508;
    padding: 40px 0 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-section ul li {
    color: #fff;
    opacity: 0.8;
}

.footer-section ul li a i.fas.fa-chevron-right {
    font-size: 0.8rem;
    opacity: 0.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #2C1810;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    background: #4A3907;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: #fff;
    opacity: 0.7;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .auth-buttons {
        justify-content: center;
    }
    
    .user-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dashboard-card {
    animation: fadeInUp 0.6s ease forwards;
}

.dashboard-card:nth-child(1) { animation-delay: 0.1s; }
.dashboard-card:nth-child(2) { animation-delay: 0.2s; }
.dashboard-card:nth-child(3) { animation-delay: 0.3s; }
.dashboard-card:nth-child(4) { animation-delay: 0.4s; }
.dashboard-card:nth-child(5) { animation-delay: 0.5s; }
.dashboard-card:nth-child(6) { animation-delay: 0.6s; }

/* Trusted Casinos Styles */
.trusted-header {
    text-align: center;
    margin-bottom: 40px;
}

.trusted-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.online-text {
    color: #FFD700;
}

.filter-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-dropdown {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
}

.apply-filters-btn {
    padding: 10px 20px;
    background: #FFD700;
    color: #2C1810;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.trusted-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.trusted-casino-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

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

.scam-casino-card {
    border: 2px solid #EF4444 !important;
}

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

.casino-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: linear-gradient(135deg, #666, #999);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.casino-brand {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.casino-info {
    flex: 1;
    color: white;
}

.casino-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.casino-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-label {
    color: #ccc;
}

.detail-value {
    color: white;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #444;
    font-size: 1rem;
}

.rating-stars i.active {
    color: #FFD700;
}

.casino-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trusted-badge {
    background: #10B981;
    color: white;
}

.verified-badge {
    background: #3B82F6;
    color: white;
}

.scam-badge {
    background: #EF4444;
    color: white;
}

.blacklisted-badge {
    background: #666;
    color: white;
}

.view-details-btn {
    width: 100%;
    padding: 12px 20px;
    background: #FFD700;
    color: #2C1810;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
}

.scam-btn {
    background: #EF4444 !important;
    color: white !important;
}

.scam-btn:hover {
    background: #DC2626 !important;
}

/* Vertical Casino Card Styles */
.scam-casino-card-vertical {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #EF4444;
    transition: all 0.3s ease;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scam-casino-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.casino-logo-container {
    width: 100%;
    margin-bottom: 20px;
}

.casino-logo-box {
    width: 120px;
    height: 80px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder-vertical {
    width: 100%;
    height: 100%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.casino-brand-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.2;
}

.casino-name-vertical {
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.rating-section-vertical {
    margin-bottom: 20px;
}

.rating-label-vertical {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 8px;
}

.stars-vertical {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.stars-vertical .star-active {
    color: #FFD700;
}

.stars-vertical .star-inactive {
    color: #444;
}

.casino-details-vertical {
    width: 100%;
    margin-bottom: 20px;
}

.detail-row-vertical {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.detail-row-vertical:last-child {
    margin-bottom: 0;
}

.detail-label-vertical {
    color: #ccc;
    font-weight: normal;
}

.detail-value-vertical {
    color: white;
    font-weight: 600;
}

.casino-badges-vertical {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge-vertical {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.scam-badge-vertical {
    background: #EF4444;
    color: white;
}

.blacklisted-badge-vertical {
    background: #666;
    color: white;
}

.view-details-btn-vertical {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #EF4444;
    border: 2px solid #EF4444;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.view-details-btn-vertical:hover {
    background: #EF4444;
    color: white;
    transform: translateY(-2px);
}

/* Games Page Styles */
.games-header {
    text-align: center;
    margin-bottom: 40px;
}

.games-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.games-highlight {
    color: #FFD700;
}

.games-filter-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
}

.filter-btn.active {
    background: #FFD700;
    color: #2C1810;
    border-color: #FFD700;
}

.games-section {
    margin-bottom: 50px;
}

.games-section-title {
font-size: 1.8rem;
font-weight: bold;
color: white;
margin-bottom: 25px;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trending-games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 15px;
margin-top: 30px;
max-width: 400px;
}

.trending-game-card {
background: rgba(64, 64, 64, 0.6);
border-radius: 10px;
overflow: hidden;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.1);
aspect-ratio: 3/4;
position: relative;
}

.trending-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.game-image-container {
    height: 70%;
    position: relative;
    overflow: hidden;
}

.game-bg-baseball {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-bg-basketball {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-info {
    padding: 15px;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.game-name {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 5px;
}

.game-provider {
    color: #FFD700;
    font-size: 0.8rem;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
}

.game-card {
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.game-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    border-radius: 10px;
}

.coming-soon .game-image {
    background: linear-gradient(135deg, #444, #666);
}

.coming-soon-text {
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 1px;
}

.baseball-bg {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.2"/></svg>');
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

.basketball-bg {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.2"/></svg>');
    background-size: 60px;
    background-position: center;
    background-repeat: no-repeat;
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 15px 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.game-title {
    color: white;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Admin Dashboard Styles */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.admin-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.dashboard-highlight {
    color: #FFD700;
}

.back-to-site-btn {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-to-site-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    color: #FFD700;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.admin-card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.trusted-card {
    border: 2px solid #10B981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(0, 0, 0, 0.8));
}

.scam-card {
    border: 2px solid #EF4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(0, 0, 0, 0.8));
}

.games-card {
    border: 2px solid #06B6D4;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(0, 0, 0, 0.8));
}

.news-card {
    border: 2px solid #3B82F6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(0, 0, 0, 0.8));
}

.forum-card {
    border: 2px solid #F59E0B;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 0, 0, 0.8));
}

.users-card {
    border: 2px solid #8B5CF6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(0, 0, 0, 0.8));
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.admin-card-title {
    font-size: 0.9rem;
    font-weight: bold;
    color: #ccc;
    letter-spacing: 1px;
}

.admin-card-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.trusted-icon {
    background: #10B981;
    color: white;
}

.scam-icon {
    background: #EF4444;
    color: white;
}

.games-icon {
    background: #06B6D4;
    color: white;
}

.news-icon {
    background: #3B82F6;
    color: white;
}

.forum-icon {
    background: #F59E0B;
    color: white;
}

.users-icon {
    background: #8B5CF6;
    color: white;
}

.admin-card-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.admin-card-button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.trusted-btn {
    background: #10B981;
    color: white;
}

.trusted-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

.scam-btn {
    background: #EF4444;
    color: white;
}

.scam-btn:hover {
    background: #DC2626;
    transform: translateY(-2px);
}

.games-btn {
    background: #06B6D4;
    color: white;
}

.games-btn:hover {
    background: #0891B2;
    transform: translateY(-2px);
}

.news-btn {
    background: #3B82F6;
    color: white;
}

.news-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.forum-btn {
    background: #F59E0B;
    color: white;
}

.forum-btn:hover {
    background: #D97706;
    transform: translateY(-2px);
}

.users-btn {
    background: #8B5CF6;
    color: white;
}

.users-btn:hover {
    background: #7C3AED;
    transform: translateY(-2px);
}

/* Admin/* Manage Casinos Styles */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 50%, #FFD700 100%);
    min-height: 100vh;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.admin-header h1 {
    color: white;
    font-size: 2rem;
    margin: 0;
}

.admin-actions {
    display: flex;
    gap: 15px;
}

.back-btn, .add-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-btn {
    background: #f39c12;
    color: #000;
}

.back-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.add-btn {
    background: #f1c40f;
    color: #000;
}

.add-btn:hover {
    background: #f39c12;
    transform: translateY(-2px);
}

.manage-table-container {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.manage-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    table-layout: fixed;
}

.manage-table th {
    background: #333;
    color: #f1c40f;
    padding: 8px 6px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    border-bottom: 2px solid #444;
    white-space: nowrap;
    height: 35px;
}

.manage-table th:nth-child(1) { width: 140px; }
.manage-table th:nth-child(2) { width: 100px; }
.manage-table th:nth-child(3) { width: 80px; }
.manage-table th:nth-child(4) { width: 100px; }
.manage-table th:nth-child(5) { width: 100px; }
.manage-table th:nth-child(6) { width: 100px; }
.manage-table th:nth-child(7) { width: 90px; }
.manage-table th:nth-child(8) { width: 80px; }
.manage-table th:nth-child(9) { width: 80px; }

.manage-table td {
    padding: 8px 6px;
    border-bottom: 1px solid #444;
    color: white;
    vertical-align: middle;
    text-align: left;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 40px;
}

.manage-table td:nth-child(1) {
    white-space: normal;
}

.manage-table td:nth-child(4),
.manage-table td:nth-child(5),
.manage-table td:nth-child(7),
.manage-table td:nth-child(8) {
    text-align: center;
}

.manage-table tr:hover {
    background: #333;
}

.casino-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 6px;
    vertical-align: middle;
}

.casino-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    text-align: left;
}

.casino-logo {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    flex-shrink: 0;
}

.visit-site-btn {
    background: #666;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: background 0.3s ease;
}

.visit-site-btn:hover {
    background: #777;
}

.type-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.type-badge.trusted {
    background: #27ae60;
    color: white;
}

.type-badge.scam {
    background: #e74c3c;
    color: white;
}

.rating-cell {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.rating-cell .fas.fa-star {
    color: #666;
    font-size: 0.75rem;
}

.rating-cell .fas.fa-star.active {
    color: #f39c12;
}

.status-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #27ae60;
    color: white;
}

.status-badge.inactive {
    background: #e74c3c;
    color: white;
}

.actions-cell {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.action-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.edit-btn {
    background: #f39c12;
    color: white;
}

.edit-btn:hover {
    background: #e67e22;
    transform: scale(1.1);
}

.delete-btn {
    background: #e74c3c;
    color: white;
}

.delete-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Admin Footer Styles - Matching Public Footer */
.admin-footer {
    background: #5A4508;
    padding: 40px 0 0;
    margin-top: 60px;
}

.admin-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.admin-footer .footer-section h3 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.admin-footer .footer-section p {
    color: #fff;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.admin-footer .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-footer .footer-section ul li {
    margin-bottom: 12px;
    color: #fff;
    opacity: 0.8;
}

.admin-footer .footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.admin-footer .footer-section ul li a i.fas.fa-chevron-right {
    font-size: 0.8rem;
    opacity: 0.6;
}

.admin-footer .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.admin-footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-footer .social-links a:hover {
    background: #FFD700;
    color: #2C1810;
    transform: translateY(-2px);
}

.admin-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    background: #4A3907;
}

.admin-footer .footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-footer .footer-bottom-content p {
    color: #fff;
    opacity: 0.7;
    margin: 0;
}

.admin-footer .footer-links {
    display: flex;
    gap: 30px;
}

.admin-footer .footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .admin-footer .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .admin-footer .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .admin-footer .footer-links {
        gap: 20px;
    }
}

.trusted-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    line-height: 1.2;
}

.online-text {
    color: #fff;
    font-weight: 900;
}

.filter-section {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    color: #fff;
    font-size: 0.9rem;
    min-width: 150px;
    cursor: pointer;
}

.filter-dropdown option {
    background: #2C1810;
    color: #fff;
}

.apply-filters-btn {
    background: #3B82F6;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-filters-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.trusted-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.trusted-casino-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.trusted-casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.casino-logo-section {
    text-align: center;
    margin-bottom: 20px;
}

.casino-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.casino-brand {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2C1810;
}

.casino-info {
    color: #fff;
}

.casino-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.casino-details {
    margin-bottom: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    font-size: 0.9rem;
    color: #ccc;
}

.detail-value {
    font-weight: 600;
    color: #fff;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars .fa-star {
    color: #666;
    font-size: 0.9rem;
}

.rating-stars .fa-star.active {
    color: #FFD700;
}

.casino-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.trusted-badge {
    background: #10B981;
    color: #fff;
}

.verified-badge {
    background: #3B82F6;
    color: #fff;
}

.view-details-btn {
    width: 100%;
    background: transparent;
    color: #10B981;
    border: 2px solid #10B981;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-details-btn:hover {
    background: #10B981;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
