/* style/index.css */

/* General Page Styling */
.page-index {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    line-height: 1.6;
    background-color: #0A192F;
}

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

.page-index__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    position: relative;
}

.page-index__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-index__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-index__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 20px auto 30px;
    color: #B0B0B0;
}

.page-index__highlight {
    color: #FFD700;
}

/* Buttons */
.page-index__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    text-align: center;
    margin: 10px;
    font-size: 1em;
    cursor: pointer;
}

.page-index__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-index__btn--primary:hover {
    background-color: #E6C200;
    color: #000;
    transform: translateY(-2px);
}

.page-index__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-index__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
}

/* Hero Section */
.page-index__hero {
    background: linear-gradient(135deg, #0A192F, #1A3150);
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.page-index__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 0;
}

.page-index__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.page-index__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #C0C0C0;
}

.page-index__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* About Section */
.page-index__about {
    padding: 60px 0;
    background-color: #0F2038;
}

/* Promotions Section */
.page-index__promotions {
    padding: 60px 0;
    background-color: #0A192F;
}

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

.page-index__promo-item {
    background-color: #1A3150;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index__promo-item:hover {
    transform: translateY(-10px);
}

.page-index__promo-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-index__promo-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index__promo-description {
    color: #B0B0B0;
    font-size: 1em;
}

.page-index__promo-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #C0C0C0;
}

.page-index__promo-codes {
    margin-top: 50px;
    padding: 30px;
    background-color: #1A3150;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index__code-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-index__code-list li {
    background-color: #0A192F;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    border: 1px solid #FFD700;
}

/* Games Section */
.page-index__games {
    padding: 60px 0;
    background-color: #0F2038;
}

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

.page-index__game-category {
    background-color: #1A3150;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index__game-category:hover {
    transform: translateY(-10px);
}

.page-index__game-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-index__game-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-index__game-description {
    color: #B0B0B0;
    font-size: 0.95em;
    margin-bottom: 20px;
}

/* Guides Section */
.page-index__guides {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-index__guide-list {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 40px;
}

.page-index__guide-list li {
    margin-bottom: 15px;
}

.page-index__guide-link {
    font-size: 1.2em;
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__guide-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Latest News Section */
.page-index__latest-news {
    padding: 60px 0;
    background-color: #0F2038;
}

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

.page-index__news-item {
    background-color: #1A3150;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-index__news-item:hover {
    transform: translateY(-10px);
}

.page-index__news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-index__news-title {
    font-size: 1.3em;
    color: #FFD700;
    padding: 15px 20px 5px;
    margin: 0;
}

.page-index__news-title a {
    color: inherit;
    text-decoration: none;
}

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

.page-index__news-meta {
    font-size: 0.9em;
    color: #A0A0A0;
    padding: 0 20px;
    margin-bottom: 10px;
}

.page-index__news-excerpt {
    color: #B0B0B0;
    font-size: 0.95em;
    padding: 0 20px 20px;
}

/* Contact Section */
.page-index__contact {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-index__contact-info {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 40px;
    color: #C0C0C0;
    font-size: 1.1em;
}

.page-index__contact-info li {
    margin-bottom: 10px;
}

.page-index__contact-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index__contact-link:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index__hero-title {
        font-size: 3em;
    }
    .page-index__hero-description {
        font-size: 1.1em;
    }
    .page-index__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-index__hero {
        min-height: 500px;
        padding: 60px 15px;
    }
    .page-index__hero-title {
        font-size: 2.5em;
    }
    .page-index__hero-description {
        font-size: 1em;
    }
    .page-index__section-title {
        font-size: 1.8em;
    }
    .page-index__text-block {
        font-size: 1em;
    }
    .page-index__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index__promo-grid, .page-index__game-grid, .page-index__news-grid {
        grid-template-columns: 1fr;
    }
    .page-index__promo-item, .page-index__game-category, .page-index__news-item {
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .page-index__hero {
        min-height: 400px;
    }
    .page-index__hero-title {
        font-size: 2em;
    }
    .page-index__hero-description {
        font-size: 0.9em;
    }
    .page-index__hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .page-index__btn {
        width: 80%;
        max-width: 250px;
    }
    .page-index__section-title {
        font-size: 1.5em;
    }
    .page-index__promo-codes {
        padding: 20px;
    }
    .page-index__code-list li {
        font-size: 1em;
        padding: 8px 15px;
    }
}