.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #000000;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions__hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FFD700;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.page-promotions__hero > .page-promotions__container {
    position: relative;
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    line-height: 1.2;
}

.page-promotions__hero-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #000000;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__btn--secondary {
    background-color: #333333;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--tertiary {
    background-color: #555555;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions__btn--tertiary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-1px);
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #1a1a1a;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-promotions__about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions__about-text {
    flex: 1;
}

.page-promotions__about-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions__about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.2);
}

.page-promotions__card-img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__card-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__card .page-promotions__btn {
    margin-top: auto;
}

.page-promotions__steps {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-promotions__step-number {
    background-color: #FFD700;
    color: #000000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 20px;
    font-size: 1.2em;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.page-promotions__steps p a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__steps p a:hover {
    text-decoration: underline;
}

.page-promotions__terms-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 40px;
}

.page-promotions__terms-text {
    flex: 1;
}

.page-promotions__terms-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-promotions__terms-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promotions__terms-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
}

.page-promotions__terms-text ul li::before {
    content: '•';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: 2px;
}

.page-promotions__terms-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-promotions__faq-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #cccccc;
    line-height: 1.6;
}

.page-promotions__cta {
    background-color: #000000;
    padding: 80px 0;
    border-top: 3px solid #FFD700;
}

.page-promotions__cta .page-promotions__section-description {
    margin-bottom: 50px;
}

.page-promotions__cta .page-promotions__section-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__cta .page-promotions__section-description a:hover {
    text-decoration: underline;
}

.page-promotions__grid--detail {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-promotions__card--detail {
    background-color: #0d0d0d;
    border: 1px solid #333333;
    padding: 25px;
    text-align: left;
}

.page-promotions__card--detail .page-promotions__card-title {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-promotions__card--detail .page-promotions__card-description {
    font-size: 0.9em;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__about-content, .page-promotions__terms-content {
        flex-direction: column;
        text-align: center;
    }
    .page-promotions__about-image, .page-promotions__terms-image {
        margin-top: 30px;
    }
    .page-promotions__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__section-description {
        font-size: 1em;
    }
    .page-promotions__steps li {
        font-size: 1em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__card-title {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__card-img {
        height: 150px;
    }
    .page-promotions__steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .page-promotions__step-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
}