:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --background-color-page: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
}

.page-index-popular-platforms {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    background-color: var(--background-color-page);
    line-height: 1.6;
    padding-bottom: 50px;
}

.page-index-popular-platforms__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    overflow: hidden;
}

.page-index-popular-platforms__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-index-popular-platforms__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-index-popular-platforms__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-index-popular-platforms__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-index-popular-platforms__hero-description {
    font-size: 1.1em;
    color: var(--text-main);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-popular-platforms__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-popular-platforms__btn-primary:hover {
    background: linear-gradient(180deg, var(--glow-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}