* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: rgba(255, 112, 112, 1);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.header {
    margin-bottom: 30px;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.game-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.download-info, .rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-label, .rating-label {
    font-weight: 500;
    color: #666;
}

.download-count {
    font-weight: 600;
    color: #333;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.active {
    color: #FFD700;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.game-description {
    margin-bottom: 30px;
}

.game-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.game-features h2, .how-to-play h2, .why-choose h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.feature {
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.feature p {
    color: #555;
    line-height: 1.6;
}

.how-to-play {
    margin: 30px 0;
}

.how-to-play ol {
    padding-left: 20px;
}

.how-to-play li {
    margin-bottom: 8px;
    color: #555;
}

.why-choose {
    margin: 30px 0;
}

.why-choose p {
    color: #555;
    line-height: 1.7;
}

.screenshot-bottom {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-preview {
    text-align: center;
    background: rgba(255, 112, 112, 1);
    padding: 42px;
    border-radius: 32px;
}

.phone-mockup {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reviews-section h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.reviews-swiper {
    width: 100%;
    padding-bottom: 40px;
    max-width: 380px;
}

.review {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid rgba(255, 112, 112, 0.3);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.review-text {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

.swiper-pagination-bullet {
    background: rgba(255, 112, 112, 1);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.download-section {
    text-align: center;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
    background: rgba(255, 112, 112, 1);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: unset;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 112, 112, 0.3);
}

.download-btn:hover {
    background: rgba(255, 90, 90, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 112, 112, 0.4);
}

.footer {
    border-top: 1px solid #eee;
    padding-top: 30px;
    text-align: center;
}

.footer-content p,
.footer a {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer a {
  text-decoration: unset;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 112, 112, 1);
}

/* Animation for smooth loading */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: fadeInUp 0.6s ease-out;
}

.feature {
    animation: fadeInUp 0.6s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.review {
    transition: transform 0.3s ease;
}

.review:hover {
    transform: translateY(-5px);
}

.cook {
    width: calc(100% - 60px);
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: left;
    position: fixed;
    bottom: 25px;
    left: calc(50% - 15px);
    transform: translateX(-50%);
    max-width: 712px;
    border-radius: 12px;
    z-index: 3;
    gap: 10px;
    margin: 0 15px;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.cook.closed {
  display: none !important;
}

.x981m3-message {
    font-size: 14px;
    display: inline-block;
    word-wrap: break-word;
    max-width: 100%;
    color: rgb(69 81 90);
    font-weight: 400;
    opacity: .8;
    padding: 25px;
    text-align: center;
}

.x981m3-message h1 {
    font-size: 28px;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-bottom: 10px;
    color: #000;
}

.x981m3 > div {
    display: flex
;
    align-items: center;
    width: 100%;
    border-top: 1px solid #ccc;
    flex-wrap: wrap;
}

.cfl193 {
    border: none;
    cursor: pointer;
    padding: 15px 15px;
    font-size: 12px;
    transition: background-color 0.3s ease;
    color: #fff;
    white-space: nowrap;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid transparent;
}

.x981m3 > div > button {
    flex: 1 1 50%;
}

.xmnal3910msjd341-agree-btn {
    color: white;
    background: #7D0633;
}

.xmnal3910msjd341-decline-btn {
    background: #f6abab;
}

.game-screenshot-bottom {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
 
    
    .game-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
  
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .game-preview {

    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.8rem;
    }
    
    .game-features h2, .how-to-play h2, .why-choose h2 {
        font-size: 1.2rem;
    }
    

    
    .review {
        padding: 15px;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
    }
    .reviews-swiper {
      max-width: calc(100vw - 60px);
    }
}

.content-block ul li {
  list-style-position: inside;
}

.content-block {
  padding-top: 60px;
  padding-bottom: 60px;
}