@media (min-width: 768px) {

  /* #region top header */
  .header {
    box-sizing: border-box;
    width: 100%;
    height: 7%;
    /* position: fixed; */
    z-index: 10;
    padding: 2rem 2rem;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #0F95D0, #014274);
    background-size: cover;
    background-position: center;
    box-shadow: 0rem 0rem 10rem 4rem rgba(161, 161, 161, 0.5);
  }

  .container.event-none * {
    pointer-events: none;
  }

  .play_item_box {
    width: 19% !important;
    /* border-radius: 5px; */
    overflow: hidden;
  }

  .header .left {
    /* width: calc(100% - 26.5rem); */
  }



  /* 
  .header .left .logo_img {
    width: 5rem;
    height: 5rem;
  }

  .header .left img,
  .right img {
    width: 100%;
    height: 100%;
  } */

  /* .flex-column {
  margin: 10px 40px 20px 40px;
  display: flex;
  justify-content: flex-start;
} */

  .play_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .play_item {
    overflow: hidden;
    text-align: center;
  }

  .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: #292929;
  }

  .flex-column {
    margin: 10px 40px 20px 40px !important;
    display: flex !important;
    justify-content: flex-start;
  }

  .play_name {
    color: #fff;
    font-size: 14px;
    min-width: 0;
    max-width: 50%;
    flex: 1;
  }

  /* .flex {
    justify-content: flex-start !important;

  } */

  .play_button {
    background: #6c5ce7 !important;
    border: none;
    color: #fff;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 12px;
  }

  .header .left .list_name {
    margin: 0 auto;
    padding-left: 9rem;
    font-size: 5rem;
    font-weight: bold;
    color: #ffffff;
    max-width: 70%;
  }

  /* #endregion */
  .container {
    box-sizing: border-box;
    /* padding-top: 10rem; */
    background-color: #02133f;
    background-position: top !important;
    background-repeat: no-repeat !important;
    background-size: auto auto !important;
    background-size: initial !important;
  }

  .container .main1 {
    margin: 0px 40px;
    margin-top: 45px;
  }

  .container .main .play_detail .star_box .star {
    width: 21px;
    height: 24px;
  }

  .container .main .play_detail .rate_box {
    margin-bottom: 5rem;
    margin: 4px 37px !important;
  }

  .container .main .play_detail .rate_box .rate_num {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    font-family: monospace;
  }

  .container .main .play_detail .play_desc .desc_title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-top: 20px;
    padding-bottom: 10px;
    text-indent: 0;
    color: #2d3748;
  }

  .container .main .play_detail .play_desc {
    margin-top: 10rem;
    box-sizing: border-box;
    padding: 6rem;
    padding-top: 0;
    text-indent: 25rem;
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    color: #4a5568;
    line-height: 1.8;
    margin: 0px 40px;
    /* background-color: #66FF75; */
    border: 2px solid #e2e8f0;
    display: none;
  }

  .container .main .play_detail .play_button {
    margin: 40px auto 20px 30px; /* Aligned with left content */
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    /* Fresh & Modern Gradient: Blue -> Cyan -> Purple */
    background-image: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    background-size: 200% 200%;

    box-shadow: 0 10px 25px -5px rgba(0, 114, 255, 0.5);
    width: 200px; /* Wider for better presence */
    height: 56px; /* Taller for touch/click target */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    cursor: pointer;
    border-radius: 12px; /* Modern squircle-like radius */

    /* Centering & Flex */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Space for icon */

    /* Transitions */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  
  /* Icon styling (assuming user might add one, or just space) */
  .container .main .play_detail .play_button::before {
    display: none; /* Hide pseudo-element icon to avoid duplication */
    content: '▶';
    font-size: 14px;
    margin-bottom: 2px;
  }

  /* Shine Effect */
  .container .main .play_detail .play_button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
  }
  
  .container .main .play_detail .play_button:hover::after {
    left: 100%;
  }

  .container .main .play_detail .play_button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 35px -10px rgba(0, 114, 255, 0.6);
    background-image: linear-gradient(135deg, #0072FF 0%, #00C6FF 100%);
  }

  .container .main .play_detail .play_button:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 15px -5px rgba(0, 114, 255, 0.4);
  }

  .container .main .play_detail .right {
    box-sizing: border-box;
    padding-left: 0;
  }

  .container .main .other_play {}

  .container .main .other_play .sub_title {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin: 0px 40px;
    margin-top: 16px;
    margin-bottom: 10px;
    color: #fff;
  }

  .container .main .play_detail .play_img {
    width: 180px;
    height: 180px;
    background: #d5d5d5;
    /* box-shadow: 0rem 1rem 0rem 0rem rgba(255, 255, 255, 0.37); */
    /* border-radius: 10px !important; */
    overflow: hidden;
    position: relative;
    /* box-shadow: 0px 4px 8px rgba(202, 202, 202, 0.5); */
    /* border-radius: 10px; */
  }

  .container .main .play_detail .play_img img {
    width: 100%;
    height: 100%;
  }

  .container .main .play_detail .play_img .bg_img {
    background-color: rgba(0, 0, 0, 0.3);
    -moz-filter: blur(5rem);
    -ms-filter: blur(5rem);
    filter: blur(20rem);
  }

  .container .main .play_detail .play_img .img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
  }

  .container .main .play_detail .play_name,
  .container .main .play_detail .detail_play_name {
    font-size: 36px;
    font-weight: 900;
    padding-left: 36px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -1px;
    /* Gradient Text */
    background: linear-gradient(120deg, #2d3436 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Subtle glow */
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    display: inline-block;
  }

  /* Add a decorative underline */
  .container .main .play_detail .detail_play_name::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff7675, #e17055);
    border-radius: 2px;
    margin-top: 5px;
  }

  /* PC Game Info Section - Premium Design */
  .game-info-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 32px 40px;
    margin: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  /* Hover effect */
  .game-info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  }

  /* Decorative accent line */
  .game-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #6C5CE7 0%, #00cec9 100%);
  }

  /* Header Styling */
  .info-header {
    font-size: 24px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .info-header::before {
    content: '📝'; /* Or any icon */
    font-size: 20px;
  }

  /* Content Styling */
  .play_desc, .play_long_desc {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  /* Long Desc Subheadings */
  .play_long_desc h2, .play_long_desc h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-top: 24px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 16px;
  }

  .play_long_desc h2::before, .play_long_desc h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6C5CE7;
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.2);
  }

  /* List Styling */
  .play_long_desc ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
  }

  .play_long_desc li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
  }

  .play_long_desc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
  }

  .play_desc_short {
    color: #4a5568;
    font-size: 16px;
    margin-left: 37px;
    line-height: 1.8;
    font-family: "Georgia", serif;
    /* Elegant serif for description */
    font-style: italic;
    opacity: 0.9;
  }

  .play_desc_short .desc_title {
    display: none;
  }

  .metalink {
    padding-top: 0px !important;
    /* Flashy Design */
    display: flex;
    align-items: center;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .metalink a {
    color: #57606f;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    position: relative;
    padding: 2px 5px;
  }

  .metalink a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    right: 5px;
    height: 2px;
    background: linear-gradient(90deg, #ff4757, #5352ed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }

  .metalink a:hover {
    color: #2f3542;
    transform: translateY(-2px);
  }

  .metalink a:hover::before {
    transform: scaleX(1);
  }

  .metalink .jt {
    margin: 0 5px;
    color: #a4b0be;
    font-size: 10px;
    font-weight: bold;
    opacity: 0.6;
  }

  .metalink span:last-child,
  .metalink span:last-child a {
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 16px;
    text-shadow: 0px 5px 15px rgba(255, 107, 107, 0.25);
    pointer-events: none;
    cursor: default;
    padding: 2px 5px;
  }

  .metalink span:last-child a::before {
    display: none;
  }
}



@media (max-width: 960px) {

  .header .left {
    /* width: calc(100% - 26.5rem); */
  }

  .container.event-none * {
    pointer-events: none;
  }

  .header .left img,
  .right img {
    width: 100%;
    height: 100%;
  }

  .header .left .list_name {
    padding-left: 9rem;
    font-size: 16rem;
    font-weight: 500;
    color: #ffffff;
    font-weight: bold;
    max-width: 70%;
  }

  /* --- Global Container & Layout --- */
  .container {
    padding-top: 50px;
    background-color: #f8fafc; /* Clean white/light gray background */
  }
  
  .container .main {
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }

  /* Remove unwanted margins/paddings from index.css for Detail Page */
  .hero.glass-card {
    margin: 0 !important;
  }
  
  .banner-box {
    padding: 0 !important;
  }

  /* --- Top Hero Section (Glass Island Design) --- */
  .container .main .play_detail .top {
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 32px;
    padding: 16px;
    margin-bottom: 32px;
    box-shadow: 
      0 20px 40px -10px rgba(0,0,0,0.05),
      0 0 0 1px rgba(0,0,0,0.02),
      inset 0 0 0 1px rgba(255,255,255,0.5);
    overflow: visible;
    position: relative;
    backdrop-filter: blur(20px);
  }

  /* Decorative Background Blob */
  .container .main .play_detail .top::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 300px;
    background: radial-gradient(circle at center, #eff6ff 0%, #f8fafc 60%, transparent 100%);
    z-index: -1;
    pointer-events: none;
  }

  /* Image Container - Floating Island */
  .container .main .play_detail .left {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 2;
    margin-bottom: 4px;
  }
  
  .container .main .play_detail .play_img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0;
    display: block;
  }
  
  .container .main .play_detail .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
  }

  /* Info Container - Clean & Compact */
  .container .main .play_detail .right {
    width: 100%;
    padding: 16px 8px 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 10;
    align-items: center;
  }

  /* Game Title */
  .detail_play_name {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
  }

  /* Meta Tags (Category & Updated) */
  .meta-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 4px;
  }

  .tag-category {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: none;
  }
  
  .tag-updated {
    background: transparent;
    color: #94a3b8;
    padding: 0;
    border-radius: 0;
    font-size: 11px;
    font-weight: 500;
    border: none;
  }

  /* Rating Box */
  .rate_box {
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
  }
  
  .star_box {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .star_box img.star {
    width: 14px;
    height: 14px;
  }
  
  .rate_num {
    color: #d97706; /* Darker yellow text */
    font-size: 14px;
    font-weight: 800;
    padding-left: 0;
  }

  /* Short Description */
  .play_desc_short {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    display: block !important; /* Force show */
    margin: 4px 0;
  }

  /* Play Button - Sleek Rectangle Design */
  .play_button {
    width: 100%;
    min-width: 280px; /* Ensure minimum width for impact */
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%) !important;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Wider letter spacing */
    padding: 18px 24px; /* Slightly taller */
    border-radius: 8px; /* Sharper corners */
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 0 #1d4ed8; /* Solid bottom shadow for 3D effect */
    transition: all 0.1s ease;
    margin-top: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
  }
  
  /* Subtle Shine */
  .play_button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
  }
  
  /* Button Active State - Press Down */
  .play_button:active {
    transform: translateY(4px); /* Move down */
    box-shadow: 0 0 0 #1d4ed8; /* Remove shadow */
    background: linear-gradient(90deg, #1d4ed8 0%, #2563eb 100%) !important;
  }
  
  /* Icon Styling */
  .play-icon {
    font-size: 14px;
    background: transparent;
    color: #fff;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    display: inline-block;
    transform: scale(1.2); /* Slightly larger icon */
  }

  /* --- Game Info Section (Long Desc) --- */
  .game-info-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  }

  .info-header {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .info-header::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: #3b82f6;
    border-radius: 2px;
  }

  .play_desc, .play_long_desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475569; /* Slate 600 */
  }
  
  .play_long_desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e2e8f0;
  }
  
  /* Styled Headings */
  .play_long_desc h2, .play_long_desc h3 {
    font-size: 16px;
    font-weight: 800;
    color: #2563eb; /* Blue headings */
    margin-top: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* Optional: Add icon before headings if using pure CSS */
  .play_long_desc h2::before {
    content: '✨';
    font-size: 14px;
  }
  
  .play_long_desc h3::before {
    content: '🔹';
    font-size: 12px;
  }
  
  /* Rich Lists */
  .play_long_desc ul {
    padding-left: 0;
    margin-bottom: 16px;
    list-style: none;
  }
  
  .play_long_desc li {
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
    color: #475569;
  }
  
  /* Custom List Bullets */
  .play_long_desc li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981; /* Green checkmarks */
    font-weight: 900;
    font-size: 14px;
  }
  
  /* Highlight Strong Text */
  .play_long_desc strong {
    color: #0f172a;
    font-weight: 800;
    background: linear-gradient(120deg, #dbeafe 0%, #dbeafe 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 2px;
  }
  
  /* Paragraph Spacing */
  .play_long_desc p {
    margin-bottom: 12px;
    color: #334155;
  }

  /* --- Other Play (You May Also Like) --- */
  .other_play {
    padding: 0;
  }

  .sub_title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    padding-left: 4px;
    background: none;
    -webkit-text-fill-color: initial;
  }

  .play_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-content: unset;
  }

  .play_item_box {
    width: 100% !important;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  
  .play_item {
    width: 100%;
  }

  .play_item .play_img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    border-radius: 0 !important;
    background: #f1f5f9;
    margin: 0;
  }
  
  .play_item .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .play_box {
    padding: 12px;
    width: auto;
  }

  .play_name {
    font-size: 13px !important;
    font-weight: 600;
    color: #1e293b !important;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
    -webkit-text-fill-color: initial;
    filter: none;
    padding: 0;
    text-align: left;
  }

  .play_describe {
    font-size: 11px;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 30px; /* Force height for 2 lines */
  }

  /* Hide Elements not needed for mobile */
  .Category, .websiteDesc, .container31 {
    display: none !important;
  }

  /* H5 Breadcrumbs Styling - Matching PC .metalink */
  .metalink {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 20px 0;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin-bottom: 16px;
  }

  .metalink a {
    color: #57606f;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 5px;
  }

  .metalink .jt {
    margin: 0 5px;
    color: #a4b0be;
    font-size: 10px;
    font-weight: bold;
    opacity: 0.6;
  }

  .metalink span:last-child,
  .metalink span:last-child a {
    background: transparent !important;
    -webkit-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-text-fill-color: #0f172a !important;
    color: #0f172a !important;
    font-weight: 800;
    font-size: 16px;
    text-shadow: none !important;
    padding: 4px 5px !important; /* More padding */
    
    /* Layout safety */
    display: inline-block;
    white-space: nowrap;
    overflow: visible !important; /* Remove clip to see text */
    text-overflow: clip !important;
    max-width: none !important; /* Allow full width */
    vertical-align: middle;
    line-height: 1.5 !important; /* Increase line height */
    height: auto !important;
  }
  
  /* Remove old H5 breadcrumbs styles */
  .breadcrumbs-h5 { display: none; }

  /* 标题下方装饰线 */
  .container .main .play_detail .detail_play_name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #6C5CE7, #00cec9);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(108, 92, 231, 0.2);
    display: none;
  }

  /* Centering star rating and rate box - Optimized Size */
  .container .main .play_detail .rate_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* 减小间距 */
    margin-bottom: 12px;
    height: auto;
    flex-direction: row;
    /* 强制单行 */
  }

  /* 星星容器 */
  .container .main .play_detail .rate_box .star_box {
    display: flex;
    align-items: center;
    gap: 2px;
    /* 星星之间的间距 */
  }

  /* 单个星星样式优化 */
  .container .main .play_detail .star_box .star {
    width: 14px !important;
    /* 缩小星星尺寸 */
    height: 14px !important;
    margin: 0;
  }

  /* 评分文字优化 */
  .container .main .play_detail .rate_box .rate_num {
    font-size: 14px;
    /* 缩小字号 */
    font-weight: 600;
    color: #636e72;
    margin-left: 5px;
    line-height: 1;
    padding-top: 2px;
    /* 微调垂直对齐 */
  }

  /* Play Button Styling - Premium Design */
  .container .main .play_detail .play_button {
    background: linear-gradient(135deg, #0984e3 0%, #00cec9 100%);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    height: 50px;
    margin: 15px auto 0;
    width: 100%;
    max-width: 280px;
    padding: 0 20px;
    text-transform: uppercase;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(9, 132, 227, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
  }

  /* 按钮光泽效果 */
  .container .main .play_detail .play_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .container .main .play_detail .play_button:active {
    transform: scale(0.96) translateY(2px);
    box-shadow: 0 4px 10px rgba(9, 132, 227, 0.2);
  }

  /* 触摸时触发光泽动画 */
  .container .main .play_detail .play_button:active::before {
    left: 100%;
    transition: left 0.5s;
  }

  /* 描述标题 - 移动端优化 */
  .container .main .play_detail .play_desc .desc_title {
    text-align: center;
    font-size: 20px;
    /* 加大字号 */
    font-weight: 900;
    /* 最粗字重 */
    text-indent: 0;
    padding-bottom: 15px;
    color: #2d3436;
    background: none;
    -webkit-text-fill-color: initial;
    letter-spacing: -0.5px;
    /* 紧凑字间距 */
    text-transform: capitalize;
    /* 仅首字母大写，更易读 */
    border-bottom: none;
    /* 移除原来的边框，用伪元素代替 */
    margin-bottom: 25px;
    position: relative;
    display: block;
    width: 100%;
  }

  /* 标题下划线 - 胶囊风格 */
  .container .main .play_detail .play_desc .desc_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: linear-gradient(90deg, #6C5CE7, #00cec9);
    /* 蓝紫渐变 */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(108, 92, 231, 0.2);
  }

  /* 描述内容容器 - 卡片式设计 */
  .container .main .play_detail .play_desc {
    display: block;
    margin-top: 25px;
    box-sizing: border-box;
    padding: 35px 25px;
    text-indent: 0;
    text-align: justify;
    font-size: 15px;
    font-weight: 500;
    /* 稍微加粗正文 */
    line-height: 1.8;
    color: #4a5568;
    /* 更深的蓝灰色，对比度更好 */
    background: #fff;
    /* 移除渐变边框，改用更干净的阴影和微边框 */
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    /* 高级弥散阴影 */
    position: relative;
    overflow: hidden;
  }

  /* 左上角装饰圆点 */
  .container .main .play_detail .play_desc::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 206, 201, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  /* 右下角装饰圆点 */
  .container .main .play_detail .play_desc::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .container .main .play_detail .play_button {
    background: linear-gradient(135deg, #00cec9, #0984e3);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    height: 44px;
    margin: 20px auto 0;
    max-width: 100%;
    padding: 0 40px;
    text-transform: uppercase;
    width: auto;
    border-radius: 22px;
    box-shadow: 0 4px 15px rgba(0, 206, 201, 0.4);
    transition: transform 0.2s;
  }

  .top_flex_flex-column {
    display: block !important;
  }

  .container .main .play_detail .right {
    box-sizing: border-box;
  }

  .container .main .other_play {
    margin-top: 20px;
    padding: 0px 13px;
  }

  /* Sub Title - PC Style Reproduction */
  .container .main .other_play .sub_title {
    font-size: 22px;
    /* 加大字号 */
    font-weight: 800;
    /* 加粗 */
    width: auto;
    /* 自适应宽度 */
    margin: 20px 20px 15px 20px;
    /* 调整边距 */
    color: #2d3436;
    /* 深灰色文字 */
    text-align: left;
    position: relative;
    padding-left: 18px;
    /* 为左侧竖线留空 */
    display: flex;
    align-items: center;
    line-height: 1;
  }

  /* 左侧粉色竖线 */
  .container .main .other_play .sub_title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    /* 竖线高度 */
    background: linear-gradient(180deg, #ff7675 0%, #e84393 100%);
    /* 粉色渐变 */
    border-radius: 4px;
    /* 圆角 */
    box-shadow: 0 2px 6px rgba(232, 67, 147, 0.3);
    /* 竖线阴影 */
  }

  /* 右侧闪电图标 */
  .container .main .other_play .sub_title::after {
    content: '⚡';
    /* 闪电符号 */
    margin-left: 8px;
    font-size: 24px;
    font-weight: normal;
    background: linear-gradient(135deg, #ffeaa7 0%, #ff7675 100%);
    /* 橙粉渐变 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(255, 118, 117, 0.3));
    /* 图标投影 */
    transform: rotate(10deg);
    /* 稍微倾斜增加动感 */
  }

  .container .main .other_play .play_list {
    width: 100%;
  }

  .container .main .other_play .play_list .play_item_box {
    margin-bottom: 10rem;
    box-sizing: border-box;
  }

  .container .main .other_play .play_list .play_item_box .play_item .play_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .container .main .other_play .play_list .hidden_play {
    display: none;
  }

  /* Enhanced Metalink for Mobile - PC Style Sync */
  .metalink {
    padding-top: 0px !important;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-left: 10px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 0 !important;
    background: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }

  .metalink a {
    color: #57606f;
    /* PC Style */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .metalink a:active {
    color: #2f3542;
    /* PC Style Hover */
  }

  .metalink .jt {
    margin: 0 8px;
    color: #a4b0be;
    /* PC Style */
    font-size: 11px;
    font-weight: 900;
    opacity: 0.6;
  }

  .metalink span:last-child,
  .metalink span:last-child a {
    background: linear-gradient(90deg, #ff6b6b, #feca57);
    /* PC Style Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 14px;
    text-shadow: 0px 5px 15px rgba(255, 107, 107, 0.25);
    letter-spacing: 0px;
  }

  /*# sourceMappingURL=detail.css.map */
}

@media (min-width: 1980px) {

  .container .main .play_detail .play_name,
  .container .main .play_detail .detail_play_name {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    padding-left: 36px;
  }

  .metalink {
    padding-left: 140px !important;
  }

  .play_item_box {
    width: 280px !important;
    /* border-radius: 5px; */
    overflow: hidden;
    justify-content: space-between !important;
  }

  .left {
    margin-top: 65px;
  }

  .container .main .play_detail .play_desc {
    margin-top: 10rem;
    box-sizing: border-box;
    padding: 6rem;
    padding-top: 0;
    text-indent: 25rem;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0px 12px;
    /* background-color: #66FF75; */
    border: 2px solid #3C59E0;
  }

  .container .main .other_play .sub_title {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin: 0px 1px;
    margin-top: 16px;
    margin-bottom: 10px;
    color: #000;
  }

  .play_img {
    width: 280px;
    height: 157px;
    aspect-ratio: 7 / 4.6;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container.event-none * {
    pointer-events: none;
  }

  .play_detail {
    max-width: 2056px;
    margin-left: auto;
    margin-right: auto;
  }

  .other_play {
    max-width: 2020px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .container .main .play_detail .play_img {
    width: 280px;
    height: 157px;
    background: #d5d5d5;
    overflow: hidden;
    position: relative;
  }

  .play_item_box {
    width: 280px !important;
    /* border-radius: 5px; */
    overflow: hidden;
    justify-content: space-between !important;
  }

  .play_img {
    border-radius: 0px !important;
  }

  .play_img {
    width: 280px !important;
    height: 157px !important;
    aspect-ratio: 7 / 4.6;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Category {
    display: none;
  }

  .websiteDesc {
    padding: 40px;
    background-color: #161623;
    max-width: 1998px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
  }

  .container .main .other_play_list_type .other_play_list_item {
    box-sizing: border-box;
    /* margin: 0 40px; */
    margin-top: 5px;
    padding: 0;
  }

}