/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* Header styles */
  header {
    background-color: #202020;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-left h1 {
    font-size: 24px;
    white-space: nowrap;
    color: #00bfff;
    font-weight: bold;
  }
  
  .header-category-filter select {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    background-color: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .header-category-filter select:hover {
    background-color: rgba(255,255,255,0.2);
  }
  
  .header-category-filter select option {
    background-color: #333;
    color: white;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  /* Language selector */
  .language-selector {
    position: relative;
    z-index: 1000;
  }
  
  .globe-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
  }
  
  .globe-icon:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .globe-icon svg {
    color: white;
    width: 20px;
    height: 20px;
  }
  
  .language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 180px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 1001;
    
    /* Default hidden state */
    display: none;
  }
  
  .language-dropdown.active {
    display: block;
  }
  
  .language-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }
  
  .language-dropdown li {
    padding: 12px 16px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background-color 0.2s;
    user-select: none;
  }
  
  .language-dropdown li:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .language-dropdown li.active {
    color: #00bfff;
    position: relative;
    padding-left: 35px;
    background-color: rgba(0, 191, 255, 0.1);
  }
  
  .language-dropdown li.active:before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: #00bfff;
    font-weight: bold;
  }
  
  /* Banner with typing effect */
  .banner {
    position: relative;
    background-color: rgba(100, 100, 100, 0.15);
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .typing-text {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
  }
  
  .cursor {
    display: inline-block;
    width: 3px;
    height: 24px;
    background-color: white;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Search container */
  .search-container {
    display: flex;
    justify-content: center;
    margin: 30px 20px;
  }
  
  .search-box {
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .search-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    background-color: #1e1e1e;
    color: white;
    font-size: 16px;
    border-radius: 8px 0 0 8px;
  }
  
  .search-input::placeholder {
    color: #888;
  }
  
  .search-input:focus {
    outline: none;
    background-color: #2a2a2a;
  }
  
  .search-button {
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .search-button:hover {
    background-color: #00a0d9;
  }
  
  /* Main container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Games grid */
  .games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .game-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid transparent;
  }
  
  .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #00bfff;
  }
  
  .game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .game-card:hover img {
    transform: scale(1.05);
  }
  
  .game-card .info {
    padding: 20px;
  }
  
  .game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
  }
  
  .game-card .category {
    color: #00bfff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .game-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 12px;
  }
  
  .game-card .description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .game-card .buttons {
    display: flex;
    gap: 10px;
  }
  
  .button {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-primary {
    background-color: #00bfff;
    color: white;
  }
  
  .button-primary:hover {
    background-color: #00a0d9;
    transform: translateY(-2px);
  }
  
  .button-secondary {
    background-color: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
  }
  
  .button-secondary:hover {
    background-color: #00bfff;
    color: white;
  }
  
  /* Hidden state */
  .game-card.hidden {
    display: none;
  }
  
  /* No results */
  .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    display: none;
  }
  
  .no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  /* Footer */
  footer {
    background-color: #202020;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid #333;
  }
  
  footer p {
    color: #aaa;
  }
  
  /* Product Detail Page Styles */
  .detail-page {
    margin-top: 20px;
  }
  
  /* Back button */
  .back-button {
    margin-bottom: 30px;
  }
  
  .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .back-btn:hover {
    background-color: #444;
    transform: translateX(-5px);
  }
  
  /* Loading and error states */
  .loading, .error-message {
    text-align: center;
    padding: 80px 20px;
  }
  
  .spinner {
    border: 4px solid #333;
    border-top: 4px solid #00bfff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .error-message h2 {
    color: #ff5555;
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  /* Game detail layout */
  .game-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .game-image {
    position: relative;
  }
  
  .game-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .game-image:hover img {
    transform: scale(1.02);
  }
  
  .game-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
  }
  
  .game-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
  }
  
  .game-price.free {
    color: #00bfff;
  }
  
  .game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
  }
  
  /* Game specs */
  .game-specs {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #333;
  }
  
  .game-specs h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #444;
  }
  
  .spec-item:last-child {
    border-bottom: none;
  }
  
  .spec-label {
    color: #aaa;
    font-weight: 500;
  }
  
  .spec-value {
    color: #fff;
    font-weight: 600;
  }
  
  /* Action buttons */
  .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
  }
  
  .btn-secondary:hover {
    background-color: #00bfff;
    color: white;
  }
  
  .btn-wishlist {
    background-color: #333;
    color: #fff;
    border: 2px solid #555;
  }
  
  .btn-wishlist:hover {
    background-color: #555;
    border-color: #777;
  }
  
  /* Related games section */
  .related-games {
    margin-top: 60px;
  }
  
  .related-games h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .related-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
  }
  
  .related-card:hover {
    transform: translateY(-5px);
    border-color: #00bfff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
  
  .related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .related-card .card-info {
    padding: 15px;
  }
  
  .related-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .related-card .card-price {
    color: #00ff88;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Cart Page Styles */
  .cart-page {
    margin-top: 20px;
    min-height: 70vh;
  }
  
  .page-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }
  
  /* Empty cart state */
  .empty-cart {
    text-align: center;
    padding: 80px 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    margin: 40px 0;
  }
  
  .empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
  }
  
  .empty-cart h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .empty-cart p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  /* Cart table */
  .cart-table-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .cart-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .cart-table th {
    background-color: #2a2a2a;
    color: #00bfff;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #333;
  }
  
  .cart-table td {
    padding: 20px;
    border-bottom: 1px solid #333;
    vertical-align: middle;
  }
  
  .cart-table tr:last-child td {
    border-bottom: none;
  }
  
  .cart-table tr:hover {
    background-color: rgba(255,255,255,0.05);
  }
  
  /* Cart item styles */
  .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  
  .cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
  }
  
  .cart-item-category {
    color: #00bfff;
    font-size: 0.9rem;
  }
  
  .cart-item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff88;
  }
  
  .cart-item-price.free {
    color: #00bfff;
  }
  
  .remove-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .remove-btn:hover {
    background-color: #ff3742;
    transform: translateY(-2px);
  }
  
  /* Cart summary */
  .cart-summary {
    display: flex;
    justify-content: flex-end;
  }
  
  .summary-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 12px;
    min-width: 350px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .summary-card h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #444;
    color: #ddd;
  }
  
  .summary-row:last-of-type {
    border-bottom: none;
  }
  
  .total-row {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #00bfff;
  }
  
  .cart-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
  }
  
  .cart-actions .btn {
    flex: 1;
  }
  
  /* Responsive cart */
  @media (max-width: 768px) {
    .cart-table-container {
      overflow-x: auto;
    }
    
    .cart-table {
      min-width: 600px;
    }
    
    .cart-summary {
      justify-content: center;
    }
    
    .summary-card {
      min-width: auto;
      width: 100%;
    }
    
    .cart-actions {
      flex-direction: column;
    }
    
    .cart-item {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
    
    .cart-item-image {
      width: 80px;
      height: 80px;
    }
  }
  
  /* User Menu */
  .user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .user-name {
    color: #00bfff;
    font-size: 14px;
    font-weight: 600;
  }
  
  .logout-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
  }
  
  .logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Login & Register Page Styles */
  .login-page {
    background-color: #121212;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .login-container {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .logo-text {
    color: #00bfff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
  }
  
  .login-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .login-header p {
    color: #aaa;
    font-size: 0.95rem;
  }
  
  .login-form {
    margin-bottom: 25px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .password-container {
    position: relative;
  }
  
  .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
  }
  
  .eye-icon:hover {
    color: #00bfff;
  }
  
  .password-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
  }
  
  .error-message {
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ddd;
    cursor: pointer;
  }
  
  .remember-me input[type="checkbox"] {
    display: none;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .remember-me input:checked + .checkmark {
    background-color: #00bfff;
    border-color: #00bfff;
  }
  
  .remember-me input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  
  .forgot-password, .terms-link {
    color: #00bfff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .forgot-password:hover, .terms-link:hover {
    color: #00a0d9;
    text-decoration: underline;
  }
  
  .login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }
  
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
  }
  
  .divider span {
    background-color: rgba(30, 30, 30, 0.95);
    color: #aaa;
    padding: 0 15px;
    font-size: 0.9rem;
  }
  
  .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .register-section {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ddd;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
  }
  
  .back-to-home {
    text-align: center;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .back-link:hover {
    color: #00bfff;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .login-container {
      padding: 30px 20px;
      margin: 10px;
    }
    
    .logo-text {
      font-size: 2rem;
    }
    
    .login-header h2 {
      font-size: 1.3rem;
    }
    
    .form-options {
      flex-direction: column;
      align-items: flex-start;
    }
  }
    .page-title {
      font-size: 1.8rem;
    }
    
    .cart-table th,
    .cart-table td {
      padding: 15px 10px;
      font-size: 0.9rem;
    }
    
    .summary-card {
      padding: 20px;
    }
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
    }
    
    .header-left {
      justify-content: center;/* Checkout Pages Styles */
      .checkout-page, .payment-page, .confirmation-page {
        margin-top: 20px;
        min-height: 70vh;
      }
      
      .checkout-container, .payment-container, .confirmation-container {
        max-width: 800px;
        margin: 0 auto;
      }
      
      .checkout-section, .payment-section, .confirmation-section {
        margin-bottom: 25px;
      }
      
      .section-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
        padding: 30px;
        border-radius: 12px;
        border: 1px solid #333;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      }
      
      .section-card h3 {
        color: #00bfff;
        margin-bottom: 20px;
        font-size: 1.3rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      
      /* Order Summary */
      .order-items {
        margin-bottom: 20px;
      }
      
      .order-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #333;
      }
      
      .order-item:last-child {
        border-bottom: none;
      }
      
      .item-info {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .item-image {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        object-fit: cover;
      }
      
      .item-details h4 {
        color: #fff;
        font-size: 1rem;
        margin-bottom: 4px;
      }
      
      .item-details p {
        color: #aaa;
        font-size: 0.9rem;
      }
      
      .item-price {
        font-weight: bold;
        color: #00ff88;
      }
      
      .order-total {
        border-top: 2px solid #333;
        padding-top: 15px;
      }
      
      .total-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        color: #ddd;
      }
      
      .final-total {
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
        border-top: 1px solid #444;
        padding-top: 10px;
        margin-top: 10px;
      }
      
      /* Customer Form */
      .customer-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      
      .form-row {
        display: flex;
        gap: 20px;
      }
      
      .form-group {
        flex: 1;
      }
      
      .form-group label {
        display: block;
        color: #ddd;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 8px;
      }
      
      .form-group input {
        width: 100%;
        padding: 12px 16px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
      }
      
      .form-group input:read-only {
        background-color: rgba(255, 255, 255, 0.05);
        color: #aaa;
      }
      
      .form-group input:focus {
        outline: none;
        border-color: #00bfff;
        box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
      }
      
      /* Payment Method */
      .payment-option {
        border: 2px solid #333;
        border-radius: 12px;
        padding: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
      }
      
      .payment-option.selected {
        border-color: #00bfff;
        background-color: rgba(0, 191, 255, 0.1);
      }
      
      .payment-header {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .payment-logo {
        width: 50px;
        height: 30px;
        object-fit: contain;
      }
      
      .payment-info h4 {
        color: #fff;
        margin-bottom: 5px;
      }
      
      .payment-info p {
        color: #aaa;
        font-size: 0.9rem;
      }
      
      /* Payment Instructions */
      .instructions {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      
      .instruction-step {
        display: flex;
        align-items: flex-start;
        gap: 15px;
      }
      
      .step-number {
        background-color: #00bfff;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        flex-shrink: 0;
      }
      
      .step-content h4 {
        color: #fff;
        margin-bottom: 5px;
      }
      
      .step-content p {
        color: #aaa;
        line-height: 1.5;
      }
      
      /* QR Code Section */
      .qr-section {
        text-align: center;
      }
      
      .qr-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
      }
      
      .qr-code {
        background-color: white;
        padding: 20px;
        border-radius: 12px;
        display: inline-block;
      }
      
      .payment-details {
        background-color: rgba(0, 0, 0, 0.3);
        padding: 20px;
        border-radius: 8px;
        min-width: 250px;
      }
      
      .detail-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        color: #ddd;
      }
      
      .detail-row:last-child {
        margin-bottom: 0;
      }
      
      .amount {
        font-weight: bold;
        color: #00ff88;
        font-size: 1.1rem;
      }
      
      .order-id {
        font-family: monospace;
        color: #00bfff;
      }
      
      /* File Upload */
      .upload-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      .upload-area {
        border: 2px dashed #444;
        border-radius: 12px;
        padding: 40px 20px;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
      }
      
      .upload-area:hover {
        border-color: #00bfff;
        background-color: rgba(0, 191, 255, 0.05);
      }
      
      .upload-area.dragover {
        border-color: #00bfff;
        background-color: rgba(0, 191, 255, 0.1);
      }
      
      .upload-content svg {
        color: #666;
        margin-bottom: 15px;
      }
      
      .upload-content h4 {
        color: #fff;
        margin-bottom: 8px;
      }
      
      .upload-content p {
        color: #aaa;
        margin-bottom: 10px;
      }
      
      .browse-link {
        color: #00bfff;
        cursor: pointer;
        text-decoration: underline;
      }
      
      .upload-content small {
        color: #666;
        font-size: 0.8rem;
      }
      
      .uploaded-file {
        background-color: rgba(0, 191, 255, 0.1);
        border: 1px solid #00bfff;
        border-radius: 8px;
        padding: 15px;
      }
      
      .file-info {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .file-info svg {
        color: #00bfff;
      }
      
      .file-details {
        flex: 1;
      }
      
      .file-name {
        display: block;
        color: #fff;
        font-weight: 600;
      }
      
      .file-size {
        display: block;
        color: #aaa;
        font-size: 0.9rem;
      }
      
      .remove-file {
        background-color: #ff4757;
        color: white;
        /* General styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      
      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #121212;
        color: #ffffff;
        line-height: 1.6;
      }
      
      /* Header styles */
      header {
        background-color: #202020;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      }
      
      .header-left {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      
      .header-left h1 {
        font-size: 24px;
        white-space: nowrap;
        color: #00bfff;
        font-weight: bold;
      }
      
      .header-category-filter select {
        padding: 8px 12px;
        border-radius: 4px;
        border: none;
        background-color: rgba(255,255,255,0.1);
        color: white;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s;
      }
      
      .header-category-filter select:hover {
        background-color: rgba(255,255,255,0.2);
      }
      
      .header-category-filter select option {
        background-color: #333;
        color: white;
      }
      
      .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .nav-links {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 4px;
        transition: background-color 0.2s;
        font-weight: 500;
      }
      
      .nav-links a:hover {
        background-color: rgba(255,255,255,0.1);
      }
      
      /* Language selector */
      .language-selector {
        position: relative;
        z-index: 1000;
      }
      
      .globe-icon {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: background-color 0.2s;
      }
      
      .globe-icon:hover {
        background-color: rgba(255,255,255,0.1);
      }
      
      .globe-icon svg {
        color: white;
        width: 20px;
        height: 20px;
      }
      
      .language-dropdown {
        position: absolute;
        top: calc(100% + 5px);
        right: 0;
        width: 180px;
        background-color: #333;
        border: 1px solid #555;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        z-index: 1001;
        
        /* Default hidden state */
        display: none;
      }
      
      .language-dropdown.active {
        display: block;
      }
      
      .language-dropdown ul {
        list-style: none;
        padding: 8px 0;
        margin: 0;
      }
      
      .language-dropdown li {
        padding: 12px 16px;
        cursor: pointer;
        color: white;
        font-size: 14px;
        transition: background-color 0.2s;
        user-select: none;
      }
      
      .language-dropdown li:hover {
        background-color: rgba(255,255,255,0.1);
      }
      
      .language-dropdown li.active {
        color: #00bfff;
        position: relative;
        padding-left: 35px;
        background-color: rgba(0, 191, 255, 0.1);
      }
      
      .language-dropdown li.active:before {
        content: "✓";
        position: absolute;
        left: 16px;
        color: #00bfff;
        font-weight: bold;
      }
      
      /* Banner with typing effect */
      .banner {
        position: relative;
        background-color: rgba(100, 100, 100, 0.15);
        color: white;
        text-align: center;
        padding: 20px;
        margin-bottom: 20px;
        overflow: hidden;
      }
      
      .typing-text {
        display: inline-block;
        white-space: nowrap;
        margin: 0;
        font-size: 24px;
        font-weight: 500;
      }
      
      .cursor {
        display: inline-block;
        width: 3px;
        height: 24px;
        background-color: white;
        margin-left: 4px;
        animation: blink 1s infinite;
        vertical-align: middle;
      }
      
      @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
      }
      
      /* Search container */
      .search-container {
        display: flex;
        justify-content: center;
        margin: 30px 20px;
      }
      
      .search-box {
        display: flex;
        width: 100%;
        max-width: 600px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      }
      
      .search-input {
        flex-grow: 1;
        padding: 15px 20px;
        border: none;
        background-color: #1e1e1e;
        color: white;
        font-size: 16px;
        border-radius: 8px 0 0 8px;
      }
      
      .search-input::placeholder {
        color: #888;
      }
      
      .search-input:focus {
        outline: none;
        background-color: #2a2a2a;
      }
      
      .search-button {
        background-color: #00bfff;
        color: white;
        border: none;
        border-radius: 0 8px 8px 0;
        padding: 0 20px;
        cursor: pointer;
        transition: background-color 0.3s;
      }
      
      .search-button:hover {
        background-color: #00a0d9;
      }
      
      /* Main container */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      /* Games grid */
      .games {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
      }
      
      .game-card {
        background-color: #1e1e1e;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        border: 1px solid transparent;
      }
      
      .game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        border-color: #00bfff;
      }
      
      .game-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s ease;
      }
      
      .game-card:hover img {
        transform: scale(1.05);
      }
      
      .game-card .info {
        padding: 20px;
      }
      
      .game-card h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #fff;
        font-weight: 600;
      }
      
      .game-card .category {
        color: #00bfff;
        font-size: 0.9rem;
        margin-bottom: 10px;
        font-weight: 500;
      }
      
      .game-card .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #00ff88;
        margin-bottom: 12px;
      }
      
      .game-card .description {
        color: #ccc;
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
      }
      
      .game-card .buttons {
        display: flex;
        gap: 10px;
      }
      
      .button {
        padding: 10px 18px;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      
      .button-primary {
        background-color: #00bfff;
        color: white;
      }
      
      .button-primary:hover {
        background-color: #00a0d9;
        transform: translateY(-2px);
      }
      
      .button-secondary {
        background-color: transparent;
        color: #00bfff;
        border: 2px solid #00bfff;
      }
      
      .button-secondary:hover {
        background-color: #00bfff;
        color: white;
      }
      
      /* Hidden state */
      .game-card.hidden {
        display: none;
      }
      
      /* No results */
      .no-results {
        text-align: center;
        padding: 60px 20px;
        color: #888;
        display: none;
      }
      
      .no-results h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #fff;
      }
      
      /* Footer */
      footer {
        background-color: #202020;
        text-align: center;
        padding: 30px 20px;
        margin-top: 60px;
        border-top: 1px solid #333;
      }
      
      footer p {
        color: #aaa;
      }
      
      /* Product Detail Page Styles */
      .detail-page {
        margin-top: 20px;
      }
      
      /* Back button */
      .back-button {
        margin-bottom: 30px;
      }
      
      .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background-color: #333;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
      }
      
      .back-btn:hover {
        background-color: #444;
        transform: translateX(-5px);
      }
      
      /* Loading and error states */
      .loading, .error-message {
        text-align: center;
        padding: 80px 20px;
      }
      
      .spinner {
        border: 4px solid #333;
        border-top: 4px solid #00bfff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        animation: spin 1s linear infinite;
        margin: 0 auto 20px;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
      
      .error-message h2 {
        color: #ff5555;
        margin-bottom: 15px;
        font-size: 2rem;
      }
      
      /* Game detail layout */
      .game-detail {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      
      .game-image {
        position: relative;
      }
      
      .game-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        transition: transform 0.3s ease;
      }
      
      .game-image:hover img {
        transform: scale(1.02);
      }
      
      .game-info h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: #fff;
        font-weight: 700;
      }
      
      .game-price {
        font-size: 2.2rem;
        font-weight: bold;
        color: #00ff88;
        margin-bottom: 20px;
      }
      
      .game-price.free {
        color: #00bfff;
      }
      
      .game-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #ddd;
        margin-bottom: 30px;
      }
      
      /* Game specs */
      .game-specs {
        background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
        padding: 25px;
        border-radius: 12px;
        margin-bottom: 30px;
        border: 1px solid #333;
      }
      
      .game-specs h3 {
        color: #00bfff;
        margin-bottom: 20px;
        font-size: 1.3rem;
        font-weight: 600;
      }
      
      .specs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }
      
      .spec-item {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #444;
      }
      
      .spec-item:last-child {
        border-bottom: none;
      }
      
      .spec-label {
        color: #aaa;
        font-weight: 500;
      }
      
      .spec-value {
        color: #fff;
        font-weight: 600;
      }
      
      /* Action buttons */
      .action-buttons {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
      }
      
      .btn {
        padding: 15px 30px;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      
      .btn-primary {
        background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
      }
      
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
      }
      
      .btn-secondary {
        background-color: transparent;
        color: #00bfff;
        border: 2px solid #00bfff;
      }
      
      .btn-secondary:hover {
        background-color: #00bfff;
        color: white;
      }
      
      .btn-wishlist {
        background-color: #333;
        color: #fff;
        border: 2px solid #555;
      }
      
      .btn-wishlist:hover {
        background-color: #555;
        border-color: #777;
      }
      
      /* Related games section */
      .related-games {
        margin-top: 60px;
      }
      
      .related-games h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        color: #fff;
        font-weight: 600;
      }
      
      .related-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
      }
      
      .related-card {
        background-color: #1e1e1e;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        text-decoration: none;
        color: inherit;
      }
      
      .related-card:hover {
        transform: translateY(-5px);
        border-color: #00bfff;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
      }
      
      .related-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
      }
      
      .related-card .card-info {
        padding: 15px;
      }
      
      .related-card h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #fff;
      }
      
      .related-card .card-price {
        color: #00ff88;
        font-weight: bold;
        font-size: 1rem;
      }
      
      /* Cart Page Styles */
      .cart-page {
        margin-top: 20px;
        min-height: 70vh;
      }
      
      .page-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        color: #fff;
        font-weight: 600;
        text-align: center;
      }
      
      /* Empty cart state */
      .empty-cart {
        text-align: center;
        padding: 80px 20px;
        background-color: #1e1e1e;
        border-radius: 12px;
        margin: 40px 0;
      }
      
      .empty-cart-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        opacity: 0.5;
      }
      
      .empty-cart h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #fff;
      }
      
      .empty-cart p {
        color: #aaa;
        margin-bottom: 30px;
        font-size: 1.1rem;
      }
      
      /* Cart table */
      .cart-table-container {
        background-color: #1e1e1e;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      }
      
      .cart-table {
        width: 100%;
        border-collapse: collapse;
      }
      
      .cart-table th {
        background-color: #2a2a2a;
        color: #00bfff;
        padding: 20px;
        text-align: left;
        font-weight: 600;
        font-size: 1rem;
        border-bottom: 2px solid #333;
      }
      
      .cart-table td {
        padding: 20px;
        border-bottom: 1px solid #333;
        vertical-align: middle;
      }
      
      .cart-table tr:last-child td {
        border-bottom: none;
      }
      
      .cart-table tr:hover {
        background-color: rgba(255,255,255,0.05);
      }
      
      /* Cart item styles */
      .cart-item {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .cart-item-image {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      }
      
      .cart-item-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #fff;
        font-weight: 600;
      }
      
      .cart-item-category {
        color: #00bfff;
        font-size: 0.9rem;
      }
      
      .cart-item-price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #00ff88;
      }
      
      .cart-item-price.free {
        color: #00bfff;
      }
      
      .remove-btn {
        background-color: #ff4757;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      
      .remove-btn:hover {
        background-color: #ff3742;
        transform: translateY(-2px);
      }
      
      /* Cart summary */
      .cart-summary {
        display: flex;
        justify-content: flex-end;
      }
      
      .summary-card {
        background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
        padding: 30px;
        border-radius: 12px;
        min-width: 350px;
        border: 1px solid #333;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      }
      
      .summary-card h3 {
        color: #00bfff;
        margin-bottom: 20px;
        font-size: 1.4rem;
        font-weight: 600;
      }
      
      .summary-row {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #444;
        color: #ddd;
      }
      
      .summary-row:last-of-type {
        border-bottom: none;
      }
      
      .total-row {
        font-size: 1.2rem;
        font-weight: bold;
        color: #fff;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid #00bfff;
      }
      
      .cart-actions {
        margin-top: 25px;
        display: flex;
        gap: 15px;
      }
      
      .cart-actions .btn {
        flex: 1;
      }
      
      /* Responsive cart */
      @media (max-width: 768px) {
        .cart-table-container {
          overflow-x: auto;
        }
        
        .cart-table {
          min-width: 600px;
        }
        
        .cart-summary {
          justify-content: center;
        }
        
        .summary-card {
          min-width: auto;
          width: 100%;
        }
        
        .cart-actions {
          flex-direction: column;
        }
        
        .cart-item {
          flex-direction: column;
          text-align: center;
          gap: 10px;
        }
        
        .cart-item-image {
          width: 80px;
          height: 80px;
        }
      }
      
      /* User Menu */
      .user-menu {
        display: flex;
        align-items: center;
        gap: 15px;
      }
      
      .user-name {
        color: #00bfff;
        font-size: 14px;
        font-weight: 600;
      }
      
      .logout-btn {
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s;
        font-weight: 500;
      }
      
      .logout-btn:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
      }
      
      /* Login & Register Page Styles */
      .login-page {
        background-color: #121212;
        background-image: 
          radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
          radial-gradient(circle at 40% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      
      .login-container {
        background-color: rgba(30, 30, 30, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        padding: 40px;
        width: 100%;
        max-width: 450px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
      
      .login-header {
        text-align: center;
        margin-bottom: 30px;
      }
      
      .logo-text {
        color: #00bfff;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 10px;
        text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
      }
      
      .login-header h2 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 8px;
        font-weight: 600;
      }
      
      .login-header p {
        color: #aaa;
        font-size: 0.95rem;
      }
      
      .login-form {
        margin-bottom: 25px;
      }
      
      .form-group {
        margin-bottom: 20px;
      }
      
      .form-group label {
        display: block;
        color: #ddd;
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 8px;
      }
      
      .form-group input[type="text"],
      .form-group input[type="email"],
      .form-group input[type="password"] {
        width: 100%;
        padding: 12px 16px;
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: white;
        font-size: 1rem;
        transition: all 0.3s ease;
      }
      
      .form-group input:focus {
        outline: none;
        border-color: #00bfff;
        box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.15);
      }
      
      .password-container {
        position: relative;
      }
      
      .eye-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #aaa;
        cursor: pointer;
        padding: 4px;
        transition: color 0.2s;
      }
      
      .eye-icon:hover {
        color: #00bfff;
      }
      
      .password-hint {
        font-size: 0.8rem;
        color: #888;
        margin-top: 5px;
      }
      
      .error-message {
        color: #ff4757;
        font-size: 0.8rem;
        margin-top: 5px;
      }
      
      .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        flex-wrap: wrap;
        gap: 10px;
      }
      
      .remember-me {
        display: flex;
        align-items: center;
        font-size: 0.9rem;
        color: #ddd;
        cursor: pointer;
      }
      
      .remember-me input[type="checkbox"] {
        display: none;
      }
      
      .checkmark {
        width: 18px;
        height: 18px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        margin-right: 8px;
        position: relative;
        transition: all 0.3s ease;
      }
      
      .remember-me input:checked + .checkmark {
        background-color: #00bfff;
        border-color: #00bfff;
      }
      
      .remember-me input:checked + .checkmark::after {
        content: '✓';
        position: absolute;
        top: -2px;
        left: 2px;
        color: white;
        font-size: 12px;
        font-weight: bold;
      }
      
      .forgot-password, .terms-link {
        color: #00bfff;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.2s;
      }
      
      .forgot-password:hover, .terms-link:hover {
        color: #00a0d9;
        text-decoration: underline;
      }
      
      .login-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
      }
      
      .spinner {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-top: 2px solid white;
        border-radius: 50%;
        animation: spin 1s linear infinite;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
      
      .divider {
        text-align: center;
        margin: 25px 0;
        position: relative;
      }
      
      .divider span {
        background-color: rgba(30, 30, 30, 0.95);
        color: #aaa;
        padding: 0 15px;
        font-size: 0.9rem;
      }
      
      .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2);
      }
      
      .register-section {
        text-align: center;
        margin-bottom: 25px;
      }
      
      .btn-secondary {
        background-color: transparent;
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: #ddd;
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        font-weight: 600;
      }
      
      .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: white;
      }
      
      .back-to-home {
        text-align: center;
      }
      
      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #aaa;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.2s;
      }
      
      .back-link:hover {
        color: #00bfff;
      }
      
      /* Responsive */
      @media (max-width: 480px) {
        .login-container {
          padding: 30px 20px;
          margin: 10px;
        }
        
        .logo-text {
          font-size: 2rem;
        }
        
        .login-header h2 {
          font-size: 1.3rem;
        }
        
        .form-options {
          flex-direction: column;
          align-items: flex-start;
        }
      }
        .page-title {
          font-size: 1.8rem;
        }
        
        .cart-table th,
        .cart-table td {
          padding: 15px 10px;
          font-size: 0.9rem;
        }
        
        .summary-card {
          padding: 20px;
        }
      }
      @media (max-width: 768px) {
        header {
          flex-direction: column;
          gap: 15px;
          align-items: stretch;
        }
        
        .header-left {
          justify-content: center;
        }
        
        .header-right {
          justify-content: center;
        }
      
        .typing-text {
          font-size: 20px;
        }
        
        .cursor {
          height: 20px;
        }
      
        .games {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      
        .game-card .buttons {
          flex-direction: column;
        }
      
        /* Product detail responsive */
        .game-detail {
          grid-template-columns: 1fr;
          gap: 30px;
        }
      
        .game-info h1 {
          font-size: 2rem;
        }
      
        .game-price {
          font-size: 1.8rem;
        }
      
        .specs-grid {
          grid-template-columns: 1fr;
        }
      
        .action-buttons {
          flex-direction: column;
        }
      
        .related-grid {
          grid-template-columns: 1fr;
        }
      }
      
      @media (max-width: 480px) {
        .header-left {
          flex-direction: column;
          gap: 10px;
        }
        
        .typing-text {
          font-size: 18px;
        }
        
        .search-container {
          margin: 20px 10px;
        }
      
        .container {
          padding: 15px;
        }
      
        .game-info h1 {
          font-size: 1.8rem;
        }
      
        .btn {
          padding: 12px 20px;
          font-size: 14px;
        }
      }
    }
    
    .header-right {
      justify-content: center;
    }
  
    .typing-text {
      font-size: 20px;
    }
    
    .cursor {
      height: 20px;
    }
  
    .games {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .game-card .buttons {
      flex-direction: column;
    }
  
    /* Product detail responsive */
    .game-detail {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .game-info h1 {
      font-size: 2rem;
    }
  
    .game-price {
      font-size: 1.8rem;
    }
  
    .specs-grid {
      grid-template-columns: 1fr;
    }
  
    .action-buttons {
      flex-direction: column;
    }
  
    .related-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .header-left {
      flex-direction: column;
      gap: 10px;
    }
    
    .typing-text {
      font-size: 18px;
    }
    
    .search-container {
      margin: 20px 10px;
    }
  
    .container {
      padding: 15px;
    }
  
    .game-info h1 {
      font-size: 1.8rem;
    }
  
    .btn {
      padding: 12px 20px;
      font-size: 14px;
    }
  }
  /* Checkout Pages Styles */
.checkout-page, .payment-page, .confirmation-page {
    margin-top: 20px;
    min-height: 70vh;
  }
  
  .checkout-container, .payment-container, .confirmation-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .checkout-section, .payment-section, .confirmation-section {
    margin-bottom: 25px;
  }
  
  .section-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .section-card h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Order Summary */
  .order-items {
    margin-bottom: 20px;
  }
  
  .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
  }
  
  .order-item:last-child {
    border-bottom: none;
  }
  
  .item-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
  }
  
  .item-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .item-details p {
    color: #aaa;
    font-size: 0.9rem;
  }
  
  .item-price {
    font-weight: bold;
    color: #00ff88;
  }
  
  .order-total {
    border-top: 2px solid #333;
    padding-top: 15px;
  }
  
  .total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #ddd;
  }
  
  .final-total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    border-top: 1px solid #444;
    padding-top: 10px;
    margin-top: 10px;
  }
  
  /* Customer Form */
  .customer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
  }
  
  .form-group {
    flex: 1;
  }
  
  .form-group label {
    display: block;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .form-group input {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
  }
  
  .form-group input:read-only {
    background-color: rgba(255, 255, 255, 0.05);
    color: #aaa;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
  }
  
  /* Payment Method */
  .payment-option {
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .payment-option.selected {
    border-color: #00bfff;
    background-color: rgba(0, 191, 255, 0.1);
  }
  
  .payment-header {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .payment-logo {
    width: 50px;
    height: 30px;
    object-fit: contain;
  }
  
  .payment-info h4 {
    color: #fff;
    margin-bottom: 5px;
  }
  
  .payment-info p {
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Payment Instructions */
  .instructions {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .instruction-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .step-number {
    background-color: #00bfff;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
  }
  
  .step-content h4 {
    color: #fff;
    margin-bottom: 5px;
  }
  
  .step-content p {
    color: #aaa;
    line-height: 1.5;
  }
  
  /* QR Code Section */
  .qr-section {
    text-align: center;
  }
  
  .qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .qr-code {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
  }
  
  .payment-details {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
  }
  
  .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #ddd;
  }
  
  .detail-row:last-child {
    margin-bottom: 0;
  }
  
  .amount {
    font-weight: bold;
    color: #00ff88;
    font-size: 1.1rem;
  }
  
  .order-id {
    font-family: monospace;
    color: #00bfff;
  }
  
  /* File Upload */
  .upload-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .upload-area {
    border: 2px dashed #444;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
  }
  
  .upload-area:hover {
    border-color: #00bfff;
    background-color: rgba(0, 191, 255, 0.05);
  }
  
  .upload-area.dragover {
    border-color: #00bfff;
    background-color: rgba(0, 191, 255, 0.1);
  }
  
  .upload-content svg {
    color: #666;
    margin-bottom: 15px;
  }
  
  .upload-content h4 {
    color: #fff;
    margin-bottom: 8px;
  }
  
  .upload-content p {
    color: #aaa;
    margin-bottom: 10px;
  }
  
  .browse-link {
    color: #00bfff;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .upload-content small {
    color: #666;
    font-size: 0.8rem;
  }
  
  .uploaded-file {
    background-color: rgba(0, 191, 255, 0.1);
    border: 1px solid #00bfff;
    border-radius: 8px;
    padding: 15px;
  }
  
  .file-info {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .file-info svg {
    color: #00bfff;
  }
  
  .file-details {
    flex: 1;
  }
  
  .file-name {
    display: block;
    color: #fff;
    font-weight: 600;
  }
  
  .file-size {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  .remove-file {
    background-color: #ff4757;
    color: white;
    /* General styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
  }
  
  /* Header styles */
  header {
    background-color: #202020;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-left h1 {
    font-size: 24px;
    white-space: nowrap;
    color: #00bfff;
    font-weight: bold;
  }
  
  .header-category-filter select {
    padding: 8px 12px;
    border-radius: 4px;
    border: none;
    background-color: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .header-category-filter select:hover {
    background-color: rgba(255,255,255,0.2);
  }
  
  .header-category-filter select option {
    background-color: #333;
    color: white;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  /* Language selector */
  .language-selector {
    position: relative;
    z-index: 1000;
  }
  
  .globe-icon {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
  }
  
  .globe-icon:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .globe-icon svg {
    color: white;
    width: 20px;
    height: 20px;
  }
  
  .language-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    width: 180px;
    background-color: #333;
    border: 1px solid #555;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    z-index: 1001;
    
    /* Default hidden state */
    display: none;
  }
  
  .language-dropdown.active {
    display: block;
  }
  
  .language-dropdown ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
  }
  
  .language-dropdown li {
    padding: 12px 16px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background-color 0.2s;
    user-select: none;
  }
  
  .language-dropdown li:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  .language-dropdown li.active {
    color: #00bfff;
    position: relative;
    padding-left: 35px;
    background-color: rgba(0, 191, 255, 0.1);
  }
  
  .language-dropdown li.active:before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: #00bfff;
    font-weight: bold;
  }
  
  /* Banner with typing effect */
  .banner {
    position: relative;
    background-color: rgba(100, 100, 100, 0.15);
    color: white;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
    overflow: hidden;
  }
  
  .typing-text {
    display: inline-block;
    white-space: nowrap;
    margin: 0;
    font-size: 24px;
    font-weight: 500;
  }
  
  .cursor {
    display: inline-block;
    width: 3px;
    height: 24px;
    background-color: white;
    margin-left: 4px;
    animation: blink 1s infinite;
    vertical-align: middle;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Search container */
  .search-container {
    display: flex;
    justify-content: center;
    margin: 30px 20px;
  }
  
  .search-box {
    display: flex;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .search-input {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    background-color: #1e1e1e;
    color: white;
    font-size: 16px;
    border-radius: 8px 0 0 8px;
  }
  
  .search-input::placeholder {
    color: #888;
  }
  
  .search-input:focus {
    outline: none;
    background-color: #2a2a2a;
  }
  
  .search-button {
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .search-button:hover {
    background-color: #00a0d9;
  }
  
  /* Main container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Games grid */
  .games {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
  }
  
  .game-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid transparent;
  }
  
  .game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #00bfff;
  }
  
  .game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .game-card:hover img {
    transform: scale(1.05);
  }
  
  .game-card .info {
    padding: 20px;
  }
  
  .game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
  }
  
  .game-card .category {
    color: #00bfff;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .game-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 12px;
  }
  
  .game-card .description {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .game-card .buttons {
    display: flex;
    gap: 10px;
  }
  
  .button {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .button-primary {
    background-color: #00bfff;
    color: white;
  }
  
  .button-primary:hover {
    background-color: #00a0d9;
    transform: translateY(-2px);
  }
  
  .button-secondary {
    background-color: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
  }
  
  .button-secondary:hover {
    background-color: #00bfff;
    color: white;
  }
  
  /* Hidden state */
  .game-card.hidden {
    display: none;
  }
  
  /* No results */
  .no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    display: none;
  }
  
  .no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  /* Footer */
  footer {
    background-color: #202020;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid #333;
  }
  
  footer p {
    color: #aaa;
  }
  
  /* Product Detail Page Styles */
  .detail-page {
    margin-top: 20px;
  }
  
  /* Back button */
  .back-button {
    margin-bottom: 30px;
  }
  
  .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .back-btn:hover {
    background-color: #444;
    transform: translateX(-5px);
  }
  
  /* Loading and error states */
  .loading, .error-message {
    text-align: center;
    padding: 80px 20px;
  }
  
  .spinner {
    border: 4px solid #333;
    border-top: 4px solid #00bfff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .error-message h2 {
    color: #ff5555;
    margin-bottom: 15px;
    font-size: 2rem;
  }
  
  /* Game detail layout */
  .game-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .game-image {
    position: relative;
  }
  
  .game-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  
  .game-image:hover img {
    transform: scale(1.02);
  }
  
  .game-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
  }
  
  .game-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
  }
  
  .game-price.free {
    color: #00bfff;
  }
  
  .game-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 30px;
  }
  
  /* Game specs */
  .game-specs {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #333;
  }
  
  .game-specs h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #444;
  }
  
  .spec-item:last-child {
    border-bottom: none;
  }
  
  .spec-label {
    color: #aaa;
    font-weight: 500;
  }
  
  .spec-value {
    color: #fff;
    font-weight: 600;
  }
  
  /* Action buttons */
  .action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
  }
  
  .btn-secondary:hover {
    background-color: #00bfff;
    color: white;
  }
  
  .btn-wishlist {
    background-color: #333;
    color: #fff;
    border: 2px solid #555;
  }
  
  .btn-wishlist:hover {
    background-color: #555;
    border-color: #777;
  }
  
  /* Related games section */
  .related-games {
    margin-top: 60px;
  }
  
  .related-games h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 600;
  }
  
  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .related-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
  }
  
  .related-card:hover {
    transform: translateY(-5px);
    border-color: #00bfff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }
  
  .related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .related-card .card-info {
    padding: 15px;
  }
  
  .related-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .related-card .card-price {
    color: #00ff88;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Cart Page Styles */
  .cart-page {
    margin-top: 20px;
    min-height: 70vh;
  }
  
  .page-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }
  
  /* Empty cart state */
  .empty-cart {
    text-align: center;
    padding: 80px 20px;
    background-color: #1e1e1e;
    border-radius: 12px;
    margin: 40px 0;
  }
  
  .empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
  }
  
  .empty-cart h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .empty-cart p {
    color: #aaa;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }
  
  /* Cart table */
  .cart-table-container {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .cart-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .cart-table th {
    background-color: #2a2a2a;
    color: #00bfff;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #333;
  }
  
  .cart-table td {
    padding: 20px;
    border-bottom: 1px solid #333;
    vertical-align: middle;
  }
  
  .cart-table tr:last-child td {
    border-bottom: none;
  }
  
  .cart-table tr:hover {
    background-color: rgba(255,255,255,0.05);
  }
  
  /* Cart item styles */
  .cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  
  .cart-item-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 600;
  }
  
  .cart-item-category {
    color: #00bfff;
    font-size: 0.9rem;
  }
  
  .cart-item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #00ff88;
  }
  
  .cart-item-price.free {
    color: #00bfff;
  }
  
  .remove-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .remove-btn:hover {
    background-color: #ff3742;
    transform: translateY(-2px);
  }
  
  /* Cart summary */
  .cart-summary {
    display: flex;
    justify-content: flex-end;
  }
  
  .summary-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 30px;
    border-radius: 12px;
    min-width: 350px;
    border: 1px solid #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .summary-card h3 {
    color: #00bfff;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #444;
    color: #ddd;
  }
  
  .summary-row:last-of-type {
    border-bottom: none;
  }
  
  .total-row {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #00bfff;
  }
  
  .cart-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
  }
  
  .cart-actions .btn {
    flex: 1;
  }
  
  /* Responsive cart */
  @media (max-width: 768px) {
    .cart-table-container {
      overflow-x: auto;
    }
    
    .cart-table {
      min-width: 600px;
    }
    
    .cart-summary {
      justify-content: center;
    }
    
    .summary-card {
      min-width: auto;
      width: 100%;
    }
    
    .cart-actions {
      flex-direction: column;
    }
    
    .cart-item {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }
    
    .cart-item-image {
      width: 80px;
      height: 80px;
    }
  }
  
  /* User Menu */
  .user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .user-name {
    color: #00bfff;
    font-size: 14px;
    font-weight: 600;
  }
  
  .logout-btn {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
  }
  
  .logout-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  /* Login & Register Page Styles */
  .login-page {
    background-color: #121212;
    background-image: 
      radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .login-container {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .login-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .logo-text {
    color: #00bfff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.3);
  }
  
  .login-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  .login-header p {
    color: #aaa;
    font-size: 0.95rem;
  }
  
  .login-form {
    margin-bottom: 25px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    color: #ddd;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
  }
  
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.15);
  }
  
  .password-container {
    position: relative;
  }
  
  .eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
  }
  
  .eye-icon:hover {
    color: #00bfff;
  }
  
  .password-hint {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
  }
  
  .error-message {
    color: #ff4757;
    font-size: 0.8rem;
    margin-top: 5px;
  }
  
  .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ddd;
    cursor: pointer;
  }
  
  .remember-me input[type="checkbox"] {
    display: none;
  }
  
  .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .remember-me input:checked + .checkmark {
    background-color: #00bfff;
    border-color: #00bfff;
  }
  
  .remember-me input:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  
  .forgot-password, .terms-link {
    color: #00bfff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .forgot-password:hover, .terms-link:hover {
    color: #00a0d9;
    text-decoration: underline;
  }
  
  .login-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
  }
  
  .spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
  }
  
  .divider span {
    background-color: rgba(30, 30, 30, 0.95);
    color: #aaa;
    padding: 0 15px;
    font-size: 0.9rem;
  }
  
  .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .register-section {
    text-align: center;
    margin-bottom: 25px;
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ddd;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
  }
  
  .back-to-home {
    text-align: center;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .back-link:hover {
    color: #00bfff;
  }
  
  /* Responsive */
  @media (max-width: 480px) {
    .login-container {
      padding: 30px 20px;
      margin: 10px;
    }
    
    .logo-text {
      font-size: 2rem;
    }
    
    .login-header h2 {
      font-size: 1.3rem;
    }
    
    .form-options {
      flex-direction: column;
      align-items: flex-start;
    }
  }
    .page-title {
      font-size: 1.8rem;
    }
    
    .cart-table th,
    .cart-table td {
      padding: 15px 10px;
      font-size: 0.9rem;
    }
    
    .summary-card {
      padding: 20px;
    }
  }
  @media (max-width: 768px) {
    header {
      flex-direction: column;
      gap: 15px;
      align-items: stretch;
    }
    
    .header-left {
      justify-content: center;
    }
    
    .header-right {
      justify-content: center;
    }
  
    .typing-text {
      font-size: 20px;
    }
    
    .cursor {
      height: 20px;
    }
  
    .games {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .game-card .buttons {
      flex-direction: column;
    }
  
    /* Product detail responsive */
    .game-detail {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  
    .game-info h1 {
      font-size: 2rem;
    }
  
    .game-price {
      font-size: 1.8rem;
    }
  
    .specs-grid {
      grid-template-columns: 1fr;
    }
  
    .action-buttons {
      flex-direction: column;
    }
  
    .related-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .header-left {
      flex-direction: column;
      gap: 10px;
    }
    
    .typing-text {
      font-size: 18px;
    }
    
    .search-container {
      margin: 20px 10px;
    }
  
    .container {
      padding: 15px;
    }
  
    .game-info h1 {
      font-size: 1.8rem;
    }
  
    .btn {
      padding: 12px 20px;
      font-size: 14px;
    }
  }

  /* Order History Page Styles */
.history-page {
  margin-top: 20px;
  min-height: 70vh;
}

/* Empty history state */
.empty-history {
  text-align: center;
  padding: 80px 20px;
  background-color: #1e1e1e;
  border-radius: 12px;
  margin: 40px 0;
}

.empty-history-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-history h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.empty-history p {
  color: #aaa;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* History filters */
.history-filters {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
}

.filter-group label {
  color: #00bfff;
  font-size: 0.9rem;
  font-weight: 600;
}

.filter-group select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #00bfff;
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.2);
}

.filter-group select option {
  background-color: #333;
  color: white;
}

/* Orders container */
.orders-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.order-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  border-color: #00bfff;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.order-info h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.order-date {
  color: #aaa;
  font-size: 0.9rem;
}

