/* General Styles */
:root {
    --primary-color: #0f1b3f;
    --secondary-color: #f4b400;
    --accent-color: #ef5350;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: #fff;
    --dark-bg: #0f1b3f;
    --medium-bg: #1c2b4f;
    --light-bg: #f5f5f5;
    --border-radius: 8px;
    --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 4rem 0;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Hero Section Styles */
.hero {
    background-color: var(--dark-bg);
    background-image: radial-gradient(circle, var(--medium-bg) 0%, var(--dark-bg) 100%);
    color: var(--light-text);
    text-align: center;
    padding: 5rem 0;
    position: relative;
}

.hero::before {
    content: '';
    background-image: url('./img/1.png');
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.play-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
}

.play-btn img {
    height: 60px;
}

.play-btn-small img {
    height: 45px;
}

/* Team Section Styles */
.team {
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.team-intro, .team-description {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.team-member {
    background-color: var(--medium-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.member-photo.blue {
    background: linear-gradient(45deg, #1565c0, #64b5f6);
}

.member-photo.red {
    background: linear-gradient(45deg, #c62828, #ef5350);
}

.member-photo.orange {
    background: linear-gradient(45deg, #e65100, #ff9800);
}

.member-photo.green {
    background: linear-gradient(45deg, #2e7d32, #81c784);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Stats Section Styles */
.stats {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.stats-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.stats-intro h2 {
    text-align: left;
}

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

.stat-card {
    background-color: var(--dark-bg);
    color: var(--light-text);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.stat-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section Styles */
.testimonials {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 5rem 0;
}

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

.testimonial {
    background-color: var(--medium-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rating {
    margin-bottom: 1rem;
}

.star {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background-color: #f5f5f5; */
    background-image: url(./img/6.png);
    background-size: cover;
    margin-right: 1rem;
}

.screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.screenshot {
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.screenshot:hover {
    transform: scale(1.02);
    box-shadow: var(--card-shadow);
}

/* Contact Section Styles */
.contact {
    background-color: var(--light-bg);
    padding: 5rem 0;
    text-align: center;
}

.contact h2 {
    margin-bottom: 1rem;
}

.contact p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input,
textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.send-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.send-btn:hover {
    background-color: #d32f2f;
    transform: translateY(-2px);
}

/* Thank You Page Styles */
.thank-you {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
}

.thank-you h1 {
    margin-bottom: 2rem;
}

.thank-you p {
    max-width: 700px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
}

/* Legal Pages Styles */
.legal {
    padding: 5rem 0;
}

.legal h1 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.legal-date {
    color: #666;
    margin-bottom: 2rem;
}

.legal-content h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

/* Footer Styles */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: var(--light-text);
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--secondary-color);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .stats-intro h2 {
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .team-grid,
    .stats-grid,
    .testimonial-grid,
    .screenshots {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}