/* 公共样式 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #16170d;
  color: #e0e0e0;
}

.main {
  flex: 3;
  margin-right: 20px;
}

.sidebar {
  flex: 1;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #fff;
}

.sidebar ul li a:hover {
  text-decoration: underline;
}

footer {
  background: #1f1f1f;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  margin-top: 20px;
}

/* 首页样式 */
.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.article {
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: #1f1f1f;
}

.article img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.article-content {
  padding: 10px 10px 5px 10px;
}

.article-title {
  font-size: 12px;
  margin: 0 0 10px;
  color: #fff;
}

.article-description {
  font-size: 14px;
  color: #aaa;
  margin: 0 0 10px;
  height: 150px;
}

.article-link {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.article-link:hover {
  text-decoration: underline;
}

.article-body img {
  width: 100%;
}

.article-title-detail {
  font-size: 18px;
}

.comments h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.comments textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.comments button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

.comments button:hover {
  background: #0056b3;
}

/* 面包屑导航 */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #aaa;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: #fff;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0 10px;
  }
  .main {
    margin-right: 0;
  }
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bannersport {
  width: 100%;
  height: 240px;
  position: relative;
  user-select: none;
  backdrop-filter: blur(20px);
  overflow: hidden;
  background-color: #332f30;
  margin: 0 auto;
  max-width: 1280px;
  background-image: url(/static/b17/images/banner-bg.png);
  background-size: cover;
}

.bannersport img {
  position: absolute;
  top: 0;
  left: 65%;
  width: auto;
  height: 90%;
  transform: scale(1.25);
  transform-origin: top left;
}

.bannersport .banner-word {
  position: absolute;
  color: #fff;
  top: 5%;
  left: 4%;
  width: 90%;
}

.banner-word h1 {
  font-size: 33px;
  font-weight: 100;
  letter-spacing: 15px;
  font-family: "douyuFont";
  text-shadow: 5px 5px 3px #333;
  animation: bobbing 1s infinite ease-in-out;
  color: #fff;
}

.banner-word h2 {
  margin-top: 5px;
  letter-spacing: 8px;
  color: #fff;
}

@media screen and (max-width: 900px) {
  .info-content {
    flex-direction: column;
    padding-right: 5px;
  }

  .info-content .news {
    max-height: unset;
    margin: 20px 5%;
    padding: 2%;
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  .v57_index_content {
    display: block;
  }

  .bannersport .banner-word {
    top: 20%;
    left: 4.5%;
    font-size: 26px;
    width: 56%;
  }

  .bannersport img {
    left: 36%;
  }

  .banner-word h1 {
    font-size: 16px;
    letter-spacing: 10px;
    line-height: 1.5em;
    color: #fff;
  }

  .banner-word h2 {
    font-size: 12px;
    line-height: 1.5em;
    letter-spacing: 3px;
    color: #fff;
  }

  .hot-info-content {
    display: block;
  }

  .hot-info .hot-info-img {
    display: none;
  }
}

.pagination-wrap {
  padding: 20px 10px;
  margin-top: 20px;
  background: #fff;
  border-radius: 8px;
}
.pagination-wrap .paging-cls {
  text-align: center;
}
.pagination-wrap .paging-cls li {
  display: inline-block;
  margin: 0 5px;
  list-style: none;
}
.pagination-wrap .paging-cls span,
.pagination-wrap .paging-cls a {
  display: inline-block;
  border: 1px solid #eef3f8;
  border-radius: 5px;
  height: 44px;
  line-height: 44px;
  width: 44px;
  margin: 0 3px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}
.pagination-wrap .paging-cls span:hover,
.pagination-wrap .paging-cls a:hover {
  background: #0271db;
  color: #fff !important;
}
.pagination-wrap .paging-cls .current {
  background: #0271db;
  color: #fff;
  font-weight: bold;
}
.pagination-wrap .paging-cls .fa-angle-double-left::before {
  content: "<";
}
.pagination-wrap .paging-cls .fa-angle-double-right::before {
  content: ">";
}

.banner-content {
  position: relative;
  margin: 10px 0;
}

.banner-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3%;
  color: #fff;
  text-align: left;
}

.banner-text h1 {
  margin: 1px 0;
  font-size: 40px;
}

.banner-text h2 {
  margin: 1px 0;
  letter-spacing: 7px;
  color: #fff;
  font-size: 30px;
}

.banner-text .join-link {
  display: inline-block;
  padding: 5px 10px;
  background: #01a81a;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
}

.banner-text .join-link:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 22px;
  }

  .banner-text h2 {
    font-size: 16px;
    letter-spacing: 4px;
  }

  .banner-text .join-link {
    display: inline-block;
    padding: 2px 9px;
    background: #01a81a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 10px;
    margin-top: 10px;
  }

  .banner-text .join-link:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
  }
}
.exchange-list {
  display: flex;
  flex-direction: column;
}

