:root {
    --primary-color: #4f46e5;
    --secondary-color: #3730a3;
    --text-color: #e2e8f0;
    --dark-bg: #0f172a;
    --darker-bg: #1e293b;
    --card-bg: #1e293b;
    --border-color: #334155;
    --success-color: #10b981;
    --label-bg: #374151;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
}

/* Topbar */
.topbar {
    background-color: var(--darker-bg);
    color: var(--text-color);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
}

.topbar p {
    margin: 0;
    text-align: center;
}

.topbar i {
    margin-right: 8px;
    color: #fbbf24;
}

/* Navbar */
.navbar {
    background-color: var(--darker-bg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand img.logo {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background-color: var(--darker-bg);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero-section .lead {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
}

/* Listings Section */
.listings-section {
    padding: 60px 0;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--darker-bg);
    border-radius: 8px;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 500;
}

.listing-header > div {
    flex: 1;
    text-align: center;
}

.listing-header > div:first-child {
    text-align: left;
}

.listing-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    position: relative;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-brand {
    position: relative;
    text-align: center;
}

.order-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
}

.listing-brand img {
    max-width: 150px;
    height: auto;
    margin: 10px 0;
}

.top-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
}

.label {
    display: inline-block;
    background: var(--label-bg);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.label.primary {
    background: var(--primary-color);
}

.label.warning {
    background: #92400e;
    color: #fef3c7;
}

.welcome-bonus {
    text-align: center;
    background: var(--darker-bg);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.welcome-bonus h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
}

.welcome-bonus p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

.pros ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-color);
}

.pros i {
    color: var(--success-color);
    margin-right: 8px;
}

.action-col {
    text-align: center;
}

.min-deposit {
    background: var(--darker-bg);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.min-deposit span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.min-deposit p {
    font-weight: 600;
    margin: 5px 0 0;
    color: #fff;
    font-size: 1.2rem;
}

.score {
    margin-bottom: 15px;
}

.score span {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.rating {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

.disclaimer i {
    margin-right: 8px;
    color: #fbbf24;
}

/* Footer Styles */
.footer {
    background-color: var(--darker-bg);
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.warning-text {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

.payment-methods {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
    margin: 30px 0;
}

.payment-icon {
    height: 60px;
    width: 130px;
    object-fit: contain;
    margin: 0 10px;
}



.footer-links {
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--primary-color);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 767.98px) {
    .footer {
        padding: 30px 0 20px;
    }

    .warning-text {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .payment-methods {
        padding: 20px 0;
        margin: 20px 0;
        overflow-x: auto;
    }

    .payment-methods .row {
        flex-wrap: nowrap;
        margin: 0 -5px;
    }

    .payment-icon {
        height: 60px;
        width: 130px;
        margin: 0 8px;
    }

    .footer-links {
        margin-bottom: 20px;
    }

    .footer-links .row {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin: 5px 0;
        display: block;
    }
}

/* About Page Styles */
.about-section {
    padding: 60px 0;
}

.content-card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    padding: 40px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.content-card h2 {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.expertise-items {
    margin: 40px 0;
}

.expertise-item {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: var(--darker-bg);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.commitment-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.commitment-list i {
    color: var(--success-color);
    margin-right: 12px;
}

.responsible-gaming {
    margin-top: 40px;
    padding: 30px;
    background: var(--darker-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.helpline {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.helpline i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.emergency-support {
    background: var(--darker-bg);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid var(--border-color);
}

.helpline-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.helpline-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.helpline-btn i {
    margin-right: 10px;
}

.helpline-note {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

.contact-form {
    margin-top: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.form-control, .form-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: var(--darker-bg);
    color: var(--text-color);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-check-label {
    font-size: 14px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .listing-card {
        padding: 20px;
    }
    
    .listing-brand img {
        max-width: 120px;
    }
    
    .col-md-3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .listing-card {
        text-align: center;
    }
    
    .pros ul {
        display: inline-block;
        text-align: left;
    }
    
    .action-col {
        margin-top: 20px;
    }
} 

/* Responsive Styles for About and Contact Pages */
@media (max-width: 991.98px) {
    .content-card {
        padding: 30px;
    }
    
    .expertise-items {
        margin: 30px 0;
    }
}

@media (max-width: 767.98px) {
    .content-card {
        padding: 25px;
    }
    
    .expertise-item {
        padding: 15px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .emergency-support {
        text-align: center;
    }
    
    .helpline-btn {
        width: 100%;
        justify-content: center;
    }
} 

/* Mobile Responsive Design */
@media (max-width: 767.98px) {
    .listing-card {
        padding: 20px;
    }

    .listing-brand {
        text-align: center;
        margin-bottom: 20px;
    }

    .listing-brand img {
        max-width: 180px;
        margin: 0 auto;
    }

    .welcome-bonus {
        text-align: center;
        margin: 20px 0;
    }

    .pros {
        text-align: center;
        margin: 20px 0;
    }

    .pros ul {
        display: inline-block;
        text-align: left;
    }

    .row.align-items-center {
        margin-bottom: 15px;
    }

    /* Hide original min-deposit and score in desktop columns */
    .col-md-2 .min-deposit,
    .action-col .score {
        display: none;
    }

    /* Mobile specific layout for min-deposit and score */
    .min-deposit-score-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0;
    }

    .min-deposit-score-row .min-deposit {
        flex: 1;
        margin: 0;
        text-align: left;
        display: block;
    }

    .min-deposit-score-row .score {
        flex: 1;
        margin: 0;
        text-align: right;
        display: block;
    }

    .btn-primary {
        width: 100%;
        margin-top: 15px;
    }

    /* Adjust column widths for mobile */
    .col-md-2, .col-md-3 {
        width: 100%;
        margin-bottom: 0;
    }

    /* Center align action column */
    .action-col {
        text-align: center;
        margin-top: 0;
    }
} 

/* Text Sections */
.text-section {
    padding: 40px 0;
}

.text-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 2rem;
}

.text-section .content-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.text-section p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.text-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.text-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.text-section ul li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Responsive styles for text sections */
@media (max-width: 767.98px) {
    .text-section {
        padding: 30px 0;
    }

    .text-section h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .text-section .content-card {
        padding: 20px;
    }
} 