body {
    height: 100%;
    margin: 0;
    font-size: 14px;
    font-family: 'Microsoft YaHei', 'Helvetica Neue', Helvetica,
      'PingFang SC', 'Hiragino Sans GB', Arial, sans-serif;
    background: linear-gradient(to bottom, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #fff;
}

.header {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.hero-section {
    
    background: url("assets/background.jpg") center/cover no-repeat;
    position: relative;
    padding: 40px;
    margin: 20px auto;
    max-width: 1120px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
}

.game-logo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-info {
    flex-grow: 1;
}

.game-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-developer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin: 0 0 20px 0;
}

.game-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.stats-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    padding: 0px;
    margin: -10px auto 20px;
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.stat-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px;
        margin: 10px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .game-logo {
        width: 100px;
        height: 100px;
    }

    .game-title {
        font-size: 24px;
    }

    .game-tags {
        justify-content: center;
    }

    .stats-section {
        margin: 10px;
        padding: 15px;
    }

    .stats-content {
        padding: 10px 15px;
    }

    .stat-item {
        padding: 0 10px;
    }

    .stat-item:not(:last-child)::after {
        right: -5px;
        height: 50%;
    }

    .stat-title {
        font-size: 12px;
    }

    .stat-value {
        font-size: 16px;
    }

    .logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 0;
    }
    
    .logo {
        max-width: 160px;
    }
}

.content-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.game-info-table {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.info-table {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table tr {
    position: relative;
}

.info-table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-table td {
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.info-table td:first-child {
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    width: 150px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .stats-pentagon {
        position: static;
        margin-top: 20px;
        height: auto;
    }

    .game-info-table {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 15px;
        margin-bottom: 25px;
    }

    .game-info-table {
        padding: 0 15px;
        margin-top: 25px;
    }

    .info-table td {
        padding: 15px;
    }

    .info-table td:first-child {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        margin-bottom: 20px;
    }

    .game-info-table {
        margin-top: 40px;
    }

    .info-table td {
        padding: 12px;
    }

    .info-table td:first-child {
        width: 100px;
    }
}

.download-section {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.download-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 25px;
    box-sizing: border-box;
}

.download-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.download-card .platform-icon {
    font-size: 48px;
    color: #fff;
}

.download-card .android-icon {
    color: #3DDC84;
}

.download-card .apple-icon {
    color: #000000;
}

.download-card .windows-icon {
    color: #00A4EF;
}

.download-card-content {
    min-width: 0;
}

.download-card h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.download-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.download-button {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    justify-self: end;
}

/* Android download button */
.download-card:nth-child(1) .download-button {
    background: linear-gradient(135deg, #2ebe67, #3DDC84);
}

/* iOS download button */
.download-card:nth-child(2) .download-button {
    background: linear-gradient(135deg, #000000, #333333);
}

/* Windows download button */
.download-card:nth-child(3) .download-button {
    background: linear-gradient(135deg, #0078d4, #00A4EF);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

/* Custom hover effects for each platform */
.download-card:nth-child(1) .download-button:hover {
    box-shadow: 0 5px 15px rgba(61, 220, 132, 0.3);
}

.download-card:nth-child(2) .download-button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-card:nth-child(3) .download-button:hover {
    box-shadow: 0 5px 15px rgba(0, 164, 239, 0.3);
}

.download-button i {
    font-size: 18px;
}

@media (max-width: 992px) {
    .download-section {
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .pentagon-stats-wrapper {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .download-section {
        padding: 0;
    }

    .download-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .download-card .platform-icon {
        font-size: 36px;
        justify-self: center;
    }

    .download-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .download-card p {
        font-size: 14px;
    }

    .download-button {
        padding: 10px 25px;
        font-size: 14px;
        justify-self: center;
    }

    .stats-pentagon {
        padding: 15px;
    }

    .pentagon-stats-wrapper {
        min-height: 180px;
    }
}

@media (max-width: 480px) {
    .pentagon-stats-wrapper {
        min-height: 160px;
    }

    .rating-number {
        font-size: 28px;
    }

    .rating-count {
        font-size: 12px;
    }
}

.stats-pentagon {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.pentagon-stats-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    position: relative;
}

.pentagon-stats-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
    max-height: 300px;
}

.stats-pentagon h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-align: center;
}

.pentagon-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.pentagon-label {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pentagon-label i {
    color: #1e3c72;
    font-size: 16px;
}

.pentagon-value {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pentagon-score {
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.pentagon-stars {
    color: #FFD700;
    font-size: 14px;
}

.total-rating {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-number {
    font-size: 32px;
    font-weight: 700;
    color: #4facfe;
    margin-bottom: 5px;
}

.rating-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 10px;
}

.rating-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}