
:root {
    --primary-color: #3b66f5; 
    --secondary-color: #fccb44; 
    --accent-color: #e93e7f; 
    --dark-bg: #0b162a; 
    --card-bg: #15223e; 
    --text-color: #f0f0f0;
    --text-muted: #b0b8c8;
    --white: #ffffff;
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

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

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

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

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


.navbar {
    background-color: rgba(11, 22, 42, 0.95);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-bottom: 2px solid #2a3b5e;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo i {
    margin-right: 8px;
}

.nav-links ul {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    padding: 5px 10px;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}


.hero-section {
    height: 100vh;
    
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0; 
}

.hero-overlay {
    background: rgba(11, 22, 42, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 4px 6px rgba(0,0,0,0.5);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}


.btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #ffaa00);
    color: #332200;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 203, 68, 0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.scroll-arrow {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    animation: bounce 2s infinite;
    margin-top: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}


.section {
    padding: 80px 0;
}

.section-dark {
    background-color: #081020; 
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}


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

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

.about-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid var(--primary-color);
}


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

.feature-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.feature-card:hover {
    border-bottom-color: var(--secondary-color);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


.modes-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mode-item {
    background: linear-gradient(90deg, var(--card-bg) 0%, transparent 100%);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.mode-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--white);
}

.mode-item i {
    color: var(--secondary-color);
}


.download-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #1e3a8a 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.download-desc {
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: 1px solid #444;
    transition: var(--transition);
    min-width: 200px;
}

.store-btn:hover {
    background: #222;
    border-color: var(--secondary-color);
}

.store-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.btn-text strong {
    font-size: 1.1rem;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}


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

.tips-list li {
    background: var(--card-bg);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tips-list i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.tip-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-size: 1.1rem;
}

.tip-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


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

.accordion-item {
    margin-bottom: 10px;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0,0,0,0.2);
}

.accordion-content p {
    padding: 20px;
    color: var(--text-muted);
}


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

.info-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.game-form {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #2a3b5e;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #081020;
    border: 1px solid #2a3b5e;
    color: var(--white);
    border-radius: 6px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.8rem;
    line-height: 1.3;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}


.site-footer {
    background-color: #050a14;
    padding: 50px 0 20px;
    border-top: 4px solid var(--secondary-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 15px;
    color: var(--white);
}

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

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

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

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1c2b4a;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #556;
}


.privacy-section {
    padding-top: 120px; 
    min-height: 80vh;
}

.privacy-content-wrapper {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
}

.privacy-content-wrapper h1 {
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.privacy-content-wrapper h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 30px;
    color: var(--white);
    border-bottom: 1px solid #2a3b5e;
    padding-bottom: 10px;
}

.privacy-content-wrapper p, 
.privacy-content-wrapper ul {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.privacy-content-wrapper ul {
    list-style: disc;
    padding-left: 20px;
}


@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0b162a;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 2px solid var(--secondary-color);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-grid, 
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}