:root {
    --primary-color: #1A73FF; /* Looksy blue */
    --secondary-color: #2C3E99; /* Gradient blue */
    --accent-color: #2C3E50; /* Dark blue-gray accent */
    --background-color: #FAFAFA;
    --text-color: #1F2937;
    --card-bg-color: #ffffff;
    --dark-color: #111827;
    --light-gray: #F3F4F6;
    --medium-gray: #6B7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--card-bg-color);
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    margin-left: 20px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}

.app-store-button {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 115, 255, 0.25);
}

.app-store-button:hover {
    background-color: #1460E6;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 115, 255, 0.35);
}

/* Accent variant */
.app-store-button.accent {
    background-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
}

.app-store-button.accent:hover {
    background-color: #243342;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.35);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.app-store-button-main img {
    height: 60px;
    transition: transform 0.3s ease;
}

.app-store-button-main img:hover {
    transform: scale(1.05);
}

/* Coming Soon Badge */
.coming-soon {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #34495E 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
    transition: all 0.3s ease;
}

.coming-soon:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

/* Stars Animation */
#stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    list-style: none;
    color: rgba(255,255,255,0.6);
    animation: animateStar 4s linear infinite;
    pointer-events: none;
}

@keyframes animateStar {
    0%, 100% {
        transform: scale(0.2) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* Features Section */
.feature-section {
    padding: 100px 0;
}

.feature-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-section:nth-child(odd) {
    background-color: var(--card-bg-color);
}

.feature-section:nth-child(even) {
    background-color: var(--light-gray);
}

.feature-section.reverse .container {
    grid-template-columns: 1fr 1fr;
}

.feature-section.reverse .feature-text {
    order: 1;
}

.feature-section.reverse .feature-image {
    order: 2;
}

.feature-text h3 {
    font-family: 'Pacifico', cursive;
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* display: inline-block; */
    padding: 0.2em 0.2em;
}

.feature-text p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
}

.feature-image {
    text-align: center;
}

.feature-image img {
    max-width: 60%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.03);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-family: 'Pacifico', cursive;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #374151 100%);
    color: white;
    padding: 40px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    margin-right: 12px;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    nav a {
        margin: 0;
    }

    .hero {
        padding: 60px 0;
        min-height: 500px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .feature-section {
        padding: 60px 0;
    }

    .feature-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-section.reverse .container {
        grid-template-columns: 1fr;
    }

    .feature-section.reverse .feature-text,
    .feature-section.reverse .feature-image {
        order: unset;
    }

    .feature-section {
        text-align: center;
    }

    .feature-text {
        order: 1;
    }

    .feature-image {
        order: 2;
    }

    .feature-text h3 {
        font-size: 2.5rem;
        text-align: center;
    }

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

    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 50px 0;
        min-height: 400px;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .feature-section {
        padding: 50px 0;
    }

    .feature-section .container {
        gap: 30px;
    }

    .feature-text h3 {
        font-size: 2.2rem;
    }

    .feature-text p {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    background-color: var(--card-bg-color);
    padding: 40px 0 60px;
    min-height: 70vh;
}

.privacy-content h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 2.5rem;
    font-weight: 700;
}

.privacy-content .effective-date {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 40px;
}

.privacy-content h2 {
    color: var(--dark-color);
    margin-top: 40px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-content p {
    margin-bottom: 15px;
    color: var(--medium-gray);
    line-height: 1.7;
}

.privacy-content ul {
    list-style-position: inside;
    padding-left: 0;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: var(--medium-gray);
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--secondary-color);
}

.privacy-content hr {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 40px 0;
}

.privacy-content .generator-link {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.privacy-content .generator-link a {
    color: var(--medium-gray);
}