
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

        :root {
          --primary-color: #8756F7;
          --primary-gradient: linear-gradient(135deg, #8756F7 0%, #6c4ad6 50%, #5a3bb8 100%);
          --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          --glass-bg: rgba(255, 255, 255, 0.1);
          --glass-border: rgba(255, 255, 255, 0.2);
          --shadow-primary: 0 8px 32px rgba(135, 86, 247, 0.3);
          --shadow-soft: 0 8px 40px rgba(0, 0, 0, 0.12);
          --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
        }

        * {
          box-sizing: border-box;
        }

        .modern-gaming-container {
          font-family: 'Inter', sans-serif;
          max-width: 100%;
          margin: 0 auto;
          padding: 20px;
          color: #333;
          line-height: 1.6;
          background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
          min-height: 100vh;
          position: relative;
        }

        .modern-gaming-container::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: 
            radial-gradient(circle at 20% 30%, rgba(135, 86, 247, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(108, 74, 214, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 50%);
          pointer-events: none;
          z-index: 0;
        }

        .modern-gaming-content {
          position: relative;
          z-index: 1;
        }

        .modern-gaming-grid {
          display: grid;
          grid-template-columns: 1fr 350px;
          gap: 30px;
          margin-bottom: 30px;
        }

        .modern-game-panel {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border-radius: 24px;
          padding: 10px;
          box-shadow: var(--shadow-soft);
          border: 1px solid rgba(255, 255, 255, 0.3);
          position: relative;
          overflow: hidden;
        }

        .modern-game-panel::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: var(--primary-gradient);
          z-index: 1;
        }

        .modern-iframe-wrapper {
          position: relative;
          width: 100%;
          aspect-ratio: 16/10;
          border-radius: 20px;
          overflow: hidden;
          margin-bottom: 24px;
          box-shadow: var(--shadow-glass);
          background: #000;
        }

        .modern-game-iframe {
          width: 100%;
          height: 100%;
          border: none;
          border-radius: 20px;
          background: #000;
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modern-splash-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: var(--primary-gradient);
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 20;
          transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
          overflow: hidden;
        }

        .modern-splash-overlay.fade-out {
          opacity: 0;
          transform: scale(1.1);
          pointer-events: none;
        }

        .modern-splash-bg {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: 
            radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
          animation: modern-float 6s ease-in-out infinite;
        }

        @keyframes modern-float {
          0%, 100% { transform: translateY(0px) rotate(0deg); }
          50% { transform: translateY(-10px) rotate(1deg); }
        }

        .modern-splash-particles {
          position: absolute;
          width: 100%;
          height: 100%;
          overflow: hidden;
        }

        .modern-particle {
          position: absolute;
          width: 4px;
          height: 4px;
          background: rgba(255, 255, 255, 0.6);
          border-radius: 50%;
          animation: modern-particle-float 8s infinite linear;
        }

        .modern-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
        .modern-particle:nth-child(2) { left: 20%; animation-delay: -2s; }
        .modern-particle:nth-child(3) { left: 30%; animation-delay: -4s; }
        .modern-particle:nth-child(4) { left: 50%; animation-delay: -1s; }
        .modern-particle:nth-child(5) { left: 60%; animation-delay: -3s; }
        .modern-particle:nth-child(6) { left: 80%; animation-delay: -5s; }
        .modern-particle:nth-child(7) { left: 90%; animation-delay: -1.5s; }

        @keyframes modern-particle-float {
          0% { transform: translateY(100vh) scale(0); opacity: 0; }
          10% { opacity: 1; }
          90% { opacity: 1; }
          100% { transform: translateY(-100px) scale(1); opacity: 0; }
        }

        .modern-splash-content {
          text-align: center;
          color: white;
          z-index: 10;
          animation: modern-splash-appear 1s ease-out;
        }

        @keyframes modern-splash-appear {
          0% { opacity: 0; transform: translateY(30px) scale(0.9); }
          100% { opacity: 1; transform: translateY(0) scale(1); }
        }

        .modern-game-logo {
          width: 120px;
          height: 120px;
          background: var(--glass-bg);
          border: 2px solid var(--glass-border);
          border-radius: 30px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 24px;
          backdrop-filter: blur(20px);
          animation: modern-logo-pulse 3s ease-in-out infinite;
          position: relative;
          overflow: hidden;
        }

        .modern-game-logo::before {
          content: '';
          position: absolute;
          top: -2px;
          left: -2px;
          right: -2px;
          bottom: -2px;
          background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
          border-radius: 30px;
          animation: modern-logo-shine 2s infinite;
        }

        @keyframes modern-logo-pulse {
          0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
          50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); }
        }

        @keyframes modern-logo-shine {
          0% { transform: translateX(-100%); }
          100% { transform: translateX(100%); }
        }

        .modern-game-icon {
          font-size: 48px;
          position: relative;
          z-index: 2;
        }

        .modern-splash-title {
          font-size: clamp(28px, 4vw, 36px);
          font-weight: 800;
          margin-bottom: 12px;
          background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .modern-splash-subtitle {
          font-size: 16px;
          opacity: 0.9;
          margin-bottom: 32px;
          font-weight: 400;
        }

        .modern-play-button {
          background: var(--glass-bg);
          border: 2px solid var(--glass-border);
          color: white;
          padding: 18px 48px;
          border-radius: 60px;
          font-size: 18px;
          font-weight: 700;
          cursor: pointer;
          backdrop-filter: blur(20px);
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          text-transform: uppercase;
          letter-spacing: 1px;
        }

        .modern-play-button::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
          transition: left 0.5s;
        }

        .modern-play-button:hover {
          transform: translateY(-3px) scale(1.05);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
          background: rgba(255, 255, 255, 0.2);
        }

        .modern-play-button:hover::before {
          left: 100%;
        }

        .modern-play-button:active {
          transform: translateY(-1px) scale(1.02);
        }

        .modern-ad-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.95);
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 30;
          backdrop-filter: blur(10px);
        }

        .modern-ad-content {
          width: 300px;
          height: 300px;
          background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 50%, #4ecdc4 100%);
          border-radius: 20px;
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 24px;
          font-weight: 700;
          margin-bottom: 24px;
          position: relative;
          overflow: hidden;
          animation: modern-ad-glow 3s ease-in-out infinite;
        }

        @keyframes modern-ad-glow {
          0%, 100% { box-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
          50% { box-shadow: 0 0 50px rgba(255, 217, 61, 0.7); }
        }

        .modern-ad-content::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
          animation: modern-ad-rotate 4s linear infinite;
        }

        @keyframes modern-ad-rotate {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }

        .modern-skip-button {
          background: var(--primary-gradient);
          color: white;
          border: none;
          padding: 14px 32px;
          border-radius: 50px;
          font-weight: 600;
          cursor: pointer;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
          font-size: 16px;
          box-shadow: var(--shadow-primary);
        }

        .modern-skip-button.visible {
          opacity: 1;
          transform: translateY(0);
        }

        .modern-skip-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 12px 40px rgba(135, 86, 247, 0.4);
        }

        .modern-loading-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          display: none;
          flex-direction: column;
          align-items: center;
          justify-content: center;
          z-index: 25;
          color: white;
        }

        .modern-loader {
          width: 60px;
          height: 60px;
          border: 4px solid rgba(255, 255, 255, 0.2);
          border-top: 4px solid white;
          border-radius: 50%;
          animation: modern-spin 1s linear infinite;
          margin-bottom: 20px;
        }

        @keyframes modern-spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }

        .modern-info-bar {
          display: flex;
          align-items: center;
          justify-content: space-between;
          padding: 20px 24px;
          background: var(--glass-bg);
          backdrop-filter: blur(20px);
          border-radius: 16px;
          border: 1px solid var(--glass-border);
          box-shadow: var(--shadow-glass);
        }

        .modern-info-left {
          display: flex;
          align-items: center;
          gap: 16px;
        }

        .modern-game-badge {
          width: 50px;
          height: 50px;
          border-radius: 12px;
          background: var(--primary-gradient);
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-weight: 700;
          font-size: 16px;
          box-shadow: var(--shadow-primary);
        }

        .modern-game-info h3 {
          font-size: 20px;
          font-weight: 700;
          color: var(--primary-color);
          margin: 0 0 4px 0;
        }

        .modern-stats {
          display: flex;
          align-items: center;
          gap: 8px;
          color: #666;
          font-size: 14px;
          font-weight: 500;
        }

        .modern-fullscreen-btn {
          background: var(--primary-gradient);
          color: white;
          border: none;
          padding: 12px 24px;
          border-radius: 12px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          display: flex;
          align-items: center;
          gap: 8px;
          box-shadow: var(--shadow-primary);
        }

        .modern-fullscreen-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 12px 40px rgba(135, 86, 247, 0.4);
        }

        .modern-sidebar {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border-radius: 24px;
          padding: 30px;
          box-shadow: var(--shadow-soft);
          border: 1px solid rgba(255, 255, 255, 0.3);
          height: fit-content;
          position: sticky;
          top: 20px;
        }

        .modern-sidebar-header {
          display: flex;
          align-items: center;
          gap: 12px;
          margin-bottom: 24px;
        }

        .modern-sidebar-title {
          font-size: 22px;
          font-weight: 700;
          color: #333;
          margin: 0;
        }

        .modern-trending-list {
          display: flex;
          flex-direction: column;
          gap: 16px;
        }

        .modern-trending-card {
          display: flex;
          align-items: center;
          gap: 16px;
          padding: 16px;
          border-radius: 16px;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border: 1px solid transparent;
          background: rgba(255, 255, 255, 0.5);
        }

        .modern-trending-card:hover {
          background: var(--glass-bg);
          backdrop-filter: blur(20px);
          border-color: var(--glass-border);
          transform: translateX(8px);
          box-shadow: var(--shadow-glass);
        }

        .modern-game-thumb {
          width: 56px;
          height: 56px;
          border-radius: 12px;
          background: var(--secondary-gradient);
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-weight: 700;
          font-size: 14px;
          flex-shrink: 0;
        }

        .modern-game-details h4 {
          font-size: 16px;
          font-weight: 600;
          color: #333;
          margin: 0 0 4px 0;
          transition: color 0.3s ease;
        }

        .modern-game-meta {
          font-size: 13px;
          color: #666;
          margin: 0;
        }

        .modern-trending-card:hover .modern-game-details h4 {
          color: var(--primary-color);
        }

        .modern-details-panel {
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(20px);
          border-radius: 24px;
          padding: 30px;
          box-shadow: var(--shadow-soft);
          border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .modern-details-title {
          font-size: 28px;
          font-weight: 800;
          color: #333;
          margin-bottom: 24px;
        }

        .modern-detail-section {
          margin-bottom: 28px;
        }

        .modern-detail-label {
          font-size: 18px;
          font-weight: 700;
          color: var(--primary-color);
          margin-bottom: 12px;
          display: flex;
          align-items: center;
          gap: 8px;
        }

        .modern-detail-content {
          color: #555;
          line-height: 1.8;
          font-size: 15px;
        }

        .modern-tags-grid {
          display: flex;
          flex-wrap: wrap;
          gap: 10px;
        }

        .modern-tag {
          background: rgba(135, 86, 247, 0.1);
          color: var(--primary-color);
          padding: 8px 16px;
          border-radius: 25px;
          font-size: 14px;
          font-weight: 600;
          cursor: pointer;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          border: 1px solid rgba(135, 86, 247, 0.2);
        }

        .modern-tag:hover {
          background: var(--primary-gradient);
          color: white;
          transform: translateY(-2px);
          box-shadow: var(--shadow-primary);
        }

        /* Responsive Design */    </style>
        @media (max-width: 1200px) {
          .modern-gaming-grid {
            grid-template-columns: 1fr 320px;
            gap: 24px;
          }
          
          .modern-ad-content {
            width: 280px;
            height: 280px;
          }
        }

        @media (max-width: 968px) {
          .modern-gaming-grid {
            grid-template-columns: 1fr;
            gap: 24px;
          }
          
          .modern-sidebar {
            position: static;
          }
          
          .modern-iframe-wrapper {
            aspect-ratio: 16/9;
          }
        }

        @media (max-width: 768px) {
          .modern-gaming-container {
            padding: 16px;
          }
          
          .modern-game-panel,
          .modern-sidebar,
          .modern-details-panel {
            padding: 20px;
          }
          
          .modern-iframe-wrapper {
            aspect-ratio: 4/3;
          }
          
          .modern-info-bar {
            flex-direction: column;
            gap: 16px;
            text-align: center;
          }
          
          .modern-info-left {
            justify-content: center;
          }
          
          .modern-splash-title {
            font-size: 24px;
          }
          
          .modern-play-button {
            padding: 16px 40px;
            font-size: 16px;
          }
          
          .modern-ad-content {
            width: 250px;
            height: 250px;
            font-size: 20px;
          }
        }

        @media (max-width: 480px) {
          .modern-gaming-container {
            padding: 12px;
          }
          
          .modern-iframe-wrapper {
            aspect-ratio: 1;
          }
          
          .modern-trending-card {
            gap: 12px;
          }
          
          .modern-game-thumb {
            width: 48px;
            height: 48px;
          }
          
          .modern-details-title {
            font-size: 24px;
          }
          
          .modern-ad-content {
            width: 200px;
            height: 200px;
            font-size: 18px;
          }
        }
