:root {
    --primary-color: 220 100% 50%; /* #0066FF */
    --secondary-color: 345 82% 56%; /* #E91E63 */
    --success-color: 120 100% 25%; /* #008000 */
    --warning-color: 45 100% 50%; /* #FFC107 */
    --danger-color: 0 84% 60%; /* #DC3545 */
    --dark-color: 210 11% 15%; /* #1A1D23 */
    --light-color: 210 11% 98%; /* #F5F7FA */
    --muted-color: 210 7% 56%; /* #868E96 */
    --gradient-primary: linear-gradient(135deg, hsl(220 100% 50%) 0%, hsl(345 82% 56%) 100%);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: hsl(var(--dark-color));
}

/* Header Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: hsl(var(--primary-color)) !important;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    background: linear-gradient(rgba(4, 35, 143, 0.6), rgba(97, 60, 106, 0.4));
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: /* ваш градиент или цвет */;
    pointer-events: none;  /* вот эта строка! */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Градиент на всю секцию #casinos */
#casinos.bg-light {
    background: #cdbcdd !important;
}

.casino-logo-img {
    display: block;
    width: 220px;
    height: 200px;
    object-fit: contain;
}

.org-logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.footer-brand img {
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Casino Cards */
.casino-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid hsl(var(--light-color));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.casino-logo-container {
    background: hsl(var(--light-color));
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.rating {
    font-size: 1.1rem;
}

.ranking-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.casino-name {
    color: hsl(var(--dark-color));
    font-weight: 600;
    margin-bottom: 1rem;
}

.casino-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.exclusive-badge, .special-offer-badge {
    background: hsl(var(--warning-color));
    color: hsl(var(--dark-color));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.bonus-btn {
    background: hsl(var(--danger-color)) !important;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.bonus-btn:hover {
    background: hsl(0 84% 50%) !important;
    transform: scale(1.05);
}

/* About Section */
.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-content ul li {
    padding: 0.75rem 0;
    font-size: 1rem;
}

/* FAQ Section */
.accordion-button {
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: hsl(var(--primary-color) / 0.1);
    color: hsl(var(--primary-color));
}

.accordion-body {
    padding: 1.25rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* Responsible Gambling */
.age-restriction-badge {
    display: inline-flex;
    align-items: center;
    background: hsl(var(--danger-color));
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    gap: 0.5rem;
}

.warning-box {
    background: hsl(var(--warning-color) / 0.1);
    border: 2px solid hsl(var(--warning-color));
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h5 {
    color: hsl(var(--warning-color));
    margin-bottom: 1rem;
}

.warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.warning-box li {
    margin-bottom: 0.5rem;
}

.org-link {
    text-decoration: none;
    color: hsl(var(--muted-color));
    transition: color 0.3s ease;
}

.org-link:hover {
    color: hsl(var(--primary-color));
}

.org-logo {
    width: 60px;
    height: 60px;
    background: hsl(var(--light-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.org-link:hover .org-logo {
    background: hsl(var(--primary-color));
    color: white;
    transform: scale(1.1);
}

/* Footer */
.footer-brand {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(var(--primary-color)) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
section[id] {
    scroll-margin-top: 80px;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .casino-card .row > div {
        text-align: center !important;
        border-bottom: 1px solid hsl(var(--light-color));
    }
    
    .casino-card .row > div:last-child {
        border-bottom: none;
    }
    
    .hero-section {
        height: 80vh;
        padding-top: 80px;
    }
    
    .org-logo {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

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

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

.casino-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Active navigation link styles */
.navbar-nav .nav-link.active {
    color: hsl(220 100% 50%) !important;
    font-weight: 600;
}

.bonus-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}