/* Flixmind — film ve dizi rehberi */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --fm-bg: #0b0b0f;
    --fm-surface: #14141c;
    --fm-card: #1a1a24;
    --fm-border: rgba(229, 9, 20, 0.25);
    --fm-red: #e50914;
    --fm-red-bright: #ff2d2d;
    --fm-red-dim: #991b1b;
    --fm-text: #f5f5f7;
    --fm-muted: #9ca3af;
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--fm-bg);
    color: var(--fm-text);
    overflow-x: hidden;
}

.fm-backdrop {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 90% 60% at 50% -10%, rgba(229, 9, 20, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(229, 9, 20, 0.08), transparent 50%),
        var(--fm-bg);
}

.fm-backdrop::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('Images/Flixmind Banner.png');
    background-size: cover;
    background-position: center top;
    opacity: 0.07;
    pointer-events: none;
}

.fm-grain {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.back-to-projects {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem auto 0;
    max-width: 72rem;
    width: min(92%, 72rem);
    padding: 0 1.5rem;
    color: var(--fm-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.back-to-projects:hover {
    color: var(--fm-red-bright);
}

#main {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.logo-container {
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
}

.logo-img {
    width: clamp(96px, 18vw, 128px);
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.35);
}

.bg-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 18vw, 9rem);
    letter-spacing: 0.06em;
    color: rgba(229, 9, 20, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -55%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.tagline {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: var(--fm-muted);
    font-weight: 500;
}

.description {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    color: #d1d5db;
    font-size: 1.05rem;
}

.hero-intro {
    max-width: 40rem;
    margin: 0 auto 2.5rem;
}

.hero-intro .description {
    margin-bottom: 1.25rem;
}

.download--intro {
    margin: 0;
}

.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, var(--fm-card), var(--fm-surface));
    border: 1px solid var(--fm-border);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(229, 9, 20, 0.45);
}

.feature-card i {
    font-size: 1.75rem;
    color: var(--fm-red);
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--fm-muted);
    line-height: 1.55;
}

.fm-inapp-section {
    margin: 2rem auto 3rem;
    max-width: 72rem;
    padding: 0 1rem;
}

.fm-inapp-heading {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    color: var(--fm-text);
}

.fm-inapp-screens {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: center;
    gap: clamp(0.35rem, 1.2vw, 0.75rem);
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0.5rem 0 1.5rem;
    overflow: hidden;
}

.fm-inapp-screens img {
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    max-height: min(58vh, 520px);
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    border-radius: 0.65rem;
    border: 1px solid var(--fm-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fm-inapp-screens img.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 520px) {
    .fm-inapp-screens img {
        max-height: min(42vh, 380px);
    }
}

.app-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--fm-card);
    border: 1px solid var(--fm-border);
    border-radius: 1.25rem;
}

@media (min-width: 768px) {
    .app-showcase {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.showcase-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    color: var(--fm-red-bright);
}

.showcase-content p {
    color: var(--fm-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #e5e7eb;
}

.feature-item i {
    color: var(--fm-red);
    margin-top: 0.15rem;
}

.stats-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-box {
    background: var(--fm-surface);
    border: 1px solid var(--fm-border);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stat-box i {
    color: var(--fm-red);
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
}

.stat-box strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.15rem;
}

.stat-box span {
    font-size: 0.75rem;
    color: var(--fm-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.download {
    text-align: center;
    margin: 2.5rem 0 0.5rem;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.store-badge {
    height: 52px;
    width: auto;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: scale(1.04);
}

.download-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--fm-muted);
    margin-bottom: 2rem;
}

.modern-footer {
    background: var(--fm-surface);
    border-top: 1px solid var(--fm-border);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-logo img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

.footer-logo h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--fm-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 22rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.footer-column h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--fm-muted);
    margin-bottom: 0.75rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--fm-red-bright);
}

.social-icons {
    display: flex;
    gap: 0.65rem;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fm-card);
    border: 1px solid var(--fm-border);
    color: var(--fm-text);
    transition: background 0.2s, color 0.2s;
}

.social-icon:hover {
    background: var(--fm-red);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--fm-border);
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--fm-muted);
}

.copyright a {
    color: var(--fm-red-bright);
    text-decoration: none;
}

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

.footer-bottom-links a {
    color: var(--fm-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--fm-red-bright);
}
