


.game-hero {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.game-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.game-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 92, 246, 0.6);
    z-index: 1;
}

.game-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(25px) brightness(0.8);
    transform: scale(1.15);
}

.game-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
}

.game-hero-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.game-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-now-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: #4CAF50;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.play-now-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.play-now-button:active {
    transform: translateY(0);
}

.play-now-button svg {
    width: 20px;
    height: 20px;
}


.game-interactions {
    background-color: #ffffff;
    padding: 20px 0;
}

.interactions-bar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #f5f5f5;
    border-radius: 0;
}

.interaction-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px 0;
}

.interaction-item:hover {
    color: #8B5CF6;
}

.interaction-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    opacity: 0.7;
}

.interaction-item:hover svg {
    opacity: 1;
}

.interaction-count {
    font-size: 14px;
    font-weight: 500;
}

.advertisement-label {
    max-width: 1200px;
    margin: 15px auto 10px;
    padding: 0 20px;
    text-align: center;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advertisement-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
}

.ad-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f0f0f0;
}


.game-info {
    background-color: #ffffff;
    padding: 40px 0 60px;
}

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

.game-info .game-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.game-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}


.recommended-games {
    background-color: #ffffff;
    padding: 60px 0;
}

.recommended-games-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.recommended-title {
    color: #8B5CF6;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.recommended-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.recommended-games-grid .game-card {
    text-decoration: none;
    color: inherit;
    width: 100%;
    max-width: 100%;
}

.recommended-games-grid .game-card:hover {
    text-decoration: none;
}


@media (max-width: 768px) {
    .game-hero {
        min-height: 350px;
    }
    
    .game-hero-content {
        gap: 25px;
        padding: 30px 20px;
    }
    
    .game-hero-image-wrapper {
        width: 150px;
        height: 150px;
        border-width: 4px;
    }
    
    .play-now-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .interactions-bar {
        gap: 20px;
        padding: 0 15px;
    }
    
    .interaction-item {
        gap: 6px;
    }
    
    .interaction-item svg {
        width: 18px;
        height: 18px;
    }
    
    .interaction-count {
        font-size: 13px;
    }
    
    .game-info .game-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .game-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .recommended-games {
        padding: 40px 0;
    }
    
    .recommended-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .recommended-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .recommended-games-grid .game-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .game-hero {
        min-height: 300px;
    }
    
    .game-hero-image-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .play-now-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .play-now-button svg {
        width: 16px;
        height: 16px;
    }
    
    .interactions-bar {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .game-info .game-title {
        font-size: 20px;
    }
    
    .game-description {
        font-size: 14px;
    }
    
    .recommended-games {
        padding: 30px 0;
    }
    
    .recommended-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .recommended-games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .recommended-games-grid .game-card {
        width: 100%;
        max-width: 100%;
    }
}

