/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff6b00;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e05d00;
    transform: translateY(-3px);
}

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo img {
    height: 40px;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #ff6b00;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/mockup.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Section */

.game-actions {
    display: flex;
    flex-direction: column;
    padding: 0 20px 20px;
    gap: 10px;
}

.play-store-btn img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.demo-btn {
    display: block;
    padding: 8px 15px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.games {
    padding: 100px 0;
    background-color: white;
}

.games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.game-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.5rem;
}

.game-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #f1f1f1;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Careers Section */
.careers {
    padding: 100px 0;
    background-color: white;
    text-align: center;
}

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

.careers p {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.jobs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.job {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.job:hover {
    transform: translateY(-5px);
}

.job h3 {
    margin-bottom: 10px;
    color: #ff6b00;
}

.job p {
    color: #666;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f1f1f1;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: #ff6b00;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #ff6b00;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 200px;
    margin-bottom: 50px;
}

.footer-links h3,
.footer-legal h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: #ff6b00;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Policy Page Styles */
.policy-content {
    padding: 100px 0;
    background-color: white;
}

.policy-article {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-article h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.policy-article h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #ff6b00;
}

.policy-article h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #333;
}

.policy-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.policy-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-text ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .policy-article {
        padding: 20px;
    }
    
    .policy-article h1 {
        font-size: 2rem;
    }
    
    .policy-article h2 {
        font-size: 1.5rem;
    }
}