@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Plus+Jakarta+Sans:wght@300;400;500;700&display=swap');

:root {
    --bg-color: #0b020b;
    --card-bg: rgba(25, 5, 25, 0.4);
    --border-color: rgba(224, 3, 139, 0.2);
    --primary-color: #E0038B;
    --primary-glow: rgba(224, 3, 139, 0.4);
    --accent-blue: #007AFF;
    --accent-green: #4CD964;
    --text-main: #FFFFFF;
    --text-muted: #8C6E82;
    --text-gray: #b5a2b0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.page-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Background Glowing Orbs */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(11, 2, 11, 0) 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.6;
}

.orb-1 {
    top: -200px;
    right: -100px;
}

.orb-2 {
    bottom: -100px;
    left: -200px;
}

/* Header & Navigation */
header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px 120px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - 88px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.badge {
    background: rgba(224, 3, 139, 0.1);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 30%, #ffd0ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6ec7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(224, 3, 139, 0.3);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    width: 100%;
    max-width: 580px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-store {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-store svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

.btn-store:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 3, 139, 0.25);
}

.btn-primary {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #000000;
}

.btn-primary:hover {
    background: #ff1c9b;
    border-color: #ff1c9b;
    color: #000000;
}

/* Graphic Phone Mockup */
.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 590px;
    border: 8px solid #231c22;
    border-radius: 40px;
    background: #110511;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(224, 3, 139, 0.15);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.phone-header {
    width: 72px;
    height: 18px;
    background: #000000;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 9px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Lightstick graphic inside phone */
.mock-lightstick-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mock-lightstick {
    width: 80px;
    height: 200px;
    position: relative;
    animation: pulseGlow 3s infinite ease-in-out;
}

.lightstick-head {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFFFFF 10%, var(--primary-color) 70%);
    margin: 0 auto;
    box-shadow: 0 0 35px var(--primary-color), 0 0 60px var(--primary-color);
}

.lightstick-body {
    width: 14px;
    height: 120px;
    background: linear-gradient(180deg, #3d2b38 0%, #1e141b 100%);
    margin: -10px auto 0 auto;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mock UI Elements */
.mock-ui-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.mock-row {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mock-row.short { width: 40%; }
.mock-row.mid { width: 70%; }
.mock-row.active { background: var(--primary-color); width: 85%; }

.mock-badge {
    align-self: flex-start;
    padding: 3px 8px;
    background: rgba(76, 217, 100, 0.15);
    border-radius: 8px;
    font-size: 8px;
    color: var(--accent-green);
    font-weight: 700;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1) translateY(0);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
        filter: brightness(1.2);
    }
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: 0 15px 30px rgba(224, 3, 139, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(224, 3, 139, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: bold;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    text-align: center;
    margin-top: 120px;
    background: rgba(11, 2, 11, 0.8);
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 13px;
}

/* Privacy Page Specifics */
.content-page {
    max-width: 800px;
    margin: 60px auto 120px auto;
    padding: 0 20px;
}

.content-page h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 44px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #ffc2e4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-page .update-time {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.markdown-body {
    color: var(--text-gray);
}

.markdown-body h2 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    color: var(--text-main);
    margin: 40px 0 16px 0;
}

.markdown-body p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.markdown-body ul {
    margin: 0 0 20px 24px;
    font-size: 15px;
}

.markdown-body li {
    margin-bottom: 8px;
}

.markdown-body strong {
    color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 40px;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 2, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 32px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(224, 3, 139, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounceIcon 2s infinite ease-in-out;
}

.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #ffd0ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 28px;
}

.modal-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 36px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.modal-btn:hover {
    background: #ff1c9b;
    border-color: #ff1c9b;
    transform: translateY(-1px);
}

.modal-btn:active {
    transform: translateY(0);
}

@keyframes bounceIcon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Extra mobile styles for narrow screen widths */
@media (max-width: 576px) {
    header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    
    nav {
        gap: 20px;
    }
    
    .hero {
        padding: 40px 16px 80px 16px;
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(22px, 8vw, 34px);
    }
    
    .hero-desc {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }
    
    .btn-store {
        padding: 10px 0;
        border-radius: 12px;
        font-size: 13px;
        flex: 1;
        max-width: 280px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 20px 12px 128px 1fr;
        align-items: center;
    }
    
    .btn-store svg {
        grid-column: 2;
        width: 20px;
        height: 20px;
        justify-self: center;
    }
    
    .btn-store > div {
        grid-column: 4;
        text-align: left;
    }
    
    .phone-mockup {
        width: 260px;
        height: 550px;
        border-width: 6px;
        border-radius: 36px;
    }
    
    .phone-header {
        width: 66px;
        height: 16px;
        top: 10px;
        border-radius: 8px;
    }
    
    .features-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .feature-card {
        padding: 30px 24px;
    }
    
    .content-page {
        margin: 40px auto 80px auto;
    }
    
    .content-page h1 {
        font-size: 32px;
    }

    /* Modal Mobile Responsive Style Overrides */
    .modal-content {
        width: 88%;
        max-width: 310px;
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .modal-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .modal-content p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .modal-btn {
        padding: 10px 28px;
        font-size: 14px;
    }
}


