/* Estilos generales */
* {
    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: #f8f8f8;
}

a {
    color: #772d2e;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #b44344;
}

.btn {
    display: inline-block;
    background-color: #772d2e;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b44344;
    color: #fff;
}

/* Header y navegación */
header {
    background-color: #1c2331;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e3b04b;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #e3b04b;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover {
    color: #e3b04b;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Sección Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('capsule_616x353.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #e3b04b;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Secciones de características */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.feature {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature h3 {
    color: #772d2e;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Capturas de pantalla */
.screenshots {
    background-color: #f0f0f0;
    padding: 50px 20px;
    text-align: center;
}

.screenshots h2 {
    margin-bottom: 30px;
    color: #1c2331;
    font-size: 2rem;
}

.screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.screenshot {
    margin: 10px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background-color: #1c2331;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: #e3b04b;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Páginas de contenido */
.page-content {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

.page-content h2 {
    color: #1c2331;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

/* Estilos para about-us */
.about-section {
    margin-bottom: 50px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 15px;
}

.mission-section, .values-section {
    margin-bottom: 40px;
}

.values-list {
    margin-left: 20px;
    margin-top: 15px;
}

.values-list li {
    margin-bottom: 10px;
}

/* Estilos para contacto */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-details, .contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.contact-details h3, .contact-form h3 {
    color: #772d2e;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

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

.faq-section {
    margin-top: 50px;
}

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

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

/* Estilos para páginas legales */
.legal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h3 {
    color: #772d2e;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.legal-section h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1c2331;
}

.legal-section p, .legal-section ul, .legal-section ol {
    margin-bottom: 15px;
}

.legal-section ul, .legal-section ol {
    margin-left: 20px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

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

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

.cookies-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature {
        min-width: 100%;
    }
    
    .screenshot {
        width: calc(50% - 20px);
    }
    
    .about-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-details, .contact-form {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    nav ul li {
        margin: 0 8px;
    }
    
    .screenshot {
        width: 100%;
    }
    
    .page-content h2 {
        font-size: 1.8rem;
    }
    /* About the Game Section */
.about-game {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

.about-game h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.about-game p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonials Section */
.testimonials {
    background-color: #2a2a2a;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700; /* Gold color */
}

.testimonial {
    max-width: 800px;
    margin: 20px auto;
    background-color: #444;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial p:last-child {
    font-weight: bold;
    color: #ffd700;
}

/* FAQ Section */
.faq {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #ddd;
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 15px auto;
}

.faq-item h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-game p, .faq-item p, .testimonial p {
        font-size: 1rem;
    }

    .about-game h2, .testimonials h2, .faq h2 {
        font-size: 2rem;
    }
}
}