/* roulang page: index */
:root {
      --primary: #4F46E5;
      --primary-hover: #4338CA;
      --accent: #10B981;
      --dark-bg: #0B0F19;
      --light-bg: #F8FAFC;
      --card-border: rgba(226, 232, 240, 0.8);
      --text-main: #0F172A;
      --text-body: #334155;
      --text-muted: #64748B;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--light-bg);
      color: var(--text-body);
      overflow-x: hidden;
    }
    .custom-card {
      border: 1px solid var(--card-border);
      box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .custom-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px -4px rgba(79, 70, 229, 0.12);
      border-color: rgba(79, 70, 229, 0.35);
    }
    .glow-indigo {
      text-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
    }
    .cinema-hero {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }
    .cinema-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(11,15,25,0.85) 0%, rgba(11,15,25,0.95) 100%);
    }
