* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-start: #050505;
    --bg-end: #0A0B12;
    --accent-cyan: #22D3EE;
    --accent-purple: #7C3AED;
    --text-white: #FFFFFF;
    --text-gray: #9AA0B3;
    --surface: #0E111A;
    --outline: #1A1D29;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-end) 100%);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 11, 18, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--outline);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 60px;
    width: auto;
    border-radius: 50%;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid #FFD700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    margin-bottom: 30px;
    object-fit: cover;
    transition: transform 0.1s ease;
    cursor: pointer;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 60px 60px;
    gap: 60px;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    border: 2px solid transparent;
    padding: 22px 55px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    cursor: pointer;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 10px 40px rgba(34, 211, 238, 0.4),
        0 0 0 0 rgba(34, 211, 238, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.5);
}

.cta-button:hover .button-glow {
    opacity: 1;
    transform: scale(1);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(34, 211, 238, 0.6),
        0 0 0 8px rgba(34, 211, 238, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button:active {
    transform: translateY(-2px) scale(0.98);
}

.button-text {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-text {
    transform: translateX(2px);
}

.windows-icon {
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cta-button:hover .windows-icon {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}

.download-arrow {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0.9;
}

.cta-button:hover .download-arrow {
    animation: bounce-arrow 1s ease infinite;
    opacity: 1;
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px var(--accent-cyan);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.app-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/10;
    background: rgba(14, 17, 26, 0.6);
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0.15;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.3;
    }
}

.mockup-placeholder {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: var(--text-gray);
    z-index: 1;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    z-index: 1;
}

.features {
    padding: 100px 60px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(14, 17, 26, 0.6);
    border: 1px solid var(--outline);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(34, 211, 238, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-desc {
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.how-it-works {
    padding: 100px 60px;
    position: relative;
    z-index: 1;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-gray);
}

.step-arrow {
    font-size: 48px;
    color: var(--accent-cyan);
}

.gallery {
    padding: 100px 60px;
    position: relative;
    z-index: 1;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    aspect-ratio: 16/10;
    background: rgba(14, 17, 26, 0.6);
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--text-gray);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.footer {
    background: rgba(5, 5, 5, 0.95);
    border-top: 2px solid var(--accent-cyan);
    padding: 80px 60px 40px;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-tagline {
    font-size: 16px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-link:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-cyan);
    color: var(--bg-start);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.4);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    margin: 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--accent-cyan);
}

.footer-separator {
    color: var(--text-gray);
}

/* Privacy & Terms Pages */
.privacy-page {
    min-height: 100vh;
    padding: 140px 60px 80px;
    position: relative;
    z-index: 1;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(14, 17, 26, 0.6);
    border: 1px solid var(--outline);
    border-radius: 20px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 14px;
}

.privacy-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-cyan);
    font-size: 24px;
    margin: 30px 0 15px;
}

.privacy-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 15px 0 15px 30px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content code {
    background: rgba(34, 211, 238, 0.1);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.privacy-content a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
}

.privacy-highlight {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.privacy-highlight h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-cyan);
}

.privacy-highlight p {
    font-size: 16px;
    color: var(--text-white);
}

.privacy-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--outline);
}

.back-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 211, 238, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .stats {
        justify-content: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .nav {
        gap: 20px;
    }

    .features,
    .how-it-works,
    .gallery {
        padding: 60px 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        display: none;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .privacy-page {
        padding: 120px 30px 60px;
    }

    .privacy-container {
        padding: 40px 30px;
    }

    .page-title {
        font-size: 36px;
    }
}