/* Global Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Topbar */
.topbar {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.topbar p {
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Features Section */
.features {
    background-color: var(--light-gray);
}

.feature-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Listings Section */
.listing-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bonus h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.bonus p {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pros {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pros li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.rating .score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating .votes {
    font-size: 0.8rem;
    color: #6b7280;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-1px);
}

.disclaimer {
    color: #6b7280;
    font-size: 0.8rem;
}

/* Footer */
.footer {
    background-color: var(--light-gray);
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Content Sections */
.why-choose-us h2,
.secure-betting h2,
.regulated-betting h2,
.disclaimer-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.feature-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Secure Betting Section */
.content-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
}

.content-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.content-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Regulated Betting Section */
.regulation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.regulation-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4b5563;
}

.regulation-list i {
    color: var(--primary-color);
}

.content-block {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Disclaimer Section */
.disclaimer-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
}

.disclaimer-content {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}

.support-list {
    list-style: none;
    padding-left: 1rem;
}

.support-list li {
    margin-bottom: 0.5rem;
}

.disclaimer-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background-color: #1f2937;
    color: #e5e7eb;
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-notice p,
.footer-legal p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #d1d5db;
}

.footer-certifications {
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-certifications .col-auto {
    padding: 0.5rem;
}

.footer-certifications img {
    opacity: 0.7;
}


.footer-links {
    padding: 1.5rem 0;
}

.footer-links ul {
    margin: 0;
    padding: 0;
}

.footer-links .list-inline-item:not(:last-child) {
    margin-right: 1.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-copyright a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-links .list-inline-item {
        display: block;
        margin: 0.5rem 0 !important;
    }

    .footer-certifications .col-auto {
        padding: 0.75rem;
    }
    
    .footer-certifications img {
        height: 35px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .listing-item {
        padding: 1rem;
    }
    
    .listing-item .row > div {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .pros {
        display: inline-block;
        text-align: left;
    }
    
    .rating {
        margin: 1rem 0;
    }

    .feature-card,
    .content-card,
    .content-block {
        margin-bottom: 1rem;
    }
    
    .why-choose-us h2,
    .secure-betting h2,
    .regulated-betting h2,
    .disclaimer-section h2 {
        font-size: 1.75rem;
    }
} 

/* Page Specific Styles */

/* About Page */
.about-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Contact Page */
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.info-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Cookie Policy Page */
.cookie-type {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.cookie-type h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Responsible Gaming Page */
.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.warning-signs {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.warning-signs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-signs li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.warning-signs li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    height: 100%;
}

.tool-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Adjustments for New Pages */
@media (max-width: 768px) {
    .about-card,
    .contact-form-card,
    .contact-info-card,
    .cookie-type,
    .principle-card,
    .tool-card,
    .resource-item {
        margin-bottom: 1rem;
    }

    .contact-info-card {
        margin-top: 2rem;
    }
} 

/* Common Page Styles */
.content-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-section h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Privacy Page Styles */
.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* About Page Styles */
.about-image {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.about-card {
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.about-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact Page Styles */
.contact-form-card {
    padding: 2.5rem;
}

.contact-form-card .form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.1);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.contact-info-card .info-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-card .info-item:last-child {
    border-bottom: none;
}

.contact-info-card i {
    color: white;
    opacity: 0.9;
}

.contact-info-card h3 {
    color: white;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.contact-info-card p {
    color: rgba(255,255,255,0.9);
}

.contact-info-card a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-card a:hover {
    opacity: 0.8;
}

/* Cookie Policy Page Styles */
.cookie-type {
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.cookie-type:hover {
    transform: translateX(5px);
}

.cookie-type h3 {
    display: flex;
    align-items: center;
}

.cookie-type h3:before {
    content: "🍪";
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsible Gaming Page Styles */
.principle-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.principle-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.principle-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.principle-card:hover i {
    transform: scale(1.1);
}

.warning-signs {
    border-left: 4px solid #dc2626;
}

.warning-signs li {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.warning-signs li:last-child {
    border-bottom: none;
}

.warning-signs li:before {
    content: "⚠️";
    margin-right: 1rem;
    font-size: 1.2rem;
}

.tool-card {
    padding: 2rem;
    text-align: left;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.resource-item {
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-5px);
}

.resource-item .btn {
    margin-top: 1rem;
}

/* Alert Styles */
.alert-info {
    background-color: rgba(37, 99, 235, 0.1);
    border: none;
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
    padding: 1.5rem;
}

/* Button Styles */
.btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 1.5rem;
    }

    .about-card,
    .principle-card,
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-info-card {
        margin-top: 2rem;
    }

    .cookie-type,
    .resource-item {
        margin-bottom: 1rem;
    }

    .principle-card i {
        font-size: 2rem;
    }
} 