/* Landing Page Styles */
body {
    background: #f8f8f8;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 248, 248, 0.9);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 20px 24px;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2a2a2a;
    letter-spacing: 1px;
}

.play-link {
    font-size: 14px;
    color: #6e56cf;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.play-link:hover {
    opacity: 0.7;
}

/* Hero with Cards */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-cards {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-quote {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #2a2a2a;
}

.hero-quote strong {
    font-weight: 600;
    color: #6e56cf;
}

.hero-subtext {
    font-size: 18px;
    color: #888;
    margin-bottom: 48px;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: #2a2a2a;
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Card Showcase */
.showcase {
    padding: 120px 24px;
    background: #fff;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) > * {
    direction: ltr;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.showcase-text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 300;
    margin-bottom: 24px;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.showcase-text h2 strong {
    font-weight: 600;
}

.showcase-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* SVG Card Styles */
.card-svg {
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

.hand-container {
    display: flex;
    gap: -40px;
}

.hand-container .card-svg {
    margin-left: -30px;
}

.hand-container .card-svg:first-child {
    margin-left: 0;
}

/* Dark Section */
.dark-section {
    padding: 120px 24px;
    background: #2a2a2a;
    color: #fff;
    text-align: center;
}

.dark-section-content {
    max-width: 800px;
    margin: 0 auto;
}

.dark-quote {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.dark-author {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: 48px;
}

/* Gallery */
.gallery {
    padding: 120px 24px;
    background: #f8f8f8;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gallery-item {
    text-align: center;
}

.gallery-icon {
    margin-bottom: 24px;
    opacity: 0.8;
}

.gallery-text {
    font-size: 18px;
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 120px 24px;
    text-align: center;
    background: #fff;
}

.final-cta h2 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: #2a2a2a;
}

.final-cta h2 strong {
    font-weight: 600;
}

.final-cta p {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

footer {
    padding: 40px 24px;
    text-align: center;
    color: #888;
    font-size: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 968px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .showcase-item:nth-child(even) {
        direction: ltr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hand-container .card-svg {
        margin-left: -20px;
        width: 80px;
    }
}
