@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Noto+Serif+SC:wght@400;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-weight: 300;
    letter-spacing: 0.3px;
    cursor: none;
    overflow-x: hidden;
}

.edit-marker {
    border: 2px solid #fbbf24 !important;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.edit-text {
    color: #fbbf24 !important;
    background-color: rgba(251, 191, 36, 0.1);
    padding: 8px;
    border-radius: 4px;
}

.placeholder-text {
    color: #fbbf24;
    font-weight: bold;
}

#cursor-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-ring {
    position: absolute;
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
}

.ring-outer {
    width: 24px;
    height: 24px;
    border: 1px solid #eab308;
    border-radius: 50%;
}

.ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid #facc15;
    border-radius: 50%;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.hero-container {
    border: 4px solid #ca8a04;
    padding: 48px;
    max-width: 100%;
    width: 100%;
}

.logo-container {
    height: 300px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.silhouettes-container {
    height: 400px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.silhouettes-container img {
    width: auto;
    height: 70%;
    object-fit: contain;
}

.synopsis-section {
    border-top: 2px solid #ca8a04;
    padding-top: 32px;
}

.synopsis-section h2 {
    font-family: 'Alegreya', serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.synopsis-section p {
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.125rem;
}

.streaming-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.streaming-link {
    display: inline-block;
    transition: transform 0.3s ease;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: none !important;
    box-shadow: none !important;
}

.streaming-link:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(202, 138, 4, 0.6);
}

.streaming-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trailer-container {
    border: 4px solid #ca8a04;
    padding: 48px;
    max-width: 1200px;
    width: 100%;
    margin-top: 48px;
}

.trailer-container h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ca8a04;
}

.trailer-video {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #7f1d1d;
    border: 2px solid #b45309;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.trailer-video iframe,
.trailer-video video {
    width: 100%;
    height: 100%;
}

.trailer-link-container {
    text-align: center;
}

.trailer-link {
    display: inline-block;
    text-decoration: underline;
    font-weight: 600;
    padding: 12px 24px;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
}

.trailer-link:hover {
    color: #fde047;
}

.gallery-section {
    padding: 80px 16px;
    max-width: 1280px;
    margin: 0 auto;
    border-top: 4px solid #ca8a04;
}

.gallery-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ca8a04;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border: 2px solid #b45309;
}

.reviews-section {
    padding: 80px 16px;
    background: linear-gradient(to bottom, #000, #450a0a);
    border-top: 4px solid #ca8a04;
}

.reviews-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ca8a04;
}

.reviews-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.review-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #b45309;
    padding: 24px;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.reviewer-name {
    font-family: 'Noto Serif SC', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 1.125rem;
    margin: 0;
}

.top-critic-badge {
    color: #ff6347;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.verified-badge {
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.reviewer-source {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 8px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tomato-icon {
    font-size: 1.25rem;
}

.review-rating {
    font-size: 0.875rem;
    color: #9ca3af;
}

.review-text {
    line-height: 1.8;
    font-weight: 400;
    font-size: 1.125rem;
}

.characters-section {
    padding: 80px 16px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 4px solid #ca8a04;
}

.characters-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ca8a04;
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.character-card {
    text-align: center;
}

.character-image {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    margin-bottom: 12px;
    border: 4px solid #b45309;
}

.character-card h3 {
    font-family: 'Noto Serif SC', serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.actor-name {
    font-size: 0.875rem;
    padding: 8px;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 4px;
}

.soundtrack-section {
    padding: 80px 16px;
    background: linear-gradient(to bottom, #000, #450a0a);
    border-top: 4px solid #ca8a04;
}

.soundtrack-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ca8a04;
}

.soundtrack-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.soundtrack-item {
    background-color: #000;
    border: 2px solid #b45309;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.album-cover {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border: 2px solid #ca8a04;
}

.soundtrack-info {
    text-align: center;
    width: 100%;
}

.song-title {
    font-family: 'Noto Serif SC', serif;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.artist-name {
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.stream-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ca8a04;
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #fbbf24;
}

.stream-btn:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.social-section {
    padding: 48px 16px;
    text-align: center;
}

.social-container {
    display: inline-flex;
    gap: 24px;
    background-color: #fff;
    color: #000;
    padding: 16px 48px;
    border-radius: 9999px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: #1f2937;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background-color: #ca8a04;
    transform: scale(1.1);
}

.footer {
    padding: 48px 16px;
    text-align: center;
    border-top: 2px solid #ca8a04;
}

.footer-logo {
    height: 96px;
    margin: 0 auto 16px;
    display: block;
    object-fit: contain;
}

.footer p {
    font-size: 0.875rem;
    color: #9ca3af;
}

@media (min-width: 768px) {
    .hero-container,
    .trailer-container {
        padding: 64px;
        max-width: 100%;
    }

    .logo-container {
        height: 350px;
    }

    .silhouettes-container {
        height: 500px;
    }

    .synopsis-section h2,
    .trailer-container h2 {
        font-size: 3.5rem;
        letter-spacing: 5px;
    }

    .synopsis-section p {
        font-size: 1.25rem;
    }

    .streaming-link {
        width: 150px;
        height: 150px;
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .characters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .soundtrack-item {
        flex-direction: row;
    }

    .album-cover {
        width: 160px;
        height: 160px;
    }

    .soundtrack-info {
        text-align: left;
    }

    .social-container {
        gap: 32px;
        padding: 16px 64px;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .streaming-links {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .logo-container {
        height: 400px;
    }

    .silhouettes-container {
        height: 600px;
    }

    .characters-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .character-card h3 {
        font-size: 0.1rem;
        letter-spacing: 1.5px;
    }
}