.order-status {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: flex-end;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.pending {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid #ffc107;
}

.status-badge.verified {
  background-color: rgba(0, 191, 255, 0.2);
  color: #00bfff;
  border: 1px solid #00bfff;
}

.status-badge.completed {
  background-color: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  border: 1px solid #00ff88;
}

.status-badge.cancelled {
  background-color: rgba(255, 71, 87, 0.2);
  color: #ff4757;
  border: 1px solid #ff4757;
}

.order-total {
  color: #00ff88;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.order-items-preview {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  overflow-x: auto;
  padding: 5px 0;
}

.item-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 8px;
  min-width: 200px;
  flex-shrink: 0;
}

.item-preview-image {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.item-preview-info h5 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.item-preview-price {
  color: #00ff88;
  font-size: 0.8rem;
  font-weight: 600;
}

.more-items {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: rgba(0, 191, 255, 0.1);
  border-radius: 8px;
  color: #00bfff;
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 120px;
  flex-shrink: 0;
}

.order-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Order Detail Page Styles */
.order-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.detail-section {
  margin-bottom: 25px;
}

.order-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #333;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .label {
  color: #aaa;
  font-weight: 500;
  min-width: 120px;
}

.info-row .value {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.customer-info .info-row {
  grid-column: 1 / -1;
}

/* Detail order items */
.detail-order-items {
  margin-bottom: 20px;
}

.detail-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #333;
}

