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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #006fe6;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
    color: #006fe6;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #555;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color: #006fe6;
}

/* Hero Section */
.hero {
    padding: 40px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.hero-text p {
    color: #666;
    margin-bottom: 20px;
}

.age-warning {
    margin: 20px 0;
}

.age-warning h2 {
    color: #e63946;
    font-size: 1.5rem;
}

.responsible-gaming {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.age-icon {
    background-color: #e63946;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.gaming-logo {
    height: 40px;
    object-fit: contain;
}

/* Casino List */
.casino-list {
    padding: 40px 0;
}

.casino-item {
    display: grid;
    grid-template-columns: 50px 150px 1fr 250px;
    gap: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #006fe6;
    text-align: center;
}

.casino-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.casino-logo img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

.casino-info {
    display: flex;
    gap: 20px;
}

.bonus-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.bonus-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.link-details {
    font-size: 0.8rem;
    color: #006fe6;
    text-decoration: underline;
}

.casino-features ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

.casino-features ul li i {
    color: #28a745;
}

.casino-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-play {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    display: block;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-play:hover {
    background-color: #218838;
}

.btn-subtitle {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.warning-text {
    font-size: 0.75rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.warning-text i {
    color: #e63946;
    margin-right: 5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: #f0f8ff;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
}

.feature i {
    font-size: 2.5rem;
    color: #006fe6;
    margin-bottom: 15px;
}

.feature h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo i {
    margin-right: 8px;
    color: #006fe6;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #ccc;
}

.footer-links h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-responsible h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.responsible-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.age-icon-footer {
    background-color: #e63946;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.footer-responsible img {
    height: 50px;
    object-fit: contain;
}

.footer-responsible p {
    font-size: 0.8rem;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: #999;
}

/* Page Header */
.page-header {
    background-color: #006fe6;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* About Page */
.about-content {
    padding: 50px 0;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-section p {
    margin-bottom: 15px;
    color: #555;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.about-section ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #555;
}

/* Contact Page */
.contact-content {
    padding: 50px 0;
    display: grid;

    gap: 50px;
}

.contact-info h2, .contact-form h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.contact-method {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-method i {
    font-size: 2rem;
    color: #006fe6;
    margin-bottom: 15px;
}

.contact-method h3 {
    margin-bottom: 10px;
    color: #333;
}

.social-media h3 {
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #006fe6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #0056b3;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

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

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.btn-submit {
    background-color: #006fe6;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0056b3;
}

.faq-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    color: #555;
}

/* Terms and Cookies Pages */
.terms-content, .cookies-content {
    padding: 50px 0;
}

.last-updated {
    text-align: right;
    margin-bottom: 30px;
    color: #777;
    font-style: italic;
}

.terms-section, .cookies-section {
    margin-bottom: 40px;
}

.terms-section h2, .cookies-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.terms-section p, .cookies-section p {
    margin-bottom: 15px;
    color: #555;
}

.terms-section ul, .cookies-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.terms-section ul li, .cookies-section ul li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: #555;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table th, .cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

/* Responsible Gaming Page */
.responsible-gaming-content {
    padding: 50px 0;
}

.responsible-intro {
    text-align: center;
    margin-bottom: 40px;
}

.responsible-intro p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #555;
    font-size: 1.1rem;
}

.responsible-icons-large {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.age-icon-large {
    background-color: #e63946;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.8rem;
}

.gaming-logo-large {
    height: 60px;
    object-fit: contain;
}

.responsible-section {
    margin-bottom: 50px;
}

.responsible-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.principles-grid, .tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.principle-item, .tool-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.principle-item i, .tool-item i {
    font-size: 2rem;
    color: #006fe6;
    margin-bottom: 15px;
}

.principle-item h3, .tool-item h3 {
    margin-bottom: 10px;
    color: #333;
}

.warning-signs {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
}

.warning-signs li {
    margin-bottom: 8px;
    color: #856404;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.help-resource {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.help-resource h3 {
    margin-bottom: 15px;
    color: #333;
}

.help-resource p {
    margin-bottom: 8px;
    color: #555;
}

.help-resource i {
    margin-right: 8px;
    color: #006fe6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features, .principles-grid, .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .help-resources {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .casino-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .casino-info {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .social-icons {
        justify-content: center;
    }
    
    .responsible-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features, .principles-grid, .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .responsible-icons-large {
        flex-direction: column;
    }
}