/* style/player-community-game-strategy-exchange.css */
.page-player-community-game-strategy-exchange {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A202C; /* Dark blue/black auxiliary color as background */
    line-height: 1.6;
}

.page-player-community-game-strategy-exchange__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1A202C 0%, #0c1016 100%); /* Darker gradient */
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-player-community-game-strategy-exchange__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-player-community-game-strategy-exchange__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-player-community-game-strategy-exchange__hero-subtitle {
    font-size: 1.4em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-player-community-game-strategy-exchange__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-player-community-game-strategy-exchange__hero-button:hover {
    background-color: #E0B800; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-player-community-game-strategy-exchange__hero-image-wrapper {
    margin-top: 40px;
    max-width: 100%;
    width: 800px;
}

.page-player-community-game-strategy-exchange__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-player-community-game-strategy-exchange__section {
    padding: 60px 20px;
    background-color: #1A202C;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-player-community-game-strategy-exchange__section:last-of-type {
    border-bottom: none;
}

.page-player-community-game-strategy-exchange__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-player-community-game-strategy-exchange__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-player-community-game-strategy-exchange__text {
    font-size: 1.1em;
    color: #B0B0B0;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-player-community-game-strategy-exchange__about .page-player-community-game-strategy-exchange__text {
    margin-bottom: 50px;
}

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

.page-player-community-game-strategy-exchange__feature-item {
    background-color: #2A2F3A; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-player-community-game-strategy-exchange__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3A404C;
}

.page-player-community-game-strategy-exchange__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-player-community-game-strategy-exchange__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-player-community-game-strategy-exchange__feature-description {
    font-size: 1em;
    color: #B0B0B0;
}

.page-player-community-game-strategy-exchange__strategies .page-player-community-game-strategy-exchange__text {
    margin-bottom: 50px;
}

.page-player-community-game-strategy-exchange__strategy-category {
    background-color: #2A2F3A;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-player-community-game-strategy-exchange__strategy-category:last-of-type {
    margin-bottom: 0;
}

.page-player-community-game-strategy-exchange__category-image {
    width: 150px;
    height: auto;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.page-player-community-game-strategy-exchange__category-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-player-community-game-strategy-exchange__category-description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 25px;
    max-width: 900px;
}

.page-player-community-game-strategy-exchange__strategy-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 700px;
    width: 100%;
}

.page-player-community-game-strategy-exchange__strategy-category ul li {
    background-color: #3A404C;
    color: #F0F0F0;
    padding: 12px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 1em;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-player-community-game-strategy-exchange__strategy-category ul li strong {
    color: #FFD700;
}

.page-player-community-game-strategy-exchange__join-community {
    text-align: center;
}

.page-player-community-game-strategy-exchange__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 50px auto;
    max-width: 800px;
    text-align: left;
}

.page-player-community-game-strategy-exchange__steps-list li {
    background-color: #2A2F3A;
    color: #F0F0F0;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1em;
    border-left: 6px solid #FFD700;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-player-community-game-strategy-exchange__steps-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

.page-player-community-game-strategy-exchange__steps-list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-player-community-game-strategy-exchange__steps-list li a:hover {
    text-decoration: underline;
}

.page-player-community-game-strategy-exchange__community-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-player-community-game-strategy-exchange__expert-tips {
    text-align: center;
}

.page-player-community-game-strategy-exchange__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 50px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.page-player-community-game-strategy-exchange__tips-list li {
    background-color: #2A2F3A;
    color: #F0F0F0;
    padding: 25px;
    border-radius: 10px;
    font-size: 1.1em;
    text-align: left;
    border: 1px solid #FFD700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-player-community-game-strategy-exchange__tips-list li:hover {
    background-color: #3A404C;
}

.page-player-community-game-strategy-exchange__tips-list li strong {
    color: #FFD700;
    font-size: 1.2em;
    display: block;
    margin-bottom: 10px;
}

.page-player-community-game-strategy-exchange__tips-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-player-community-game-strategy-exchange__cta {
    background-color: #1A202C;
    padding: 80px 20px;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-player-community-game-strategy-exchange__cta-content {
    max-width: 900px;
}

.page-player-community-game-strategy-exchange__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-player-community-game-strategy-exchange__cta-description {
    font-size: 1.2em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-player-community-game-strategy-exchange__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-player-community-game-strategy-exchange__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-player-community-game-strategy-exchange__cta-button:hover {
    background-color: #E0B800;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.6);
}

.page-player-community-game-strategy-exchange__cta-button--secondary {
    background-color: #3A404C; /* Darker background for secondary button */
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-player-community-game-strategy-exchange__cta-button--secondary:hover {
    background-color: #4A505C;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-player-community-game-strategy-exchange__hero-title {
        font-size: 3em;
    }
    .page-player-community-game-strategy-exchange__section-title {
        font-size: 2.5em;
    }
    .page-player-community-game-strategy-exchange__category-title {
        font-size: 2em;
    }
    .page-player-community-game-strategy-exchange__cta-title {
        font-size: 2.5em;
    }
    .page-player-community-game-strategy-exchange__tips-list {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-player-community-game-strategy-exchange__hero {
        padding: 60px 15px;
    }
    .page-player-community-game-strategy-exchange__hero-title {
        font-size: 2.5em;
    }
    .page-player-community-game-strategy-exchange__hero-subtitle {
        font-size: 1.2em;
    }
    .page-player-community-game-strategy-exchange__section-title {
        font-size: 2em;
    }
    .page-player-community-game-strategy-exchange__category-title {
        font-size: 1.8em;
    }
    .page-player-community-game-strategy-exchange__cta-title {
        font-size: 2em;
    }
    .page-player-community-game-strategy-exchange__features {
        grid-template-columns: 1fr;
    }
    .page-player-community-game-strategy-exchange__strategy-category {
        padding: 30px;
    }
    .page-player-community-game-strategy-exchange__steps-list,
    .page-player-community-game-strategy-exchange__tips-list {
        margin-left: 0;
        margin-right: 0;
    }
    .page-player-community-game-strategy-exchange__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-player-community-game-strategy-exchange__cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-player-community-game-strategy-exchange__hero-title {
        font-size: 2em;
    }
    .page-player-community-game-strategy-exchange__hero-subtitle {
        font-size: 1em;
    }
    .page-player-community-game-strategy-exchange__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-player-community-game-strategy-exchange__section-title {
        font-size: 1.8em;
    }
    .page-player-community-game-strategy-exchange__text,
    .page-player-community-game-strategy-exchange__feature-description,
    .page-player-community-game-strategy-exchange__category-description,
    .page-player-community-game-strategy-exchange__tips-list li,
    .page-player-community-game-strategy-exchange__cta-description {
        font-size: 0.95em;
    }
    .page-player-community-game-strategy-exchange__feature-title {
        font-size: 1.5em;
    }
    .page-player-community-game-strategy-exchange__category-title {
        font-size: 1.5em;
    }
    .page-player-community-game-strategy-exchange__steps-list li {
        font-size: 1em;
    }
    .page-player-community-game-strategy-exchange__steps-list li strong {
        font-size: 1.1em;
    }
    .page-player-community-game-strategy-exchange__cta-title {
        font-size: 1.8em;
    }
    .page-player-community-game-strategy-exchange__cta-button {
        font-size: 1.1em;
    }
}