/* style/game-tools.css */
.page-game-tools {
    font-family: 'Arial', sans-serif;
    color: #0A192F;
    line-height: 1.6;
}

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

.page-game-tools__section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-game-tools__section--light {
    background-color: #F8F8F8;
}

.page-game-tools__section-title {
    font-size: 2.8em;
    color: #0A192F;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-game-tools__section-subtitle {
    font-size: 1.2em;
    color: #545e6d;
    text-align: center;
    margin-bottom: 60px;
}

.page-game-tools__section-description {
    font-size: 1.1em;
    color: #545e6d;
    text-align: center;
    margin-bottom: 40px;
}

.page-game-tools__text-center {
    text-align: center;
}

/* Hero Section */
.page-game-tools__hero-section {
    background: linear-gradient(135deg, #0A192F, #1e3a63);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-game-tools__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric,tech_pattern,subtle_gradient]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-game-tools__hero-section > .page-game-tools__container {
    position: relative;
    z-index: 1;
}

.page-game-tools__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #64FFDA;
}

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

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

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

.page-game-tools__btn--primary {
    background-color: #64FFDA;
    color: #0A192F;
    border: 2px solid #64FFDA;
}

.page-game-tools__btn--primary:hover {
    background-color: #46b399;
    border-color: #46b399;
    transform: translateY(-3px);
}

.page-game-tools__btn--secondary {
    background-color: transparent;
    color: #64FFDA;
    border: 2px solid #64FFDA;
}

.page-game-tools__btn--secondary:hover {
    background-color: #64FFDA;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-game-tools__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-game-tools__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-game-tools__btn--text {
    background: none;
    border: none;
    color: #64FFDA;
    padding: 0;
    font-weight: bold;
    font-size: 1em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.page-game-tools__btn--text:hover {
    color: #46b399;
}

.page-game-tools__arrow {
    transition: transform 0.3s ease;
}

.page-game-tools__btn--text:hover .page-game-tools__arrow {
    transform: translateX(5px);
}

/* Feature Grid */
.page-game-tools__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-tools__feature-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-tools__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-game-tools__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #64FFDA;
}

.page-game-tools__feature-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-tools__feature-text {
    color: #545e6d;
    font-size: 1em;
}

/* Tool Showcase */
.page-game-tools__tool-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.page-game-tools__tool-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.page-game-tools__tool-item--reverse {
    flex-direction: row-reverse;
}

.page-game-tools__tool-image {
    width: 45%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-game-tools__tool-content {
    width: 55%;
}

.page-game-tools__tool-title {
    font-size: 2.2em;
    color: #0A192F;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-game-tools__tool-description {
    color: #545e6d;
    font-size: 1.1em;
    margin-bottom: 25px;
}

/* CTA Dark Section */
.page-game-tools__section--cta-dark {
    background-color: #0A192F;
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.page-game-tools__section--cta-dark .page-game-tools__section-title {
    color: #64FFDA;
}

.page-game-tools__section--cta-dark .page-game-tools__section-description {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-tools__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Security Features */
.page-game-tools__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-game-tools__security-item {
    background-color: #F0F2F5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.page-game-tools__security-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    color: #0A192F;
}

.page-game-tools__security-title {
    font-size: 1.6em;
    color: #0A192F;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-tools__security-text {
    color: #545e6d;
    font-size: 0.95em;
}

/* Detail Pages List */
.page-game-tools__detail-pages {
    background-color: #F8F8F8;
}

.page-game-tools__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-game-tools__detail-item {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-game-tools__detail-title {
    font-size: 1.8em;
    color: #0A192F;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-game-tools__detail-title a {
    text-decoration: none;
    color: #0A192F;
    transition: color 0.3s ease;
}

.page-game-tools__detail-title a:hover {
    color: #64FFDA;
}

.page-game-tools__detail-description {
    color: #545e6d;
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Final CTA */
.page-game-tools__final-cta {
    background: linear-gradient(135deg, #0A192F, #1e3a63);
    color: #FFFFFF;
    padding: 100px 0;
}

.page-game-tools__final-cta .page-game-tools__section-title {
    color: #64FFDA;
}

.page-game-tools__final-cta .page-game-tools__section-description {
    color: #e0e0e0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-game-tools__hero-title {
        font-size: 3em;
    }
    .page-game-tools__tool-item {
        flex-direction: column;
        text-align: center;
    }
    .page-game-tools__tool-item--reverse {
        flex-direction: column;
    }
    .page-game-tools__tool-image,
    .page-game-tools__tool-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-game-tools__section {
        padding: 60px 0;
    }
    .page-game-tools__hero-title {
        font-size: 2.5em;
    }
    .page-game-tools__hero-description {
        font-size: 1.1em;
    }
    .page-game-tools__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-game-tools__btn--large {
        width: 100%;
    }
    .page-game-tools__section-title {
        font-size: 2em;
    }
    .page-game-tools__section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-game-tools__tool-title {
        font-size: 1.8em;
    }
    .page-game-tools__tool-description {
        font-size: 1em;
    }
    .page-game-tools__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-game-tools__hero-title {
        font-size: 2em;
    }
    .page-game-tools__hero-description {
        font-size: 0.95em;
    }
    .page-game-tools__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-game-tools__section-title {
        font-size: 1.8em;
    }
    .page-game-tools__feature-item,
    .page-game-tools__security-item {
        padding: 20px;
    }
    .page-game-tools__tool-item {
        padding: 20px;
    }
    .page-game-tools__tool-title {
        font-size: 1.6em;
    }
    .page-game-tools__detail-title {
        font-size: 1.5em;
    }
}