.exchange-header,
.exchange-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-top: 2.5px solid #1c1f26;
}

.exchange-item:last-child {
  border-bottom: 2.5px solid #1c1f26;
}

.exchange-item:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.exchange-header {
  font-size: 14px;
  color: #aaa;
  font-weight: 600;
}

.exchange-rank {
  width: 30px;
  text-align: right;
  margin-right: 16px;
  color: #ccc;
}

.exchange-logo {
  width: 32px;
  height: 32px;
  margin-right: 12px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: contain;
}

.exchange-name {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  color: #fff;
}

.download-title {
  position: relative;
  padding-left: 15px;
}

.download-title :before {
  content: "";
  position: absolute;
  width: 4px;
  height: 95%;
  background-color: var(--primary-color);
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  border-radius: 2px;
}

.store-button {
  background: #fddc00;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 5px 20px;
  margin: 20px 0;
}

@media (max-width: 480px) {
  .exchange-name {
    font-size: 14px;
  }
}

.coin-list {
  display: flex;
  flex-direction: column;
}

.coin-header,
.coin-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-top: 2.5px solid #1c1f26;
}

.coin-header,
.coin-item:last-child {
  border-bottom: 2.5px solid #1c1f26;
}

.coin-header {
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

.coin-rank {
  width: 30px;
  text-align: right;
  margin-right: 16px;
  color: #ccc;
  flex-shrink: 0;
}

.coin-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.coin-info img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
}

.coin-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.coin-name-cn {
  font-size: 14px;
  font-weight: bold;
}

.coin-name-en {
  font-size: 14px;
  color: #999;
}