.detail-order-item:last-child {
  border-bottom: none;
}

.detail-item-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.detail-item-details h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.detail-item-details p {
  color: #aaa;
  font-size: 0.9rem;
}

.detail-item-price {
  font-weight: bold;
  color: #00ff88;
  font-size: 1.1rem;
}

.order-total-detail {
  border-top: 2px solid #333;
  padding-top: 15px;
  margin-top: 20px;
}

/* Order Timeline */
.order-timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 12px;
  top: 30px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: #333;
}

.timeline-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
}

.timeline-icon.completed {
  background-color: #00ff88;
  color: white;
}

.timeline-icon.current {
  background-color: #00bfff;
  color: white;
}

.timeline-icon.pending {
  background-color: #333;
  color: #666;
  border: 2px solid #444;
}

.timeline-content h4 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 1rem;
}

.timeline-content p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.4;
}

.timeline-time {
  color: #666;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* Payment proof section */
.payment-proof-container {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.proof-info .info-row {
  border-bottom: 1px solid #444;
}

/* Detail actions */
.detail-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.detail-actions .btn {
  min-width: 150px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .history-filters {
    padding: 15px;
    gap: 20px;
  }
  
  .filter-group {
    min-width: 100%;
  }
  
  .order-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .order-status {
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
  }
  
  .order-items-preview {
    overflow-x: scroll;
  }
  
  .order-actions {
    justify-content: flex-start;
  }
  
  .order-info-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }
  
  .detail-item-info {
    width: 100%;
  }
  
  .detail-actions {
    flex-direction: column;
  }
  
  .detail-actions .btn {
    width: 100%;
  }
  
  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .info-row .value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.8rem;
  }
  
  .order-card {
    padding: 20px;
  }
  
  .item-preview {
    min-width: 180px;
  }
  
  .timeline-item {
    gap: 10px;
  }
  
  .timeline-item:not(:last-child)::after {
    left: 10px;
  }
}
/* Order Confirmation Page Styles */
.confirmation-page {
  margin-top: 20px;
  min-height: 80vh;
  padding: 20px 0;
}

