<style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --gta-pink: #ff0066;
      --gta-cyan: #00d4ff;
      --gta-purple: #9d00ff;
      --gta-yellow: #ffea00;
      --gta-green: #00ff88;
      --gta-orange: #ff6b00;
      --gta-red: #ff0033;
      --dark: #000000;
      --white: #ffffff;
      --discord: #5865F2;
    }

    /* Loading Screen */
    .loading-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: opacity 1s;
    }

    .loading-screen.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loading-logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 5rem;
      background: linear-gradient(135deg, var(--gta-pink), var(--gta-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.05); opacity: 0.8; }
    }

    .loading-bar {
      width: 300px;
      height: 3px;
      background: rgba(255,255,255,0.1);
      margin-top: 2rem;
      overflow: hidden;
      border-radius: 3px;
    }

    .loading-progress {
      height: 100%;
      background: linear-gradient(90deg, var(--gta-pink), var(--gta-cyan));
      animation: loading 2s ease-out forwards;
      border-radius: 3px;
    }

    @keyframes loading {
      from { width: 0; }
      to { width: 100%; }
    }

    .loading-text {
      color: rgba(255,255,255,0.6);
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    /* Remove all initial opacity 0 from elements */
    .hero-content {
      opacity: 1 !important;
      transform: none !important;
    }

    .section-header {
      opacity: 1 !important;
      transform: none !important;
    }

    .character-card {
      opacity: 1 !important;
      transform: none !important;
    }

    .cinematic-content {
      opacity: 1 !important;
      transform: none !important;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #000;
      color: white;
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* Videos with maximum brightness */
    video {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }

    /* Navigation - Rockstar Style */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 4rem;
      background: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
      backdrop-filter: blur(20px);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease, transform 0.3s ease;
    }

    .navbar.scrolled {
      background: rgba(0,0,0,0.95);
      padding: 1rem 4rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    }

    .navbar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gta-pink), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .navbar.scrolled::after {
      opacity: 1;
    }

    .logo {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      color: white;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo-badge {
      font-size: 0.7rem;
      background: var(--gta-pink);
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
      box-shadow: 0 0 15px rgba(255,0,102,0.8);
      animation: badgeGlow 2s ease-in-out infinite;
    }

    @keyframes badgeGlow {
      0%, 100% { 
        box-shadow: 0 0 10px rgba(255,0,102,0.8);
        transform: scale(1);
      }
      50% { 
        box-shadow: 0 0 20px rgba(255,0,102,1);
        transform: scale(1.02);
      }
    }

    .nav-menu {
      display: flex;
      gap: 2.5rem;
      align-items: center;
      list-style: none;
    }

    .nav-link {
      color: white;
      text-decoration: none;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      transition: all 0.3s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gta-cyan);
      transition: width 0.3s;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .discord-nav-btn {
      background: var(--discord);
      padding: 0.8rem 2rem;
      border-radius: 5px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: inline-block;
    }

    .discord-nav-btn::after {
      display: none !important;
    }

    .discord-nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(88,101,242,0.5);
    }

    .discord-nav-btn:hover::after {
      width: 0 !important;
    }

    /* Countdown Timer */
    .countdown-container {
      margin: 2rem 0;
    }

    .countdown {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 2rem 0;
    }

    .countdown-item {
      background: rgba(0,0,0,0.8);
      border: 2px solid var(--gta-pink);
      padding: 1.5rem;
      border-radius: 10px;
      min-width: 100px;
      text-align: center;
      backdrop-filter: blur(10px);
      position: relative;
    }

    .countdown-number {
      display: block;
      font-family: 'Russo One', sans-serif;
      font-size: 3rem;
      color: var(--gta-cyan);
      text-shadow: 0 0 20px rgba(0,212,255,0.5);
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .countdown-label {
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 2px;
    }
    
    /* Particle drift animation */
    @keyframes drift {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(-100px, -100px) rotate(360deg); }
    }
    
    /* Shimmer effect for buttons */
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    
    /* News ticker that Rockstar would add */
    .news-ticker {
      background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(255,0,102,0.1), rgba(0,0,0,0.9));
      padding: 1rem;
      overflow: hidden;
      position: relative;
      border-top: 2px solid var(--gta-pink);
      border-bottom: 2px solid var(--gta-pink);
    }
    
    .ticker-content {
      display: flex;
      animation: ticker 30s linear infinite;
      white-space: nowrap;
    }
    
    @keyframes ticker {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }
    
    /* Warning banner style */
    .warning-banner {
      background: repeating-linear-gradient(
        45deg,
        #ffea00,
        #ffea00 10px,
        #000 10px,
        #000 20px
      );
      padding: 0.5rem;
      text-align: center;
      font-weight: bold;
      color: black;
      text-transform: uppercase;
    }

    /* Music Visualizer - Integrated with Controls */
    .music-visualizer {
      display: flex;
      gap: 3px;
      margin-bottom: 0.5rem;
      justify-content: center;
      height: 30px;
      align-items: flex-end;
    }

    .music-visualizer .bar {
      width: 4px;
      background: linear-gradient(to top, var(--gta-pink), var(--gta-cyan));
      transform-origin: bottom;
      transition: height 0.1s ease;
    }

    .music-visualizer.active .bar {
      animation: musicBeat 0.5s infinite alternate;
    }

    .music-visualizer.active .bar:nth-child(1) { 
      animation-delay: 0s; 
      animation-duration: 0.4s;
    }
    .music-visualizer.active .bar:nth-child(2) { 
      animation-delay: 0.1s;
      animation-duration: 0.5s;
    }
    .music-visualizer.active .bar:nth-child(3) { 
      animation-delay: 0.2s;
      animation-duration: 0.6s;
    }
    .music-visualizer.active .bar:nth-child(4) { 
      animation-delay: 0.3s;
      animation-duration: 0.5s;
    }
    .music-visualizer.active .bar:nth-child(5) { 
      animation-delay: 0.4s;
      animation-duration: 0.4s;
    }

    @keyframes musicBeat {
      0% { height: 5px; }
      100% { height: 25px; }
    }

    /* Music Controls - Enhanced - MOVED TO LEFT SIDE */
    .music-controls {
      position: fixed;
      bottom: 2rem;
      left: 2rem;  /* Changed from right to left */
      z-index: 1000;
      background: rgba(0,0,0,0.95);
      border: 2px solid var(--gta-pink);
      border-radius: 10px;
      padding: 1rem;
      backdrop-filter: blur(10px);
      min-width: 200px;
    }

    .now-playing {
      color: var(--gta-cyan);
      font-family: 'Oswald', sans-serif;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.5rem;
      text-align: center;
      animation: musicPulse 2s infinite;
    }

    @keyframes musicPulse {
      0%, 100% { opacity: 0.8; }
      50% { opacity: 1; }
    }

    .music-toggle {
      background: var(--gta-pink);
      border: none;
      padding: 0.8rem 1.5rem;
      color: white;
      cursor: pointer;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: background-color 0.3s ease, transform 0.3s ease;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .music-toggle:hover {
      background: var(--gta-cyan);
      transform: scale(1.05);
    }

    .volume-control {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .volume-slider {
      width: 120px;
      accent-color: var(--gta-pink);
    }

    /* Hero Section - Cinematic */
    .hero {
      height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-video-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      transform: translate(-50%, -50%);
    }

    .hero-content {
      text-align: center;
      z-index: 1;
      padding: 2rem;
      opacity: 0;
      transform: translateY(50px);
    }

    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 12vw, 11rem);
      line-height: 0.9;
      margin-bottom: 0.5rem;
      text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
    }

    .hero-subtitle {
      font-size: clamp(2.5rem, 7vw, 5rem);
      color: var(--gta-pink);
      text-shadow: 0 0 40px rgba(255,0,102,0.8);
      margin-bottom: 1rem;
      font-family: 'Russo One', sans-serif;
      animation: neonPulse 2s ease-in-out infinite alternate;
    }

    @keyframes neonPulse {
      0%, 100% { 
        opacity: 1; 
        text-shadow: 0 0 40px rgba(255,0,102,0.8);
      }
      50% { 
        opacity: 0.95; 
        text-shadow: 0 0 60px rgba(255,0,102,1);
      }
    }

    .hero-text {
      font-family: 'Oswald', sans-serif;
      font-size: 1.4rem;
      color: white;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 3rem;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1.2rem 3rem;
      font-family: 'Oswald', sans-serif;
      font-weight: 500;
      font-size: 1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.1);
      transition: left 0.3s ease;
      pointer-events: none;
    }

    .btn:hover::before {
      left: 100%;
    }

    .btn-primary {
      background: var(--gta-pink);
      color: white;
      box-shadow: 0 5px 20px rgba(255,0,102,0.4);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 40px rgba(255,0,102,0.6);
    }

    .btn-secondary {
      background: var(--gta-cyan);
      color: white;
      border: 2px solid var(--gta-cyan);
      box-shadow: 0 5px 20px rgba(0,212,255,0.4);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: var(--gta-cyan);
      color: white;
      box-shadow: 0 10px 40px rgba(0,212,255,0.6);
      transform: translateY(-3px);
      filter: brightness(1.1);
    }

    /* Cinematic Video Sections - Rockstar Style */
    .cinematic-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cinematic-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .cinematic-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .cinematic-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.7) 100%);
      z-index: 1;
    }

    .cinematic-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 4rem;
      opacity: 0;
      transform: scale(0.9);
    }

    .cinematic-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 10vw, 9rem);
      text-shadow: 
        3px 3px 10px rgba(0,0,0,1),
        0 0 60px currentColor,
        0 0 100px currentColor;
      letter-spacing: 5px;
      margin-bottom: 1rem;
      line-height: 0.9;
    }

    .cinematic-subtitle {
      font-family: 'Oswald', sans-serif;
      font-size: 1.8rem;
      color: white;
      letter-spacing: 4px;
      text-transform: uppercase;
      text-shadow: 2px 2px 10px rgba(0,0,0,1);
      opacity: 0.9;
    }

    /* Characters Section - Keep Existing */
    .characters-section {
      padding: 8rem 4rem;
      background: #000;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      opacity: 0;
      transform: translateY(30px);
    }

    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 7rem);
      color: var(--gta-pink);
      margin-bottom: 1rem;
      text-shadow: 0 0 40px rgba(255,0,102,0.5);
    }

    .section-subtitle {
      font-family: 'Oswald', sans-serif;
      font-size: 1.3rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    .characters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto;
    }

    .character-card {
      background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(20,0,10,0.95));
      border: 2px solid rgba(255,255,255,0.1);
      padding: 2.5rem;
      cursor: pointer;
      opacity: 0;
      transform: translateY(50px);
      position: relative;
    }

    .character-avatar {
      width: 200px;
      height: 200px;
      margin: 0 auto 1.5rem;
      border: 3px solid var(--gta-cyan);
      background-size: cover;
      background-position: center;
      box-shadow: 0 0 30px rgba(0,212,255,0.3);
    }

    .character-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      text-align: center;
      text-transform: uppercase;
    }

    .character-role {
      color: var(--gta-cyan);
      text-align: center;
      margin-bottom: 1rem;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
    }

    .character-bio {
      color: rgba(255,255,255,0.7);
      text-align: center;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .character-price {
      text-align: center;
      font-size: 2rem;
      color: var(--gta-yellow);
      font-family: 'Russo One', sans-serif;
    }

    /* Premium Section - Progressive Styling */
    .premium-section {
      padding: 8rem 4rem;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a0010 100%);
      position: relative;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 4rem;
      align-items: stretch;
    }

    .pricing-card {
      padding: 3rem 2rem;
      text-align: center;
      position: relative;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      transform: translateZ(0);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 600px;
    }

    /* Free Demo */
    .pricing-card.free {
      background: rgba(30,30,30,0.9);
      border: 2px solid rgba(255,255,255,0.2);
      transition: transform 0.3s ease, border-color 0.3s ease;
    }

    .pricing-card.free:hover {
      transform: translateY(-5px);
      border-color: rgba(255,255,255,0.4);
    }

    /* Premium */
    .pricing-card.premium {
      background: linear-gradient(135deg, rgba(255,0,102,0.1), rgba(0,0,0,0.9));
      border: 3px solid var(--gta-pink);
      box-shadow: 0 10px 30px rgba(255,0,102,0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .pricing-card.premium:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(255,0,102,0.5);
    }

    .plan-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3rem;
      margin-bottom: 1rem;
      color: white;
    }

    .plan-price {
      font-size: 4.5rem;
      font-weight: 900;
      margin-bottom: 1rem;
      font-family: 'Russo One', sans-serif;
      color: white;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    }

    .premium .plan-price {
      text-shadow: 0 0 30px rgba(255,0,102,0.5);
    }

    .plan-features {
      list-style: none;
      margin: 2rem 0;
      text-align: left;
    }

    .plan-features li {
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .plan-features li::before {
      content: '✓ ';
      color: var(--gta-green);
      font-weight: bold;
    }

    .plan-cta {
      width: 100%;
      padding: 1rem;
      font-size: 1.1rem;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      border: none;
    }
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: all 0.3s;
    }

    .free .plan-cta {
      background: rgba(255,255,255,0.1);
      color: white;
    }

    .premium .plan-cta {
      background: var(--gta-pink);
      color: white;
      font-weight: bold;
    }

    /* Discord Section */
    .discord-section {
      padding: 8rem 4rem;
      background: linear-gradient(135deg, #404EED 0%, #5865F2 100%);
      text-align: center;
      position: relative;
    }

    .discord-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 8vw, 6rem);
      color: white;
      margin-bottom: 2rem;
    }

    .discord-subtitle {
      font-size: 1.5rem;
      margin-bottom: 3rem;
      color: white;
    }

    .discord-btn {
      background: white;
      color: #5865F2;
      padding: 1.5rem 4rem;
      font-size: 1.3rem;
      font-family: 'Oswald', sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s;
    }

    .discord-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    /* Footer - Rockstar Style */
    .footer {
      background: #000;
      padding: 4rem 4rem 2rem;
      border-top: 2px solid rgba(255,0,102,0.3);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      margin-bottom: 4rem;
    }

    .footer-column h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      color: var(--gta-pink);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-links a:hover {
      color: var(--gta-cyan);
    }

    /* Disclaimer */
    .disclaimer {
      background: linear-gradient(135deg, rgba(255,0,102,0.3), rgba(0,212,255,0.3));
      border: 5px solid var(--gta-pink);
      border-radius: 20px;
      padding: 5rem 3rem;
      margin-top: 5rem;
      animation: disclaimerPulse 2s infinite;
    }

    @keyframes disclaimerPulse {
      0%, 100% { box-shadow: 0 0 30px rgba(255,0,102,0.8); }
      50% { box-shadow: 0 0 60px rgba(255,0,102,1); }
    }

    .disclaimer-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 4rem;
      color: var(--gta-pink);
      text-transform: uppercase;
      margin-bottom: 2rem;
      text-align: center;
    }

    /* ESRB Rating */
    .esrb-rating {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      background: rgba(0,0,0,0.9);
      padding: 1rem;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      gap: 1rem;
      z-index: 100;
    }

    .esrb-logo {
      width: 50px;
      height: 70px;
      background: white;
      color: black;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 2rem;
    }

    .esrb-text {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.6);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem 2rem;
      }

      .nav-menu {
        display: none;
      }

      .hero-title {
        font-size: 5rem;
      }

      .cinematic-title {
        font-size: 4rem;
      }

      .characters-grid {
        grid-template-columns: 1fr;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
      }

      .esrb-rating {
        display: none;
      }
    }
  </style>