/* Game info container and sections */

.game-info-container {
    font-size: 0.9rem;
    overflow: hidden;
}

.collapsible-section {
    margin-bottom: 10px;
}

.section-header {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    border-radius: 20px;
}

.section-header .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.2s ease;
}

.section-header .arrow::before {
    content: '▶';
    display: inline-block;
}

.section-header .arrow.rotated {
    transform: translateY(-50%) rotate(90deg);
}

.section-content {
    padding: 10px;
}

.section-content.collapsed {
    display: none;
}

/* Effects styling */
.effects-list {
    list-style-type: none;
    padding: 0;
}

.effect-item {
    margin-bottom: 5px;
}

.effect-title {
    cursor: pointer;
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.2);
}

.effect-description {
    padding: 2px 4px;
    font-size: 0.7rem;
}

.effect-description.collapsed {
    display: none;
}

/* Effects grid styling */
.effects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.effect-card {
    width: calc(45%);
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
}

.effect-icon {
    text-align: center;
    margin-bottom: 5px;
}

.effect-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.effect-description {
    padding-top: 5px;
}

.effect-description.collapsed {
    display: none;
}

.effect-card:hover {
    background-color: rgba(0, 0, 0, 0.2);
}