.confirmation-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Success Animation */
.success-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  height: 150px;
}

.success-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: successPop 0.6s ease-out;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
}

.success-icon {
  color: white;
  animation: checkmarkDraw 0.8s ease-out 0.3s both;
}

.success-pulse {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
  opacity: 0.6;
}

@keyframes successPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkmarkDraw {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Confirmation Header */
.confirmation-header {
  text-align: center;
  margin-bottom: 50px;
  animation: slideUp 0.8s ease-out 0.4s both;
}

.success-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 255, 136, 0.3);
}

.success-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.celebration-text {
  display: inline-block;
  background: linear-gradient(135deg, #00bfff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.1rem;
  font-weight: 600;
  animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(180deg); }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Cards */
.confirmation-section {
  margin-bottom: 30px;
  animation: fadeInUp 0.6s ease-out both;
}

.confirmation-section:nth-child(3) { animation-delay: 0.6s; }
.confirmation-section:nth-child(4) { animation-delay: 0.8s; }
.confirmation-section:nth-child(5) { animation-delay: 1s; }
.confirmation-section:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Order Summary Card */
.order-summary-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.order-summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00bfff 0%, #00ff88 100%);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.card-header h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 193, 7, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ffc107;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: blink 2s infinite;
}

.status-dot.pending {
  background-color: #ffc107;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.status-text {
  color: #ffc107;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Order Details Grid */
.order-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: #00bfff;
}

