/* Global Styles */
:root {
    --primary-color: #3b82f6;
    --secondary-color: #1e3a8a;
    --dark-color: #111827;
    --darker-color: #030712;
    --light-color: #e5e7eb;
    --success-color: #059669;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --card-bg: #1f2937;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--darker-color);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--dark-color), var(--darker-color));
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-dark {
    background: transparent;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    color: var(--text-secondary) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Disclaimer Section */
.disclaimer-section {
    position: relative;
    z-index: 100;
    background-color: var(--dark-color);
}

.alert {
    border: none;
    border-radius: 10px;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    background-color: rgba(217, 119, 6, 0.1);
    border-left: 4px solid var(--warning-color);
    color: var(--text-primary);
}

.btn-close {
    filter: invert(1) brightness(200%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Listings Section */
.listings-section {
    padding: 5rem 0;
    background-color: var(--darker-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.betting-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.betting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1;
}

.card-img {
    width: 80%;
    height: auto;
    object-fit: contain;
    padding: 1.5rem;
    margin: 0 auto;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.features i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Disclaimer */
.footer-disclaimer {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-disclaimer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-disclaimer a:hover {
    color: var(--text-primary);
}

/* Payment Methods */
.payment-methods {
    padding: 2rem 0;
    width: 90%;
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
    align-items: center;
}

.payment-icon {
    width: 100%;
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.05);
}

/* Footer Links */
.footer-links {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-pages {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-pages li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 0.5rem 0;
}

.footer-pages li a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .footer-pages {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Footer Copyright */
.footer-copyright {
    padding-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-links .col-md-3 {
        margin-bottom: 2rem;
    }

    .social-icons {
        justify-content: center;
        margin-top: 1rem;
    }

    .footer-copyright .text-end {
        text-align: center !important;
    }

    .footer-copyright .col-md-6:first-child {
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section, .betting-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
    background-color: var(--darker-color);
}

.content-section.bg-gradient {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.info-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Trust Points */
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.trust-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.trust-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* Criteria Grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.criteria-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.criteria-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.criteria-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.criteria-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.criteria-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-item ul li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.criteria-item ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 3rem 0;
    }

    .info-grid, .criteria-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .trust-item:hover {
        transform: translateY(-5px);
    }
}

/* Policy Pages */
.policy-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.policy-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    position: relative;
}

.policy-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.25rem;
    }

    .disclaimer-text {
        font-size: 0.9rem;
    }

    .site-card .card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.35rem;
    }

    .content-section h3 {
        font-size: 1.15rem;
    }

    .site-card .card-title {
        font-size: 1.15rem;
    }
} 