/* Font Faces */
@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'TildaSans';
    src: url('fonts/TildaSans-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TildaSans', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header and Navigation */
header {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #00ff88;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section with Background */
.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 150px 5% 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-bg h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-bg p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}

/* Dark Casino Section */
.casinos-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.casinos-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #00ff88;
    font-weight: 700;
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.casino-card {
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid #444;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.casino-card:hover {
    border-color: #00ff88;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

.casino-logo-section {
    width: 150px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.casino-logo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casino-info {
    flex: 1;
}

.casino-info h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: bold;
}

.casino-info h4 {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 10px;
    font-weight: normal;
}

.casino-info p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

.casino-rating {
    text-align: center;
    margin: 0 20px;
}

.rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 5px;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.casino-action .play-btn {
    background: #00ff88;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casino-action .play-btn:hover {
    background: #00cc6a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
    color: #333333;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.about-text p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Info Section */
.info-section {
    background: #1a1a1a;
    padding: 80px 0;
}

.info-section h2 {
    font-size: 2.5rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.info-section > .container > p {
    font-size: 1.2rem;
    color: #cccccc;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: rgba(40, 40, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #00ff88;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.1);
}

.info-card h3 {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #cccccc;
    line-height: 1.7;
}

.guide-section {
    margin-top: 4rem;
    background: rgba(40, 40, 40, 0.6);
    padding: 3rem;
    border-radius: 15px;
}

.guide-section h3 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-section h4 {
    color: #00ff88;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.guide-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.guide-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.registration-steps {
    color: #cccccc;
    padding-left: 2rem;
}

.registration-steps li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.payment-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.payment-column ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.payment-column li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 60px 0;
    background: rgba(255, 193, 7, 0.1);
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.gambling-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.gambling-text h3 {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gambling-text p {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.gambling-text ul {
    list-style: none;
    padding: 0;
}

.gambling-text li {
    margin-bottom: 0.5rem;
}

.gambling-text a {
    color: #ffc107;
    text-decoration: none;
    font-weight: bold;
}

.gambling-text a:hover {
    text-decoration: underline;
}

.responsible-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.responsible-logos a {
    display: inline-block;
    transition: transform 0.3s, opacity 0.3s;
}

.responsible-logos a:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.responsible-logos img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Contact Form Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 204, 106, 0.9) 100%), url('img/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 5% 60px;
    text-align: center;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(40, 40, 40, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background: rgba(60, 60, 60, 0.9);
    color: #ffffff;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #00ff88;
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #00cc6a;
}

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: white;
    padding: 120px 5% 40px;
    text-align: center;
    margin-top: 70px;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 5% 60px;
    line-height: 1.8;
}

.legal-content h1 {
    color: #00ff88;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #00ff88;
    margin: 2rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #cccccc;
}

.legal-content ul {
    color: #cccccc;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #00ff88;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: #00ff88;
}

footer p {
    color: #999999;
    font-size: 0.9rem;
}

.footer-info {
    margin-bottom: 2rem;
}

.company-info {
    background: rgba(40, 40, 40, 0.6);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 2rem;
    text-align: left;
}

.company-info p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.contact-details {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.contact-details h4 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.contact-details a {
    color: #00ff88;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: flex;
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .hero-bg {
        background-attachment: scroll;
        padding: 120px 5% 60px;
    }
    
    .hero-bg h1 {
        font-size: 2rem;
    }
    
    .hero-bg p {
        font-size: 1rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .casino-logo-section {
        width: 120px;
        height: 60px;
    }
    
    .casino-rating {
        margin: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gambling-content {
        text-align: center;
    }
    
    .responsible-logos {
        gap: 1.5rem;
    }
    
    .responsible-logos img {
        height: 50px;
        max-width: 120px;
    }
    
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 120px 5% 60px;
    text-align: center;
    margin-top: 70px;
    border-bottom: 2px solid #00ff88;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #cccccc;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.content-section {
    padding: 40px 0;
}

/* Casino Cards */
.casinos-section {
    padding: 40px 0;
}

.casino-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.casino-card:hover {
    border-color: #00ff88;
    box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3);
}

.casino-rank {
    background: #00ff88;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.casino-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.casino-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-details h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.casino-rating img {
    height: 20px;
}

.casino-rating span {
    color: #00ff88;
    font-weight: bold;
}

.casino-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.casino-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary {
    background: #00ff88;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #00cc6a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #000;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.6);
    margin: 40px 0;
    border-radius: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #00ff88;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Responsible Gambling */
.responsible-gambling {
    padding: 40px 0;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    border-radius: 10px;
    margin: 40px 0;
}

.gambling-awareness {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gambling-awareness img {
    height: 60px;
    width: auto;
}

.gambling-text h3 {
    color: #ffc107;
    margin-bottom: 10px;
}

.gambling-text p {
    color: #ffffff;
    margin: 0;
}

.gambling-text a {
    color: #ffc107;
    text-decoration: underline;
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 204, 106, 0.9) 100%), url('img/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 5% 60px;
    text-align: center;
    margin-top: 70px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-hero p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: #00ff88;
    color: #000000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #00cc6a;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #00ff88;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

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

.footer-links a:hover {
    color: #00ff88;
}

footer p {
    color: #999999;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-hero {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: white;
    padding: 120px 5% 40px;
    text-align: center;
    margin-top: 70px;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
    font-weight: 300;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 5% 60px;
    line-height: 1.8;
}

.legal-content h1 {
    color: #00ff88;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #00ff88;
    margin: 2rem 0 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
    
    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .casino-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .casino-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .casino-features {
        justify-content: center;
    }
    
    .casino-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gambling-awareness {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-hero h1,
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .company-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .company-info p {
        font-size: 0.9rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
}
