/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dreamy Theater Color Palette - Pink & Black, Purple & Black Gradient */
    --pink-primary: #FF69B4;
    --pink-bright: #FF1493;
    --pink-deep: #C71585;
    --pink-soft: #FFB6C1;
    --purple-primary: #9370DB;
    --purple-bright: #BA55D3;
    --purple-deep: #8B008B;
    --purple-soft: #DA70D6;
    --stage-black: #0A0A0A;
    --curtain-dark: #1A0A1A;
    --stage-wood: #2D1B2D;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #E0E0E0;
    --text-light: #F8E8F8;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    color: var(--text-gray);
    overflow-x: hidden;
    background: var(--stage-black);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 112, 219, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 10, 1) 0%, rgba(26, 10, 26, 1) 50%, rgba(10, 10, 10, 1) 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 10, 26, 0.98) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.3), 0 4px 30px rgba(147, 112, 219, 0.3);
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, var(--pink-primary), var(--purple-primary)) 1;
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink-primary), var(--purple-primary));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--pink-soft);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-primary), var(--purple-primary));
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%, 
        rgba(26, 10, 26, 0.9) 30%,
        rgba(45, 27, 45, 0.8) 50%,
        rgba(26, 10, 26, 0.9) 70%,
        rgba(10, 10, 10, 1) 100%);
}

.theater-curtains {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(199, 21, 133, 0.3) 0%,
        rgba(139, 0, 139, 0.4) 50%,
        rgba(10, 10, 10, 0.8) 100%);
    backdrop-filter: blur(2px);
    animation: curtainSway 8s ease-in-out infinite;
}

.curtain.left {
    left: 0;
    border-right: 3px solid rgba(255, 105, 180, 0.3);
    animation-delay: 0s;
}

.curtain.right {
    right: 0;
    border-left: 3px solid rgba(147, 112, 219, 0.3);
    animation-delay: 4s;
}

@keyframes curtainSway {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(10px) rotate(1deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    position: relative;
    padding: 100px 0;
}

.spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, 
        rgba(255, 105, 180, 0.2) 0%,
        rgba(147, 112, 219, 0.15) 30%,
        transparent 70%);
    border-radius: 50%;
    animation: spotlightPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

.stage-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ornament {
    position: absolute;
    top: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, 
        rgba(255, 105, 180, 0.1) 0%,
        rgba(147, 112, 219, 0.1) 50%,
        transparent 100%);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: 50%;
    animation: ornamentFloat 6s ease-in-out infinite;
}

.left-ornament {
    left: 5%;
    animation-delay: 0s;
}

.right-ornament {
    right: 5%;
    animation-delay: 3s;
}

@keyframes ornamentFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 3;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--pink-soft);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-main {
    display: block;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary), var(--pink-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-tagline {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4), 0 10px 30px rgba(147, 112, 219, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6), 0 15px 40px rgba(147, 112, 219, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--pink-soft);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--pink-primary), var(--purple-primary)) 1;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(147, 112, 219, 0.1));
    transform: translateY(-3px);
}

.stage-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(45, 27, 45, 0.5) 50%,
        rgba(10, 10, 10, 0.9) 100%);
    z-index: 1;
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.8) 50%,
        rgba(10, 10, 10, 1) 100%);
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 105, 180, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(147, 112, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.title-decoration {
    display: inline-block;
    margin: 0 1rem;
    font-size: 2.5rem;
    animation: decorationSpin 3s linear infinite;
}

@keyframes decorationSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.content-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Banner Section */
.banner-section {
    padding: 60px 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.9) 50%,
        rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(255, 105, 180, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse at center, rgba(147, 112, 219, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.banner-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.3), 0 20px 60px rgba(147, 112, 219, 0.3);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.8) 50%,
        rgba(10, 10, 10, 1) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 105, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(147, 112, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: linear-gradient(135deg, 
        rgba(26, 10, 26, 0.6) 0%,
        rgba(45, 27, 45, 0.4) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 105, 180, 0.1) 0%,
        rgba(147, 112, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3), 0 20px 40px rgba(147, 112, 219, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--pink-soft);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.8) 50%,
        rgba(10, 10, 10, 1) 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.screenshot-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2), 0 15px 35px rgba(147, 112, 219, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.screenshot-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 25px 50px rgba(255, 105, 180, 0.4), 0 25px 50px rgba(147, 112, 219, 0.4);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.9));
    padding: 1.5rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay span {
    color: var(--pink-soft);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.9) 30%,
        rgba(45, 27, 45, 0.8) 50%,
        rgba(26, 10, 26, 0.9) 70%,
        rgba(10, 10, 10, 1) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 105, 180, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(147, 112, 219, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.download-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.download-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-info p {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-info i {
    color: var(--pink-primary);
}

.download-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.5);
    z-index: 10000;
    transition: bottom 0.3s ease;
    font-weight: 600;
}

.download-toast.show {
    bottom: 30px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 1) 0%,
        rgba(26, 10, 26, 0.9) 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, rgba(255, 105, 180, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink-primary), var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cinzel', serif;
}

.footer-tagline {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--pink-soft);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--pink-primary);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 10, 26, 0.98));
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

