/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b8860b;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #fff;
    --dark-text: #222;
    --border-color: #ddd;
    --background-light: #f9f9f9;
    --background-dark: #2c3e50;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --info-color: #3498db;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: bold;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.cta-button,
.form-submit {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover,
.form-submit:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark-text);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

input.error,
select.error,
textarea.error {
    border-color: var(--error-color);
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

/* Cards */
.content-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card-body {
    padding: 1.5rem;
}

.content-card h3 {
    margin-bottom: 1rem;
}

.content-card p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Feature Lists */
.feature-list {
    margin: 1.5rem 0;
}

.feature-list ul {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

/* Prices */
.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Badges */
.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumb {
    margin: 1rem 0;
    color: var(--text-color);
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-color);
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
}

/* Policy Cards */
.policy-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.policy-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-card h3 {
    margin-bottom: 1rem;
}

.policy-card ul {
    list-style: none;
}

.policy-card li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    background: #fff;
    padding: 3rem 0;
    margin: 3rem 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 8px;
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Offline Status */
.offline {
    position: relative;
}

.offline::before {
    content: 'You are offline';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--warning-color);
    color: var(--light-text);
    text-align: center;
    padding: 0.5rem;
    z-index: 1000;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-dark);
    color: var(--light-text);
    padding: 1rem;
    text-align: center;
    display: none;
    z-index: 1000;
}

.accept-cookies {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: url('../images/bg.avif') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 200px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-content .cta-button {
    font-size: 1.2rem;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Sections */
.home-content {
    padding: 4rem 0;
    background: var(--background-light);
}

.featured-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-section.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.featured-section.reverse .section-content {
    direction: ltr;
}

.section-content {
    padding: 2rem;
}

.section-content h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.section-image {
    overflow: hidden;
    border-radius: 8px;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

/* Quick Links Grid */
.quick-links-grid {
    padding: 4rem 0;
    background: var(--background-dark);
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.grid-item h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.grid-item p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-content {
        padding: 150px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .featured-section,
    .featured-section.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .section-content {
        padding: 1rem;
        text-align: center;
    }

    .section-image {
        order: -1;
    }

    .section-image img {
        height: 300px;
    }

    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-content h2 {
        font-size: 1.75rem;
    }

    .grid-item {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: none;
        color: var(--text-color);
    }

    .content-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 


.footer-grid{

    display: flex;
    justify-content: space-around;
}

.footer-bottom {
    text-align: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.footer-bottom1 {
        background-color: #2d385a;
}


.p-container{

    padding: 100px 50px;
}

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }

            .disclaimer{
            margin-left: 50px !important;
            margin-right: 50px !important;
            }

            .bottom-bar p {
            margin: 5px 150px;
            color: #cbd5e0;
        }

        .disclaim-img{
            display: grid !important;
            justify-items: center;
        }


        }


        .disclaimer {
            margin-left: 350px;
            margin-right: 350px;
            font-size: 12px;
        }

        .resp-play {
            width: 90px;
            margin-left: 15px;
        }

        .gamb-aware {
            width: 100px;
            margin-left: 15px;

        }

        .disclaim-img{
                    display: flex;
                    align-items: center;
                    justify-content: center;
        }

        .disclaim-img img{
                margin: 10px 50px;
        }

