:root {

    --primary-color: #7000ff;
    --primary-hover: #8a2be2;
    --accent-color: #00f3ff;
    --dark-bg: #050510;
    --dark-secondary: #0f0f1f;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #e0e0e0;
    --text-muted: #a0a0b0;
    --heading-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-glow: 0 0 20px rgba(112, 0, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.7;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 243, 255, 0.1) 0%, transparent 40%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}


h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 8px;
}

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

.section-padding {
    padding: 100px 0;
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-color), #5e00d6);
    color: #fff;
    padding: 16px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.6);
}

.cta-button:hover::before {
    opacity: 1;
}


#main-header {
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 15px rgba(112, 0, 255, 0.8);
}

.logo i {
    color: var(--accent-color);
}

#navbar ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

#navbar a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

#navbar a:not(.nav-btn):hover {
    color: #fff;
}

#navbar a:not(.nav-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

#navbar a:not(.nav-btn):hover::after {
    width: 100%;
}

.nav-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 8px;
    padding: 10px 20px !important;
    border: 1px solid var(--primary-color);
}

.nav-btn:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}


#hero {
    height: 90vh;
    min-height: 600px;
    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1a1a2e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 16, 0.6) 0%, rgba(5, 5, 16, 1) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #a0a0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(112, 0, 255, 0.5));
}

.tagline {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 50px;
    font-weight: 300;
}


.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-icon {
    font-size: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

.bg-dark {
    background-color: #080814;
    position: relative;
}


.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card i {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
}

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

.feature-card p {
    color: var(--text-muted);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.6;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.gallery-item:hover {
    border-color: var(--accent-color);
}


#download {
    background: linear-gradient(135deg, #180038 0%, #050510 100%);
    position: relative;
    overflow: hidden;
}


#download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 50px;
}

#download h2 {
    width: 100%;
}

#download h2::after {
    margin: 20px auto;
}

#download {
    text-align: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 12px 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 220px;
    transition: var(--transition);
}

.store-btn:hover {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

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

.store-btn span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-btn strong {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    display: block;
    line-height: 1;
    margin-top: 3px;
}


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

.review-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 30px;
    border-radius: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.review-card p {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
}

.author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-color);
}

.faq-question.active {
    background-color: rgba(112, 0, 255, 0.1);
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 25px;
    color: var(--text-muted);
    line-height: 1.8;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

.contact-info i {
    color: var(--accent-color);
    width: 35px;
    height: 35px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 12px;
}

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

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 15px;
    background-color: #0b0b14;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(112, 0, 255, 0.2);
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}


footer {
    background-color: #020205;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.privacy-link {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 20px;
    transition: color 0.3s;
}

.privacy-link:hover {
    color: var(--accent-color);
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.4rem;
    margin-left: 20px;
    transition: transform 0.3s, color 0.3s;
}

.footer-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}


.privacy-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    #navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }

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

    .tagline {
        font-size: 1.1rem;
    }
}

#main-footer {
    background-color: #020205;
    padding: 80px 0 30px;
    margin-top: 80px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-color), transparent);
    box-shadow: 0 0 15px var(--primary-color);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
}


.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 20px;
    max-width: 300px;
}


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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}


.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 0 15px var(--primary-color);
}

.footer-small-text {
    font-size: 0.85rem;
    color: #666;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #555;
    font-size: 0.9rem;
}

.creator {
    opacity: 0.7;
}


@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h4::before {
        display: none;
    }

    .footer-col h4 {
        padding-left: 0;
    }

    .logo {
        justify-content: center;
    }

    .footer-desc {
        margin: 20px auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.privacy-section {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h2::after {
    display: none;
}

.privacy-section p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.8;
}


.admin-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin-top: 15px;
    color: #fff;
    font-family: var(--font-body);
}


.note-box {
    background: rgba(112, 0, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    color: #e0e0e0 !important;
    font-size: 0.95rem;
    border: 1px solid rgba(112, 0, 255, 0.2);
}

.note-box i {
    color: var(--accent-color);
    margin-right: 8px;
}


.privacy-list,
.privacy-list-check {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #ccc;
}

.privacy-list li {
    list-style: disc;
    margin-bottom: 10px;
    padding-left: 5px;
}

.privacy-list-check li {
    list-style: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.privacy-list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--success-color, #4cd137);
    position: absolute;
    left: 0;
    top: 2px;
}


.contact-highlight {
    text-align: center;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1), transparent);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(112, 0, 255, 0.2);
}

.email-link {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.email-link:hover::after {
    width: 100%;
}


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

    .privacy-header h1 {
        font-size: 2.2rem;
    }

    .email-link {
        font-size: 1.2rem;
    }
}