.buy-btn {
  padding: 4px 12px;
  border: 1px solid #088d69;
  border-radius: 20px;
  color: #088d69;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}

.buy-btn:hover {
  background-color: #088d69;
  color: #fff;
}

@media (max-width: 480px) {
  .coin-name-cn {
    font-size: 14px;
  }
  .coin-name-en {
    font-size: 14px;
  }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.review-card {
  background: #2e113b;
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.name {
  font-weight: bold;
  font-size: 16px;
}

.stars {
  color: gold;
  font-size: 16px;
}

.content {
  font-size: 15px;
  line-height: 1.6;
}

.section-title {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 70px;
  margin-bottom: 20px;
}

.main > div:nth-child(1) .section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}

.intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-text {
  width: 50%;
}

.intro-img {
  width: 45%;
}

@media screen and (max-width: 768px) {
  .intro-content {
    display: block;
    width: 100%;
  }

  .intro-text {
    width: 100%;
  }

  .intro-img {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
}

.banner {
  color: white;
  padding: 0px 20px 0px 20px;
  text-align: center;
}

.banner-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.banner-subtitle {
  font-size: 16px;
  margin-bottom: 32px;
  color: #cbd5e1;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: #fcd535;
}

.stat-label {
  font-size: 14px;
  color: #94a3b8;
}

.wallet-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 20px;
}

.wallet-title {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  margin-bottom: 6px;
}

.wallet-subtitle {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 40px;
}

.wallet-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.wallet-icon {
  background-color: #d4c903;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.wallet-text h4 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #fff;
}

.wallet-text p {
  margin: 0;
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wallet-title {
    font-size: 2rem;
    margin-top: 0;
  }

  .wallet-feature {
    align-items: flex-start;
  }
}

.qt-container {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 50vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial", sans-serif;
}

.qt-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.qt-coin {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: qt-float 6s ease-in-out infinite;
}

.qt-coin-pepe {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.qt-coin-doge {
  background: linear-gradient(45deg, #ffd700, #ffa500);
  top: 25%;
  right: 25%;
  animation-delay: 1s;
}

.qt-coin-shib {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  top: 60%;
  left: 15%;
  animation-delay: 2s;
}

.qt-coin-generic1 {
  background: linear-gradient(45deg, #8b4513, #d2691e);
  top: 70%;
  right: 20%;
  animation-delay: 3s;
}

.qt-coin-generic2 {
  background: linear-gradient(45deg, #2196f3, #03dac6);
  bottom: 20%;
  right: 30%;
  animation-delay: 4s;
}

.qt-coin-generic3 {
  background: linear-gradient(45deg, #e91e63, #ff5722);
  bottom: 30%;
  left: 25%;
  animation-delay: 5s;
}

.qt-main-coin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 200px;
  background: linear-gradient(180deg, #4caf50 0%, #ffeb3b 100%);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: qt-main-float 4s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.3);
}

.qt-main-coin::before {
  content: "↑";
  color: #333;
  font-weight: bold;
  font-size: 36px;
}

.qt-sparkle {
  position: absolute;
  color: #ffd700;
  font-size: 20px;
  animation: qt-sparkle 2s ease-in-out infinite;
}

.qt-sparkle1 {
  top: 30%;
  left: 45%;
  animation-delay: 0s;
}

.qt-sparkle2 {
  top: 40%;
  right: 35%;
  animation-delay: 1s;
}

.qt-sparkle3 {
  bottom: 35%;
  left: 40%;
  animation-delay: 2s;
}

.qt-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.qt-stats-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.qt-stat-item {
  text-align: left;
}

.qt-stat-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffeb3b;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(255, 235, 59, 0.3);
}

.qt-stat-label {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
}

.qt-visual-section {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes qt-shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes qt-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes qt-main-float {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes qt-sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes qt-pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
  }
}

/* 響應式設計 */
@media (max-width: 1024px) {
  .qt-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .qt-stat-number {
    font-size: 3rem;
  }

  .qt-main-coin {
    width: 100px;
    height: 160px;
  }

  .qt-coin {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .qt-content {
    padding: 15px;
    gap: 30px;
  }

  .qt-stat-number {
    font-size: 2.5rem;
  }

  .qt-stat-label {
    font-size: 0.8rem;
  }

  .qt-main-coin {
    width: 80px;
    height: 120px;
  }

  .qt-main-coin::before {
    font-size: 24px;
  }

  .qt-coin {
    width: 40px;
    height: 40px;
  }

  .qt-visual-section {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .qt-stat-number {
    font-size: 2rem;
  }

  .qt-stat-label {
    font-size: 0.7rem;
  }

  .qt-stats-section {
    gap: 25px;
    flex-direction: row;
  }

  .qt-main-coin {
    width: 60px;
    height: 100px;
  }

  .qt-main-coin::before {
    font-size: 20px;
  }

  .qt-coin {
    width: 30px;
    height: 30px;
  }

  .qt-visual-section {
    height: 250px;
  }

  .qt-sparkle {
    font-size: 16px;
  }
}

@media (max-width: 320px) {
  .qt-content {
    padding: 10px;
  }

  .qt-stat-number {
    font-size: 1.8rem;
  }

  .qt-stat-label {
    font-size: 0.8rem;
  }
}

.gk-container {
  min-height: 95vh;
  position: relative;
  overflow: hidden;
  font-family: "Arial", "Microsoft JhengHei", sans-serif;
  padding: 40px 20px;
}

.gk-title {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.gk-main-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gk-visual-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.gk-character-placeholder img {
  width: 100%;
  height: auto;
}

.gk-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.gk-floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  animation: gk-float 6s ease-in-out infinite;
}

.gk-icon-security {
  background: linear-gradient(45deg, #9c27b0, #e91e63);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.gk-icon-wallet {
  background: linear-gradient(45deg, #4caf50, #8bc34a);
  bottom: 20%;
  left: 10%;
  animation-delay: 2s;
}

.gk-icon-trade {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  top: 60%;
  right: 15%;
  animation-delay: 4s;
}

.gk-steps-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.gk-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gk-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gk-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffeb3b, #ff9800);
  border-radius: 2px;
}

.gk-step-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffeb3b;
  min-width: 60px;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.gk-step-content {
  flex: 1;
}

.gk-step-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
}

.gk-step-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.gk-decorative-line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 235, 59, 0.5),
    transparent
  );
  height: 2px;
  width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: gk-pulse 3s ease-in-out infinite;
}

@keyframes gk-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes gk-shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes gk-pulse {
  0%,
  100% {
    opacity: 0.3;
    width: 200px;
  }

  50% {
    opacity: 0.8;
    width: 300px;
  }
}

/* 響應式設計 */
@media (max-width: 1024px) {
  .gk-main-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gk-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .gk-character-placeholder {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .gk-container {
    padding: 20px 15px;
  }

  .gk-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .gk-main-content {
    gap: 30px;
  }

  .gk-character-placeholder {
    height: 300px;
  }

  .gk-step {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .gk-step-number {
    font-size: 1.8rem;
  }

  .gk-step-title {
    font-size: 1.3rem;
  }

  .gk-floating-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .gk-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .gk-character-placeholder {
    height: 250px;
    font-size: 1rem;
  }

  .gk-steps-section {
    gap: 25px;
  }

  .gk-step {
    padding: 15px;
  }

  .gk-step-number {
    text-align: left;
    font-size: 1.5rem;
  }

  .gk-step-title {
    text-align: left;
    font-size: 1.2rem;
  }

  .gk-step-description {
    font-size: 0.9rem;
  }

  .gk-floating-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 320px) {
  .gk-container {
    padding: 15px 10px;
  }

  .gk-title {
    font-size: 1.3rem;
  }

  .gk-character-placeholder {
    height: 200px;
    font-size: 0.9rem;
  }

  .gk-step {
    padding: 12px;
  }
}
