:root {
    --primary-color: #1e1e2d;
    --secondary-color: #2b2b40;
    --bg-darky: #2E2D39;
    --accent-color: #6366f1;
    --gold: #ffd700;
    --text-color: #e2e8f0;
}

/* Base Styles */
body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    font-size: 17px;
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.section {
    margin-bottom: 60px;
}

h3 {
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .display-4 {
        font-size: 3.5rem;
    }
}

.bg-darky {
    background-color: var(--bg-darky);
}

/* Navigation */
.navbar {
    background-color: rgba(30, 30, 45, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 180px 0 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Author Info */
.author-info {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Casino Table */
.casino-table {
    background: var(--secondary-color);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-dark {
    background-color: transparent;
}

.table-dark thead th {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    font-weight: 600;
    padding: 1rem;
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.table-dark tbody td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    vertical-align: middle;
}

/* Casino Logo */
.casino-logo {
    width: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rating Badge */
.rating-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1.1rem;
}

/* Feature Tags */
.casino-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(99, 102, 241, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4f46e5 100%);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Feature Cards */
.feature-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* Provider Cards */
.provider-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.provider-card:hover {
    transform: translateY(-5px);
}

/* FAQ Section */
.faq-section {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 2rem;
}

.accordion-item {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.75rem;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(99, 102, 241, 0.1) !important;
    color: var(--text-color) !important;
    font-weight: 600;
    padding: 1.25rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color) !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236366f1' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E") !important;
}

.accordion-body {
    padding: 1.25rem;
    background: rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--accent-color) !important;
}

/* License Badges */
.license-badge {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 100px 0 60px;
    }

    .casino-features {
        flex-direction: column;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .table-responsive {
        margin: 0 -1rem;
    }

    .footer {
        padding: 3rem 0 1rem;
    }
}

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

.feature-card, .provider-card {
    animation: fadeIn 0.5s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Additional Utility Classes */
.text-accent {
    color: var(--accent-color);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--accent-color) 0%, #4f46e5 100%);
}

.shadow-custom {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.border-accent {
    border-color: var(--accent-color) !important;
}

/* Status Badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-badge.verified {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.status-badge.new {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning);
}

/* Bonus Cards */
.bonus-card {
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Game Provider Logo */
.provider-logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* Review Stars */
.review-stars {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Alert Messages */
.alert-custom {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Payment Method Icons */
.payment-icon {
    width: 50px;
    height: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Progress Bars */
.progress-custom {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-custom {
    background: linear-gradient(90deg, var(--accent-color) 0%, #4f46e5 100%);
    height: 100%;
    border-radius: 4px;
}

.navbar-brand img {
    max-width: 125px;
}

.desk-no {
    display: none;
}

.ptb-6 {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 80px;
    }

    .hero-section h1{
        font-size:35px;
        margin-bottom: 10px!important;
    }

    .hero-section p {
        font-size: 17px;
    }

    .mob-no {
        display: none;
    }

    .table-responsive {
        border: none;
    }
    
    .casino-table thead {
        display: none;
    }
    
    .casino-table tbody tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.5rem;
        background: transparent;
        border-radius: 10px;
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1); 
    }
    
    .casino-table tbody td {
        display: block;
        border: none;
        padding: 0.5rem 0;
        text-align: center;
        background: transparent;
        width: 90%;
    }
    
    .casino-table td:first-child {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .casino-table .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .casino-table .d-flex span {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }
    
    .casino-table td:nth-child(3) {
        font-size: 1.3rem;
        margin: 0.5rem 0;
    }
    
    .casino-features {
        justify-content: center;
        margin: 0.5rem 0;
    }
    
    .feature-tag {
        margin: 0.25rem;
    }
    
    .btn-primary {
        width: 80%;
        margin-top: 1rem;
        padding: 0.75rem;
        font-size: 1.1rem;
    }

    .rating-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.2rem;
    }

    .casino-table tbody tr {
        position: relative;
    }

    .casino-logo {
        width: 200px;
    }

    .name span {
        display: none;;
    }

    .desk-no {
        display: flex!important;
        max-width: 250px;
    }
}