:root {
    --bg-color: #050507;
    --text-color: #ffffff;
    --text-secondary: #a1a1aa;
    --primary-color: #dc2eff;
    --primary-gradient: linear-gradient(135deg, #dc2eff 0%, #8a2be2 100%);
    --surface-color: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(20, 20, 25, 0.7);
    --font-main: 'Outfit', sans-serif;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

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

.background-glow {
    position: fixed;
    top: -20%;
    left: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(220, 46, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 7, 0.5);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.highlight {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.btn-primary.small {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 46, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Hero Visual (Mockup) */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #1a1a1a;
    border-radius: 45px;
    border: 10px solid #2a2a2a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8);
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.hero:hover .phone-mockup {
    transform: rotate(0deg) scale(1.02);
}

.screen {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.card {
    flex: 1;
    background: #222;
    border-radius: 20px;
    margin-bottom: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.card-info {
    padding: 15px;
    z-index: 2;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-tags {
    font-size: 0.8rem;
    color: #888;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid #333;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn.pass {
    color: #ff4444;
}

.action-btn.like {
    color: #00cc66;
    border-color: #00cc66;
    background: rgba(0, 204, 102, 0.1);
}

/* Feature Sections */
.feature-section {
    padding: 8rem 5%;
    display: flex;
    align-items: center;
    gap: 6rem;
    min-height: 80vh;
}

.feature-section:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(220, 46, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.feature-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.feature-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Visual Placeholders for Features */
.visual-card {
    width: 100%;
    max-width: 100vw;
    max-height: 600px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card img {
    height: 90%;
    border-radius: 40px;
    border: 10px solid #2a2a2a;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.visual-card:hover img {
    transform: scale(1.05);
}

.visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(220, 46, 255, 0.05), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

/* CTA Section */
.cta-section {
    padding: 8rem 5%;
    text-align: center;
    background: linear-gradient(to bottom, transparent, rgba(220, 46, 255, 0.05));
    position: relative;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 4rem 2rem;
    border-radius: 32px;
    backdrop-filter: blur(10px);
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.app-store-btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.3rem;
    border-radius: 20px;
}

.app-store-btn.large svg {
    width: 28px;
    height: 28px;
}

/* Footer */
footer {
    padding: 6rem 5% 4rem;
    border-top: 1px solid var(--border-color);
    background: rgba(5, 5, 7, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 100%;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-column h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.link-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        gap: 3rem;
    }

    .hero-content {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-section {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
        gap: 3rem;
    }

    .feature-section:nth-child(even) {
        flex-direction: column;
    }

    .feature-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1 {
        font-size: 3.5rem;
    }

    .feature-section h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-links {
        justify-content: center;
        width: 100%;
    }
}

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

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .background-glow {
        width: 150vw;
        height: 150vw;
        top: -20%;
        left: -25%;
        background: radial-gradient(circle, rgba(220, 46, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    }
}

/* Legal Page */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 5% 4rem;
}

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.legal-section {
    margin-bottom: 4rem;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.legal-section p,
.legal-section li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.legal-section ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-color);
}