:root {
    --color-bg: #121212;
    --color-bg-light: #1e1e1e;
    --color-cyan: #00f3ff;
    --color-purple: #bf00ff;
    --color-text: #ffffff;
    --color-text-muted: #aaaaaa;
    --font-head: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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


h1,
h2,
h3 {
    font-family: var(--font-head);
    font-weight: 700;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-text);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-purple));
    margin: 10px auto 0;
    border-radius: 2px;
}

.neon-text {
    color: var(--color-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.7);
}


.top-strip {
    background-color: #000;
    color: #888;
    font-size: 0.8rem;
    padding: 5px 0;
    text-align: center;
    border-bottom: 1px solid #333;
}


.main-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(5px);
}

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

.logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-text);
    font-weight: 700;
    text-shadow: 0 0 5px var(--color-purple);
}

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

.main-nav a {
    font-size: 0.95rem;
    text-transform: uppercase;
    font-weight: 500;
}

.main-nav a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
}

.burger-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.9)),
        url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-cyan);
}

.icon-box i {
    font-size: 2rem;
    margin-bottom: 10px;
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-head);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--color-cyan);
    color: var(--color-cyan);
}

.glow-effect:hover {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--color-cyan);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}


.about-section {
    background-color: var(--color-bg);
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-list li {
    font-family: var(--font-head);
    color: var(--color-purple);
}

.feature-list i {
    margin-right: 8px;
    color: var(--color-text);
}


.features-section {
    background-color: var(--color-bg-light);
}

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

.card {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--color-cyan);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.1);
}

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

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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


.download-section {
    text-align: center;
    background: linear-gradient(45deg, #121212, #220022);
}

.section-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.store-btn i {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #fff;
}

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

.btn-text small {
    font-size: 0.7rem;
    color: #ccc;
    text-transform: uppercase;
}

.btn-text span {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-head);
}

.google-btn:hover {
    border-color: #3DDC84;
    box-shadow: 0 0 15px rgba(61, 220, 132, 0.3);
}

.apple-btn:hover {
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


.steps-section {
    background-color: var(--color-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-cyan);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-bg);
    border: 2px solid var(--color-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
}

.timeline-content h3 {
    color: var(--color-purple);
    margin-bottom: 10px;
}


.guide-section {
    background-color: var(--color-bg-light);
}

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

.guide-box {
    padding: 20px;
    border-left: 4px solid var(--color-purple);
    background-color: #252525;
}

.guide-box h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}


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

.faq-item {
    background-color: #1e1e1e;
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 40px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: var(--color-cyan);
    font-size: 1.5rem;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 20px 20px;
    color: var(--color-text-muted);
    border-top: 1px solid #333;
    margin-top: 10px;
}


.contact-section {
    background-color: var(--color-bg);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-list {
    margin-top: 30px;
}

.contact-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ccc;
}

.contact-list i {
    color: var(--color-cyan);
    font-size: 1.2rem;
}

.contact-form {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 5px;
    color: #fff;
    font-family: var(--font-body);
}

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

.form-feedback {
    margin-top: 15px;
    padding: 15px;
    background-color: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    text-align: center;
    border-radius: 5px;
}


.main-footer {
    background-color: #080808;
    padding: 50px 0 20px;
    border-top: 2px solid var(--color-purple);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 20px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 20px;
}

.footer-links a {
    color: var(--color-cyan);
    font-size: 0.9rem;
    text-decoration: underline;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #444;
}


.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links li {
    margin: 20px 0;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-family: var(--font-head);
}


@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .burger-menu {
        display: block;
    }

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

    .hero-icons {
        gap: 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 50px;
    }
}


.gallery-section {
    background-color: var(--color-bg);
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--color-cyan);
    font-size: 2.5rem;
    text-shadow: 0 0 10px var(--color-cyan);
}


.gallery-item:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 30px var(--color-purple);
    border: 2px solid var(--color-cyan);
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: var(--color-cyan);
    text-decoration: none;
}


@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}


@media (max-width: 768px) {

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        gap: 20px;
    }

    .gallery-item {
        height: 200px;
    }

    .close-lightbox {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}

.privacy-page {
    padding-top: 100px;
    padding-bottom: 80px;
    background-color: #121212;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #1e1e1e;
    border-radius: 10px;
    border: 1px solid #333;
}

.privacy-content h1 {
    color: var(--color-cyan);
    font-family: 'Orbitron', sans-serif;
    border-bottom: 2px solid var(--color-purple);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.privacy-content h2 {
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.privacy-content h3 {
    color: var(--color-cyan);
    font-family: 'Roboto', sans-serif;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}

.privacy-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.last-update {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    display: block;
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px;
    }
}