.detail-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
  border-radius: 10px;
  flex-shrink: 0;
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  color: #aaa;
  font-size: 0.9rem;
  font-weight: 500;
}

.detail-value {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
}

.detail-value.amount {
  color: #00ff88;
  font-size: 1.2rem;
}

/* Timeline Card */
.timeline-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.progress-indicator {
  background: linear-gradient(135deg, #00bfff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-container {
  margin-top: 25px;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: calc(100% + 10px);
  background: linear-gradient(to bottom, #333 0%, transparent 100%);
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-step.completed .timeline-dot {
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.timeline-step.current .timeline-dot {
  background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.timeline-step.upcoming .timeline-dot {
  background: #333;
  color: #666;
  border: 2px solid #444;
}

.pulse-ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #00bfff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.timeline-content h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-content p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.timeline-time {
  color: #00bfff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Items Card */
.items-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.items-count {
  color: #00bfff;
  font-size: 0.9rem;
  font-weight: 600;
}

.ordered-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.ordered-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.ordered-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: #00bfff;
}

.ordered-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ordered-item-info {
  flex: 1;
}

.ordered-item-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.ordered-item-category {
  color: #00bfff;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.ordered-item-price {
  color: #00ff88;
  font-size: 1rem;
  font-weight: 700;
}

.ordered-item-price.free {
  color: #00bfff;
}

/* Info Cards Grid */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.info-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transition: all 0.3s ease;
}

.info-card.support::before {
  background: linear-gradient(90deg, #ff6b6b 0%, #ff8e8e 100%);
}

.info-card.email::before {
  background: linear-gradient(90deg, #4ecdc4 0%, #44a08d 100%);
}

.info-card.download::before {
  background: linear-gradient(90deg, #45b7d1 0%, #96c93d 100%);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.info-card:hover::before {
  height: 5px;
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.info-card h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.info-link {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #00ff88;
}

/* Action Buttons */
.confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
  flex-wrap: wrap;
}

.confirmation-actions .btn {
  min-width: 180px;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.confirmation-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #333 0%, #444 100%);
  color: #fff;
  border: 2px solid #555;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #444 0%, #555 100%);
  border-color: #666;
}

.btn-primary {
  background: linear-gradient(135deg, #00bfff 0%, #0099cc 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0099cc 0%, #007aa3 100%);
  box-shadow: 0 8px 30px rgba(0, 191, 255, 0.4);
}

/* Floating Help Button */
.floating-help {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.help-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
}

.help-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.help-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #333;
}

.help-button:hover .help-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .confirmation-container {
    padding: 0 10px;
  }
  
  .success-title {
    font-size: 2rem;
  }
  
  .success-subtitle {
    font-size: 1.1rem;
  }
  
  .order-details-grid {
    grid-template-columns: 1fr;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .timeline-step {
    gap: 15px;
  }
  
  .timeline-dot {
    width: 35px;
    height: 35px;
  }
  
  .timeline-step:not(:last-child)::after {
    left: 17px;
  }
  
  .ordered-items-grid {
    grid-template-columns: 1fr;
  }
  
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .confirmation-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .confirmation-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .floating-help {
    bottom: 20px;
    right: 20px;
  }
  
  .help-button {
    width: 50px;
    height: 50px;
  }
  
  .help-tooltip {
    display: none;
  }
}

@media (max-width: 480px) {
  .success-animation {
    height: 120px;
  }
  
  .success-circle {
    width: 100px;
    height: 100px;
  }
  
  .success-pulse {
    width: 100px;
    height: 100px;
  }
  
  .success-title {
    font-size: 1.8rem;
  }
  
  .order-summary-card,
  .timeline-card,
  .items-card,
  .info-card {
    padding: 20px;
  }
  
  .detail-item {
    padding: 15px;
  }
  
  .detail-icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }
  
  .timeline-content h4 {
    font-size: 1rem;
  }
  
  .ordered-item {
    padding: 15px;
  }
  
  .ordered-item-image {
    width: 50px;
    height: 50px;
  }
}
