/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Space+Grotesk:wght@500;700&display=swap');

/* Global Styles */
:root {
    --primary-color: #4F46E5;
    --secondary-color: #7C3AED;
    --accent-color: #F59E0B;
    --text-color: #1F2937;
    --light-bg: #F9FAFB;
    --card-bg: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Disclaimer Header */
.disclaimer-header {
    font-size: 0.9rem;
    background: white !important;
    color: var(--text-color);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.disclaimer-header a {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.disclaimer-header a:hover {
    text-decoration: underline;
}

/* Navbar Styling */
.navbar {
    box-shadow: var(--box-shadow);
    background-color: var(--card-bg) !important;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    margin-bottom: 4rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Betting Site Cards */
.betting-site-card {
    border: none;
    border-radius: 1.5rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.betting-site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.betting-site-card .card-header {
    background: linear-gradient(45deg, #f3f4f6 0%, #ffffff 100%);
    border: none;
    padding: 2rem 1rem;
    text-align: center;
}

.betting-site-card .logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.betting-site-card .logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.betting-site-card .card-body {
    padding: 2rem;
}

.betting-site-card .rating {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.betting-site-card .rating .stars {
    color: #F59E0B;
    margin-bottom: 0.5rem;
}

.betting-site-card .features {
    margin-bottom: 1.5rem;
}

.betting-site-card .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #4B5563;
}

.betting-site-card .feature-item i {
    color: #10B981;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.betting-site-card .card-footer {
    background: none;
    border-top: 1px solid #E5E7EB;
    padding: 1.5rem;
}

.betting-site-card .btn-visit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.betting-site-card .btn-visit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.betting-site-card .bonus-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Button Styling */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Form Styling */
.form-control, .form-select {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Footer Styling */
footer {
    background: var(--gradient-primary) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Styling */
.modal-content {
    border-radius: 1rem;
    border: none;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem 1rem 0 0;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .disclaimer-header {
        font-size: 0.8rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* For even smaller screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .hero-section p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* General Utility Classes */
.text-primary-custom {
    color: var(--primary-color);
}

.bg-primary-custom {
    background-color: var(--primary-color);
} 