
    /* Custom Styles for Glassmorphism & Effects */
    body {
      background-color: #1a1a1a;
      color: white;
      overflow-x: hidden;
    }

    /* Glassmorphism Class */
    .glass {
      background: rgba(45, 45, 45, 0.4);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .glass-nav {
      background: rgba(26, 26, 26, 0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Flip Card CSS */
    .flip-card {
      background-color: transparent;
      perspective: 1000px;
      height: 300px;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
    }

    .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 0.75rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1.5rem;
    }

    .flip-card-front {
      background-color: #262626;
      border: 1px solid #333;
    }

    .flip-card-back {
      background: linear-gradient(135deg, #E31E24 0%, #a80005 100%);
      color: white;
      transform: rotateY(180deg);
    }

    /* Neon Glow Utility */
    .neon-text {
      text-shadow: 0 0 10px rgba(227, 30, 36, 0.5);
    }

    .neon-border:hover {
      box-shadow: 0 0 15px rgba(227, 30, 36, 0.4);
      border-color: #E31E24;
    }

    /* Video Background Overlay */
    .video-overlay {
      background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.9) 100%);
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: #1a1a1a;
    }

    ::-webkit-scrollbar-thumb {
      background: #333;
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #E31E24;
    }

    /* Custom X Logo Style */
    .brand-x {
      display: inline-block;
      transform: skewX(-10deg);
      text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.5);
    }
