* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #0a0a0f;
      color: #ffffff;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    /* Custom Cursor */
    body {
      cursor: none;
    }

    #custom-cursor {
      position: fixed;
      width: 20px;
      height: 20px;
      border: 2px solid #00ffff;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.1s ease;
      box-shadow: 0 0 20px #00ffff;
    }

    #cursor-trail {
      position: fixed;
      width: 8px;
      height: 8px;
      background: #ff00ff;
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      box-shadow: 0 0 15px #ff00ff;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 15, 0.95);
      backdrop-filter: blur(10px);
      padding: 1rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      border-bottom: 2px solid transparent;
      border-image: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff) 1;
    }

    .logo {
      font-family: 'Orbitron', sans-serif;
      font-size: 1.8rem;
      font-weight: bold;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      list-style: none;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      position: relative;
      font-size: 0.9rem;
    }

    .nav-links a:hover {
      color: #00ffff;
      text-shadow: 0 0 10px #00ffff;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #00ffff, #ff00ff);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: #00ffff;
      transition: all 0.3s ease;
      box-shadow: 0 0 10px #00ffff;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    .auth-btn {
      padding: 0.6rem 1.5rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      border: none;
      border-radius: 25px;
      color: #ffffff;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    }

    .auth-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    }

    /* Hero Section */
    .hero {
      min-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 6rem 5% 4rem;
      background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      opacity: 0.3;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 10, 15, 0.8) 0%, rgba(26, 10, 46, 0.6) 50%, rgba(10, 10, 15, 0.8) 100%);
      z-index: -1;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
      animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .hero-content {
      text-align: center;
      z-index: 1;
      max-width: 900px;
    }

    .hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 4rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: glitch 3s infinite;
      background-size: 200% auto;
    }

    @keyframes glitch {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .hero p {
      font-size: 1.5rem;
      margin-bottom: 2rem;
      color: #cccccc;
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary, .btn-secondary {
      padding: 1rem 2.5rem;
      font-size: 1.1rem;
      font-weight: bold;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(45deg, #00ffff, #0099ff);
      color: #000000;
      box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 40px rgba(0, 255, 255, 0.8);
    }

    .btn-secondary {
      background: transparent;
      color: #ffffff;
      border: 2px solid #ff00ff;
      box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    }

    .btn-secondary:hover {
      background: rgba(255, 0, 255, 0.2);
      transform: translateY(-3px);
      box-shadow: 0 5px 40px rgba(255, 0, 255, 0.6);
    }

    /* About Section */
    .about {
      padding: 6rem 5%;
      background: #0f0f1a;
    }

    .about-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      width: 100%;
      border-radius: 20px;
      border: 3px solid #00ffff;
      box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    }

    .about-content h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .about-content p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #cccccc;
      margin-bottom: 2rem;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2rem;
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
      background: rgba(0, 255, 255, 0.05);
      border-radius: 15px;
      border: 2px solid rgba(0, 255, 255, 0.2);
      transition: all 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-5px);
      border-color: #00ffff;
      box-shadow: 0 5px 30px rgba(0, 255, 255, 0.3);
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #00ffff;
      display: block;
    }

    .stat-label {
      font-size: 0.9rem;
      color: #999999;
      margin-top: 0.5rem;
    }

    /* Games Section */
    .games {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    }

    .section-title {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .games-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .game-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(0, 255, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .game-card:hover {
      transform: translateY(-10px);
      border-color: #00ffff;
      box-shadow: 0 10px 40px rgba(0, 255, 255, 0.4);
    }

    .game-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .game-info {
      padding: 1.5rem;
    }

    .game-info h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #00ffff;
    }

    .game-info p {
      color: #999999;
      margin-bottom: 1rem;
    }

    .play-btn {
      width: 100%;
      padding: 0.8rem;
      background: linear-gradient(45deg, #ff00ff, #ff0099);
      border: none;
      border-radius: 10px;
      color: #ffffff;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .play-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(255, 0, 255, 0.5);
    }

    /* Playable Games Section */
    .playable-games {
      padding: 6rem 5%;
      background: #0f0f1a;
    }

    .playable-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .playable-card {
      background: rgba(0, 255, 255, 0.05);
      border: 2px solid rgba(0, 255, 255, 0.3);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .playable-card:hover {
      transform: translateY(-5px);
      border-color: #00ffff;
      box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
    }

    .playable-card h3 {
      font-size: 1.8rem;
      color: #00ffff;
      margin-bottom: 1rem;
    }

    .game-canvas {
      width: 100%;
      height: 300px;
      background: #000000;
      border-radius: 10px;
      margin: 1rem 0;
      border: 2px solid #00ffff;
    }

    .game-controls {
      display: flex;
      gap: 1rem;
      justify-content: center;
      margin-top: 1rem;
    }

    .control-btn {
      padding: 0.8rem 1.5rem;
      background: linear-gradient(45deg, #00ffff, #0099ff);
      border: none;
      border-radius: 10px;
      color: #000000;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .control-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
    }

    /* Schedule Section */
    .schedule {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0f 100%);
    }

    .schedule-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .schedule-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .schedule-day {
      background: rgba(0, 255, 255, 0.05);
      border: 2px solid rgba(0, 255, 255, 0.2);
      border-radius: 15px;
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .schedule-day:hover {
      border-color: #00ffff;
      box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    }

    .schedule-day h3 {
      font-size: 1.5rem;
      color: #00ffff;
      margin-bottom: 1rem;
      text-align: center;
    }

    .schedule-item {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .time {
      font-weight: bold;
      color: #ff00ff;
      font-size: 1.1rem;
    }

    .game {
      color: #ffffff;
      font-size: 1.2rem;
    }

    .type {
      color: #999999;
      font-size: 0.9rem;
    }

    /* Achievements Section */
    .achievements {
      padding: 6rem 5%;
      background: #0f0f1a;
    }

    .achievements-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .achievements-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .achievement-card {
      background: rgba(255, 215, 0, 0.05);
      border: 2px solid rgba(255, 215, 0, 0.3);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }

    .achievement-card:hover {
      transform: translateY(-5px);
      border-color: #ffd700;
      box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
    }

    .achievement-icon {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .achievement-card h3 {
      color: #ffd700;
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .achievement-card p {
      color: #cccccc;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .achievement-date {
      color: #999999;
      font-size: 0.9rem;
      font-style: italic;
    }

    /* Setup Section */
    .setup {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #0a0a0f 100%);
    }

    .setup-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .setup-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .setup-category {
      background: rgba(0, 255, 255, 0.05);
      border: 2px solid rgba(0, 255, 255, 0.2);
      border-radius: 20px;
      padding: 2rem;
    }

    .setup-category h3 {
      color: #00ffff;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .setup-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .setup-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 10px;
      border: 1px solid rgba(0, 255, 255, 0.1);
    }

    .item-name {
      color: #ffffff;
      font-weight: bold;
    }

    .item-spec {
      color: #00ffff;
      font-size: 0.9rem;
    }

    /* Guides Section */
    .guides {
      padding: 6rem 5%;
      background: #0f0f1a;
    }

    .guides-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .guides-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .guide-card {
      background: rgba(255, 0, 255, 0.05);
      border: 2px solid rgba(255, 0, 255, 0.2);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.3s ease;
    }

    .guide-card:hover {
      transform: translateY(-5px);
      border-color: #ff00ff;
      box-shadow: 0 10px 40px rgba(255, 0, 255, 0.2);
    }

    .guide-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }

    .guide-header h3 {
      color: #ff00ff;
      font-size: 1.3rem;
    }

    .guide-difficulty {
      background: rgba(0, 255, 255, 0.2);
      color: #00ffff;
      padding: 0.3rem 0.8rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: bold;
    }

    .guide-card p {
      color: #cccccc;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .guide-tips {
      list-style: none;
      margin-bottom: 2rem;
    }

    .guide-tips li {
      color: #999999;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      padding-left: 1.5rem;
    }

    .guide-tips li::before {
      content: '▶';
      color: #00ffff;
      position: absolute;
      left: 0;
    }

    .guide-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(45deg, #ff00ff, #ff0099);
      border: none;
      border-radius: 10px;
      color: #ffffff;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .guide-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 5px 20px rgba(255, 0, 255, 0.4);
    }

    /* Highlights Section */
    .highlights {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0f 100%);
    }

    .highlights-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .highlight-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      overflow: hidden;
      border: 2px solid rgba(0, 255, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .highlight-card:hover {
      transform: translateY(-10px);
      border-color: #00ffff;
      box-shadow: 0 15px 50px rgba(0, 255, 255, 0.3);
    }

    .highlight-thumbnail {
      position: relative;
      overflow: hidden;
    }

    .highlight-thumbnail img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .highlight-card:hover .highlight-thumbnail img {
      transform: scale(1.1);
    }

    .play-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background: rgba(0, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #000000;
      transition: all 0.3s ease;
    }

    .highlight-card:hover .play-overlay {
      transform: translate(-50%, -50%) scale(1.2);
      box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    }

    .highlight-info {
      padding: 1.5rem;
    }

    .highlight-info h3 {
      color: #00ffff;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .highlight-info p {
      color: #999999;
      margin-bottom: 1rem;
    }

    .highlight-stats {
      display: flex;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .highlight-stats span {
      color: #cccccc;
    }

    /* Fan Art Section */
    .fanart {
      padding: 6rem 5%;
      background: #0f0f1a;
    }

    .fanart-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .fanart-description {
      text-align: center;
      color: #cccccc;
      font-size: 1.2rem;
      margin-bottom: 3rem;
    }

    .fanart-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 4rem;
    }

    .fanart-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      border: 2px solid rgba(255, 0, 255, 0.2);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .fanart-item:hover {
      transform: translateY(-10px);
      border-color: #ff00ff;
      box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
    }

    .fanart-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .fanart-item:hover img {
      transform: scale(1.1);
    }

    .fanart-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
      padding: 2rem 1rem 1rem;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }

    .fanart-item:hover .fanart-overlay {
      transform: translateY(0);
    }

    .fanart-overlay h4 {
      color: #ff00ff;
      margin-bottom: 0.5rem;
    }

    .fanart-overlay p {
      color: #cccccc;
      font-size: 0.9rem;
    }

    .fanart-submit {
      text-align: center;
      background: rgba(255, 0, 255, 0.05);
      border: 2px solid rgba(255, 0, 255, 0.2);
      border-radius: 20px;
      padding: 3rem;
    }

    .fanart-submit h3 {
      color: #ff00ff;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .fanart-submit p {
      color: #cccccc;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .submit-art-btn {
      padding: 1rem 2rem;
      background: linear-gradient(45deg, #ff00ff, #ff0099);
      border: none;
      border-radius: 25px;
      color: #ffffff;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .submit-art-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 30px rgba(255, 0, 255, 0.5);
    }

    /* Community Section */
    .community {
      padding: 6rem 5%;
      background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0f 100%);
      text-align: center;
    }

    .community-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .community h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      margin-bottom: 1.5rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .community p {
      font-size: 1.2rem;
      color: #cccccc;
      margin-bottom: 2rem;
    }

    .subscribe-form {
      display: flex;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .subscribe-form input {
      flex: 1;
      min-width: 250px;
      padding: 1rem 1.5rem;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(0, 255, 255, 0.3);
      border-radius: 30px;
      color: #ffffff;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .subscribe-form input:focus {
      border-color: #00ffff;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

    .subscribe-form button {
      padding: 1rem 2rem;
      background: linear-gradient(45deg, #ff00ff, #ff0099);
      border: none;
      border-radius: 30px;
      color: #ffffff;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .subscribe-form button:hover {
      transform: scale(1.05);
      box-shadow: 0 5px 30px rgba(255, 0, 255, 0.5);
    }

    .social-links {
      display: flex;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }

    .social-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 255, 255, 0.1);
      border: 2px solid #00ffff;
      border-radius: 50%;
      color: #00ffff;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icon:hover {
      transform: translateY(-5px) rotate(360deg);
      box-shadow: 0 5px 30px rgba(0, 255, 255, 0.5);
      background: rgba(0, 255, 255, 0.2);
    }

    /* Footer */
    footer {
      background: #0a0a0f;
      padding: 3rem 5%;
      border-top: 2px solid transparent;
      border-image: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff) 1;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }

    .footer-section h3 {
      font-family: 'Orbitron', sans-serif;
      color: #00ffff;
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .footer-section p, .footer-section a {
      color: #999999;
      line-height: 2;
      text-decoration: none;
      display: block;
      transition: all 0.3s ease;
    }

    .footer-section a:hover {
      color: #00ffff;
      padding-left: 5px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0, 255, 255, 0.2);
      color: #666666;
    }

    /* Login Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: linear-gradient(135deg, #1a0a2e 0%, #0f0f1a 100%);
      padding: 3rem;
      border-radius: 20px;
      border: 2px solid #00ffff;
      box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
      max-width: 450px;
      width: 90%;
      position: relative;
    }

    .close-modal {
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-size: 2rem;
      color: #00ffff;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .close-modal:hover {
      transform: rotate(90deg);
      color: #ff00ff;
    }

    .modal-content h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #00ffff;
      font-weight: 500;
    }

    .form-group input {
      width: 100%;
      padding: 1rem;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(0, 255, 255, 0.3);
      border-radius: 10px;
      color: #ffffff;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s ease;
    }

    .form-group input:focus {
      border-color: #00ffff;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

    .submit-btn {
      width: 100%;
      padding: 1rem;
      background: linear-gradient(45deg, #00ffff, #0099ff);
      border: none;
      border-radius: 10px;
      color: #000000;
      font-weight: bold;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 1rem;
    }

    .submit-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 5px 30px rgba(0, 255, 255, 0.5);
    }

    .toggle-btn {
      background: none;
      border: none;
      color: #00ffff;
      cursor: pointer;
      font-size: 0.9rem;
      text-decoration: underline;
      transition: all 0.3s ease;
    }

    .toggle-btn:hover {
      color: #ff00ff;
      transform: scale(1.05);
    }

    .message {
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1rem;
      text-align: center;
      display: none;
    }

    .message.success {
      background: rgba(0, 255, 0, 0.1);
      border: 2px solid #00ff00;
      color: #00ff00;
    }

    .message.error {
      background: rgba(255, 0, 0, 0.1);
      border: 2px solid #ff0000;
      color: #ff0000;
    }

    /* Privacy & Terms Pages */
    .content-page {
      padding: 8rem 5% 4rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .content-page h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 3rem;
      margin-bottom: 2rem;
      background: linear-gradient(45deg, #00ffff, #ff00ff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .content-page h2 {
      font-size: 2rem;
      color: #00ffff;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }

    .content-page p {
      line-height: 1.8;
      color: #cccccc;
      margin-bottom: 1rem;
    }

    .content-page ul {
      margin-left: 2rem;
      margin-bottom: 1rem;
      color: #cccccc;
    }

    .content-page li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        width: 70%;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        border-left: 2px solid #00ffff;
      }

      .nav-links.active {
        right: 0;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1.2rem;
      }

      .about-container {
        grid-template-columns: 1fr;
      }

      .stats {
        grid-template-columns: 1fr;
      }

      .games-grid {
        grid-template-columns: 1fr;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      .schedule-grid {
        grid-template-columns: 1fr;
      }

      .achievements-grid {
        grid-template-columns: 1fr;
      }

      .setup-grid {
        grid-template-columns: 1fr;
      }

      .guides-grid {
        grid-template-columns: 1fr;
      }

      .highlights-grid {
        grid-template-columns: 1fr;
      }

      .fanart-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }

    /* Loading State */
    .loading {
      opacity: 0.5;
      pointer-events: none;
    }

    /* Toast Notification */
    .toast {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: linear-gradient(45deg, #00ffff, #0099ff);
      color: #000000;
      padding: 1rem 2rem;
      border-radius: 10px;
      box-shadow: 0 5px 30px rgba(0, 255, 255, 0.5);
      z-index: 3000;
      display: none;
      animation: slideIn 0.3s ease;
    }

    .toast.show {
      display: block;
    }

    @keyframes slideIn {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Footer Subscribe Buttons */
    .footer-subscribe-btn, .footer-unsubscribe-btn {
      padding: 0.8rem 1.5rem;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
      width: 100%;
      font-size: 0.9rem;
    }

    .footer-subscribe-btn {
      background: linear-gradient(45deg, #00ffff, #0099ff);
      color: #000000;
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    }

    .footer-subscribe-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 25px rgba(0, 255, 255, 0.5);
    }

    .footer-unsubscribe-btn {
      background: linear-gradient(45deg, #ff4444, #cc0000);
      color: #ffffff;
      box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    }

    .footer-unsubscribe-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 25px rgba(255, 68, 68, 0.5);
    }
