/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #121212;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(45deg, #FFD700, #FFA500) !important;
}

.top-bar p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Navbar Styles */
.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(to bottom, #1a1a1a, #121212);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    font-size: 3rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Listing Section Styles */
.listing-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.casino-item {
    transition: transform 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-5px);
}

.casino-logo {
    max-height: 80px;
    object-fit: contain;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.score-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
}

.score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
}

.votes {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.deposit-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem;
    border-radius: 8px;
}

.amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    display: block;
}

.label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.visit-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.visit-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

/* Content Section Styles */
.content-section {
    background-color: #0f0f0f;
}

.content-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h2 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.content-card h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.content-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.content-list li::before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.info-box {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border: none;
    margin-top: 2rem;
}

.help-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.help-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-images {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-img:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.footer-links {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.footer-copyright {
    padding-top: 2rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Policy Pages Styles */
.policy-content {
    min-height: calc(100vh - 300px);
}

.policy-content h1 {
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section h2 {
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.policy-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.policy-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-section ul li::before {
    content: "•";
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.help-resource-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.help-resource-item h3 {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.help-resource-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }

    .casino-item {
        margin-bottom: 1rem;
    }

    .casino-item > div {
        flex-direction: column;
    }

    .casino-item > div > div {
        margin-bottom: 1rem;
        width: 100%;
    }

    .casino-logo {
        max-height: 60px;
        margin-bottom: 1rem;
    }

    .disclaimer-text {
        text-align: center;
        margin: 1rem 0;
    }

    .score-box, .deposit-box {
        margin: 0.5rem 0;
    }

    .visit-btn {
        width: 100%;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card h2 {
        font-size: 1.3rem;
    }

    .help-resources {
        flex-direction: column;
    }

    .help-item {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-img {
        height: 30px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
} 