
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f5f5f5;
  color: #333;
}
button {
  font-family: inherit;
}

.game-card[data-v-2de0df98] {
  width: 100%;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}
.card-inner[data-v-2de0df98] {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.card-inner.is-flipped[data-v-2de0df98] {
  transform: rotateY(180deg);
}
.card-face[data-v-2de0df98] {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.front[data-v-2de0df98] {
  background: #fff;
}
.front img[data-v-2de0df98] {
  width: 100%;
  height: 65%;
  object-fit: cover;
}
.front h3[data-v-2de0df98] {
  margin: 15px 10px;
  color: #333;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.back[data-v-2de0df98] {
  background: #E6E6FA;
  transform: rotateY(180deg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.description[data-v-2de0df98] {
  color: #666;
  font-size: 13px;
  line-height: 1.4;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 15px;
  text-align: left;
}
.description[data-v-2de0df98]::-webkit-scrollbar {
  width: 4px;
}
.description[data-v-2de0df98]::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.description[data-v-2de0df98]::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.description[data-v-2de0df98]::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}
.buttons[data-v-2de0df98] {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}
.btn[data-v-2de0df98] {
  padding: 6px 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: 14px;
}
.btn.detail[data-v-2de0df98] {
  background: #1E90FF;
  color: white;
}
.btn.play[data-v-2de0df98] {
  background: #9370DB;
  color: white;
}
.btn[data-v-2de0df98]:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.disclaimer-modal[data-v-0042659d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
}
.modal-content[data-v-0042659d] {
  background: white;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
h2[data-v-0042659d] {
  padding: 20px;
  margin: 0;
  text-align: center;
  color: #1a1a2e;
  background: #f5f5f5;
  border-bottom: 1px solid #eee;
}
.disclaimer-content[data-v-0042659d] {
  padding: 20px;
  overflow-y: auto;
  line-height: 1.6;
}
h3[data-v-0042659d] {
  color: #1E90FF;
  margin-top: 20px;
  margin-bottom: 10px;
}
p[data-v-0042659d] {
  margin-bottom: 15px;
  color: #333;
}
ul[data-v-0042659d] {
  margin-bottom: 15px;
  padding-left: 25px;
}
li[data-v-0042659d] {
  margin-bottom: 8px;
  color: #333;
}
a[data-v-0042659d] {
  color: #1E90FF;
  text-decoration: none;
}
a[data-v-0042659d]:hover {
  text-decoration: underline;
}
.modal-footer[data-v-0042659d] {
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eee;
  background: #f5f5f5;
}
button[data-v-0042659d] {
  padding: 10px 20px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button[data-v-0042659d]:hover {
  background: #1873CC;
  transform: translateY(-2px);
}

.navbar[data-v-03bd7909] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.nav-left .logo h1[data-v-03bd7909] {
  color: #fff;
  font-size: 24px;
  margin: 0;
  background: linear-gradient(45deg, #00b4db, #0083b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.nav-center[data-v-03bd7909] {
  flex: 1;
  max-width: 500px;
  margin: 0 20px;
}
.search-box[data-v-03bd7909] {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  padding: 5px 15px;
  transition: all 0.3s ease;
}
.search-box[data-v-03bd7909]:focus-within {
  background: rgba(255,255,255,0.2);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.search-box input[data-v-03bd7909] {
  flex: 1;
  background: none;
  border: none;
  color: white;
  padding: 8px;
  outline: none;
}
.search-box button[data-v-03bd7909] {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
}
.nav-right[data-v-03bd7909] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.notification[data-v-03bd7909] {
  position: relative;
  color: white;
  cursor: pointer;
}
.badge[data-v-03bd7909] {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4444;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}
.login-btn[data-v-03bd7909], .config-btn[data-v-03bd7909], .logout-btn[data-v-03bd7909], .disclaimer-btn[data-v-03bd7909] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}
.login-btn[data-v-03bd7909] {
  background: #1E90FF;
}
.config-btn[data-v-03bd7909] {
  background: #9370DB;
}
.disclaimer-btn[data-v-03bd7909] {
  background: #20B2AA;
}
.logout-btn[data-v-03bd7909] {
  background: #ff4444;
}
.login-btn[data-v-03bd7909]:hover, .config-btn[data-v-03bd7909]:hover, .logout-btn[data-v-03bd7909]:hover, .disclaimer-btn[data-v-03bd7909]:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.home[data-v-3e046b8b] {
  min-height: 100vh;
  background: #f5f5f5;
}
.main-container[data-v-3e046b8b] {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  min-height: calc(100vh - 60px);
  padding: 20px;
  gap: 20px;
}
.sidebar[data-v-3e046b8b] {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo h1[data-v-3e046b8b] {
  color: #1E90FF;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}
.category-list[data-v-3e046b8b] {
  list-style: none;
  padding: 0;
}
.category-list li[data-v-3e046b8b] {
  padding: 12px;
  margin: 4px 0;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.category-list li[data-v-3e046b8b]:hover {
  background: #E6E6FA;
}
.category-list li.active[data-v-3e046b8b] {
  background: #1E90FF;
  color: white;
}
.main-content[data-v-3e046b8b] {
  padding: 20px;
}
.featured-slider[data-v-3e046b8b] {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.featured-game[data-v-3e046b8b] {
  position: relative;
  height: 300px;
}
.featured-game img[data-v-3e046b8b] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-info[data-v-3e046b8b] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
}
.game-grid[data-v-3e046b8b] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}
.info-sidebar[data-v-3e046b8b] {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}
.tabs[data-v-3e046b8b] {
  display: flex;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}
.tabs button[data-v-3e046b8b] {
  flex: 1;
  padding: 12px;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: bold;
  color: #666;
  transition: all 0.3s ease;
}
.tabs button[data-v-3e046b8b]:hover {
  color: #1E90FF;
}
.tabs button.active[data-v-3e046b8b] {
  color: #1E90FF;
  border-bottom: 2px solid #1E90FF;
}
.tab-content[data-v-3e046b8b] {
  padding: 20px;
}
.ranking-section[data-v-3e046b8b] {
  margin-top: 10px;
}
.ranking-list[data-v-3e046b8b] {
  list-style: none;
  padding: 0;
}
.ranking-list li[data-v-3e046b8b] {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.rank[data-v-3e046b8b] {
  width: 24px;
  height: 24px;
  background: #1E90FF;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.title[data-v-3e046b8b] {
  color: #666;
}

.detail-page[data-v-91bea45d] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header[data-v-91bea45d] {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.back-btn[data-v-91bea45d] {
  padding: 8px 16px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 20px;
}
.content[data-v-91bea45d] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.game-showcase[data-v-91bea45d] {
  grid-column: 1 / -1;
}
.main-image[data-v-91bea45d] {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.main-image img[data-v-91bea45d] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumbnail-list[data-v-91bea45d] {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}
.thumbnail-list img[data-v-91bea45d] {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.thumbnail-list img[data-v-91bea45d]:hover {
  transform: scale(1.05);
}
.info-section[data-v-91bea45d] {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.action-buttons[data-v-91bea45d] {
  text-align: center;
  margin-top: 30px;
}
.play-btn[data-v-91bea45d] {
  padding: 12px 30px;
  background: #9370DB;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.play-btn[data-v-91bea45d]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.comments-section[data-v-91bea45d] {
  grid-column: 1 / -1;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.rating[data-v-91bea45d] {
  margin: 20px 0;
}
.star-filled[data-v-91bea45d] {
  color: #FFD700;
}
.comment-form[data-v-91bea45d] {
  margin: 20px 0;
}
.comment-form textarea[data-v-91bea45d] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
  resize: vertical;
}
.comment-form button[data-v-91bea45d] {
  padding: 8px 16px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.comments-list[data-v-91bea45d] {
  margin-top: 20px;
}
.comment[data-v-91bea45d] {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.comment-header[data-v-91bea45d] {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #666;
}
.comment-content[data-v-91bea45d] {
  color: #333;
  line-height: 1.5;
}

.game-frame[data-v-a03e0720] {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #1a1a1a;
  color: white;
}
.toolbar[data-v-a03e0720] {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #2a2a2a;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toolbar h2[data-v-a03e0720] {
  flex: 1;
  margin: 0;
  text-align: center;
}
.back-btn[data-v-a03e0720], .fullscreen-btn[data-v-a03e0720] {
  padding: 8px 16px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.back-btn[data-v-a03e0720]:hover, .fullscreen-btn[data-v-a03e0720]:hover {
  background: #1873CC;
}
.game-container[data-v-a03e0720] {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.game-container iframe[data-v-a03e0720] {
  width: 100%;
  height: 100%;
  border: none;
}
.game-placeholder[data-v-a03e0720] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #666;
}
.info-bar[data-v-a03e0720] {
  padding: 15px 20px;
  background: #2a2a2a;
  border-top: 1px solid #3a3a3a;
}
.controls[data-v-a03e0720] {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.controls button[data-v-a03e0720] {
  padding: 8px 16px;
  background: #9370DB;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.controls button[data-v-a03e0720]:hover {
  background: #7B68EE;
}
.instructions[data-v-a03e0720] {
  background: #333;
  padding: 15px;
  border-radius: 4px;
  margin-top: 10px;
}
.instructions h3[data-v-a03e0720] {
  margin: 0 0 10px 0;
  color: #1E90FF;
}
.instructions p[data-v-a03e0720] {
  margin: 0;
  line-height: 1.5;
  color: #ccc;
}

.login-container[data-v-87e8d2d9] {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.login-box[data-v-87e8d2d9] {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 400px;
}
h2[data-v-87e8d2d9] {
  text-align: center;
  color: #1a1a2e;
  margin-bottom: 30px;
}
.form-group[data-v-87e8d2d9] {
  margin-bottom: 20px;
}
input[data-v-87e8d2d9] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s ease;
}
input[data-v-87e8d2d9]:focus {
  outline: none;
  border-color: #1E90FF;
  box-shadow: 0 0 0 2px rgba(30,144,255,0.2);
}
.error-message[data-v-87e8d2d9] {
  color: #ff4444;
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}
.login-btn[data-v-87e8d2d9] {
  width: 100%;
  padding: 12px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-btn[data-v-87e8d2d9]:hover {
  background: #1873CC;
  transform: translateY(-2px);
}

.config-container[data-v-899330f9] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header[data-v-899330f9] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.games-list[data-v-899330f9] {
  display: grid;
  gap: 20px;
}
.game-item[data-v-899330f9] {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.game-header[data-v-899330f9] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.game-content[data-v-899330f9] {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
}
.preview[data-v-899330f9] {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.preview img[data-v-899330f9] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info[data-v-899330f9] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.instructions[data-v-899330f9] {
  margin-top: 10px;
}
.screenshot-list[data-v-899330f9] {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}
.screenshot-list img[data-v-899330f9] {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}
.actions[data-v-899330f9] {
  display: flex;
  gap: 10px;
}
.edit-btn[data-v-899330f9], .delete-btn[data-v-899330f9] {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.edit-btn[data-v-899330f9] {
  background: #1E90FF;
  color: white;
}
.delete-btn[data-v-899330f9] {
  background: #ff4444;
  color: white;
}
.add-btn[data-v-899330f9] {
  margin-top: 20px;
  padding: 12px 24px;
  background: #9370DB;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal[data-v-899330f9] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 20px;
}
.modal-content[data-v-899330f9] {
  background: white;
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.form-group[data-v-899330f9] {
  margin-bottom: 20px;
}
.form-group label[data-v-899330f9] {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}
.form-group input[data-v-899330f9],
.form-group textarea[data-v-899330f9] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.form-group textarea[data-v-899330f9] {
  min-height: 100px;
  resize: vertical;
}
.screenshot-inputs[data-v-899330f9] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.screenshot-input[data-v-899330f9] {
  display: flex;
  gap: 10px;
}
.screenshot-input input[data-v-899330f9] {
  flex: 1;
}
.remove-btn[data-v-899330f9] {
  padding: 4px 8px;
  background: #ff4444;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.add-screenshot-btn[data-v-899330f9] {
  padding: 8px;
  background: #1E90FF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}
.form-actions[data-v-899330f9] {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}
.form-actions button[data-v-899330f9] {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.form-actions button[type="submit"][data-v-899330f9] {
  background: #1E90FF;
  color: white;
}
.form-actions button[type="button"][data-v-899330f9] {
  background: #ddd;
}
