/* Background to match dark theme */
.game-idea {
    background-color: var(--body-color);
    color: var(--title-color);
    text-align: center;
    padding: 3rem 0;
}

#game-idea-container {
    max-width: 1400px;
}

/* Centered container with a professional border */
.game-idea__box {
    background-color: var(--container-color);
    border: 2px solid var(--text-color-light);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

/* Game idea section */
.game-idea__section {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-color-light);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    min-height: 120px;
}

/* Static spacing so the box doesn’t resize */
.game-idea__section p {
    margin-top: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icon styling */
.game-idea__section i {
    color: var(--first-color);
    font-size: 1.5rem;
}

.section-title {
    font-size: 1.75rem;
}

/* Generate Button */
.game-idea__button {
    position: relative;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: bold;
    border: 2px solid hsla(207, 75%, 65%, 0.9); /* Adjusted border color to match --first-color */
    background: transparent;
    color: var(--title-color);
    width: 100%;
    height: 80px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

/* Hover Effect: Fill with first color */
.game-idea__button:hover {
    background: var(--first-color);
    color: #fff;
    border-color: var(--first-color); /* Keeps the border matching */
}

/* Active Effect: Slight Press Animation */
.game-idea__button:active {
    transform: scale(0.96);
}

.lock-icon {
    cursor:pointer;
    margin-left:10px;
    font-size: 1rem;
    color: var(--text-color-light);
    transition: color 0.3s;
}

.lock-icon:hover {
    color: var(--first-color);
}
