:root {
    --cine-bg: #0f0f0f;
    --cine-text: #e0e0e0;
    --cine-primary: #e50914; /* Cinema Red */
    --cine-secondary: #141414;
    --cine-accent: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: var(--cine-bg); color: var(--cine-text);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6; overflow-x: hidden;
}

/* Cinematic Background */
.cine-bg-effect {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1;
    background: radial-gradient(circle at center, #2a2a2a 0%, #0f0f0f 80%);
}
.cine-bg-effect::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
    pointer-events: none;
}

.cine-container { max-width: 1200px; margin: 0 auto; padding: 0 20px;}

/* Header */
.cine-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 30px 0; margin-bottom: 40px; position: relative; z-index: 10;
}
.cine-brand {
    font-size: 32px; font-weight: 900; color: var(--cine-primary);
    text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 2px 10px rgba(229, 9, 20, 0.5);
}
.cine-nav { display: flex; gap: 30px; }
.cine-nav a {
    font-size: 16px; font-weight: bold; color: #b3b3b3; transition: color 0.3s;
}
.cine-nav a:hover, .cine-nav a.active { color: var(--cine-accent); }

/* Hero */
.cine-hero {
    position: relative; height: 70vh; min-height: 500px; display: flex; align-items: center;
    margin-bottom: 80px; border-radius: 10px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.cine-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15,15,15,1) 0%, rgba(15,15,15,0.6) 50%, transparent 100%),
                url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48cmVjdCB3aWR0aD0iNDAwIiBoZWlnaHQ9IjQwMCIgZmlsbD0iIzFhMWExYSIvPjxjaXJjbGUgY3g9IjIwMCIgY3k9IjIwMCIgcj0iMTUwIiBmaWxsPSIjMzMzIiBvcGFjaXR5PSIwLjUiLz48L3N2Zz4=') center/cover;
    z-index: 0;
}
.ch-content { position: relative; z-index: 1; max-width: 600px; padding: 40px;}
.ch-content h1 {
    font-size: 64px; font-weight: 900; margin-bottom: 20px; color: var(--cine-accent);
    line-height: 1.1; text-transform: uppercase;
}
.ch-content p { font-size: 20px; color: #ccc; margin-bottom: 40px; font-weight: 300;}

.btn-cine {
    display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: bold;
    color: #fff; background: var(--cine-primary); border-radius: 4px;
    transition: all 0.3s; margin-right: 20px; text-transform: uppercase;
}
.btn-cine:hover { background: #f40612; transform: scale(1.05); }
.btn-cine-alt {
    display: inline-block; padding: 15px 40px; font-size: 18px; font-weight: bold;
    color: #fff; background: rgba(109, 109, 110, 0.7); border-radius: 4px;
    transition: all 0.3s; text-transform: uppercase;
}
.btn-cine-alt:hover { background: rgba(109, 109, 110, 0.9); transform: scale(1.05); }

/* Stats */
.cine-stats {
    display: flex; gap: 20px; margin-bottom: 80px;
}
.cs-item {
    flex: 1; background: var(--cine-secondary); padding: 30px; border-radius: 8px;
    text-align: center; border: 1px solid #333;
}
.cs-val { font-size: 48px; font-weight: 900; color: var(--cine-accent); margin-bottom: 5px;}
.cs-lbl { font-size: 14px; color: #888; text-transform: uppercase; font-weight: bold; letter-spacing: 1px;}

/* Features */
.cine-features { margin-bottom: 80px;}
.cine-features h2 { font-size: 32px; color: #fff; margin-bottom: 30px;}
.cf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;}
.cf-card {
    background: var(--cine-secondary); padding: 40px 30px; border-radius: 8px;
    transition: transform 0.3s, background 0.3s; cursor: pointer;
}
.cf-card:hover { transform: scale(1.05); background: #2a2a2a; z-index: 2; position: relative;}
.cf-card h3 { font-size: 22px; font-weight: bold; margin-bottom: 15px; color: var(--cine-accent);}
.cf-card p { font-size: 15px; color: #999;}

/* Nodes */
.cine-nodes { margin-bottom: 80px;}
.cine-nodes h2 { font-size: 32px; color: #fff; margin-bottom: 30px;}
.cn-list { display: flex; flex-wrap: wrap; gap: 15px;}
.cn-item {
    padding: 10px 20px; background: transparent; border: 2px solid #333;
    color: #ccc; font-weight: bold; border-radius: 20px; transition: all 0.3s;
}
.cn-item:hover { border-color: var(--cine-accent); color: var(--cine-accent);}

/* FAQ */
.cine-faq { margin-bottom: 100px;}
.cine-faq h2 { font-size: 32px; color: #fff; margin-bottom: 40px;}
.c-faq-item {
    margin-bottom: 20px; background: var(--cine-secondary); padding: 30px; border-radius: 8px;
}
.c-fq { font-size: 20px; font-weight: bold; color: var(--cine-accent); margin-bottom: 10px;}
.c-fa { font-size: 16px; color: #999;}

footer { text-align: center; padding: 40px 0; border-top: 1px solid #333; color: #666; font-size: 14px;}

@media (max-width: 900px) {
    .cine-header { flex-direction: column; gap: 20px; }
    .cine-hero { height: auto; text-align: center;}
    .cine-hero-bg { background: linear-gradient(0deg, rgba(15,15,15,1) 0%, rgba(15,15,15,0.8) 100%);}
    .ch-content { padding: 40px 20px; margin: 0 auto;}
    .cine-stats { flex-direction: column; }
    .cf-grid { grid-template-columns: 1fr; }
    .btn-cine, .btn-cine-alt { display: block; margin: 10px auto; width: 80%;}
}