/* board.css */
.board-post {
    margin-bottom: 12px;
    padding: 8px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 6px;
}

.board-title {
    font-size: 15px;
    font-weight: bold;
    color: #ffdd57;
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

/*
 타입별 칼라 추가

 */

/*.board-title.notice  { color:#ff6b00; }  !* 주황 *!*/
.board-title.notice  { color:#ffdd57; }  /* 금색 */
.board-title.event   { color:#3fb9ff; }  /* 파랑 */
.board-title.normal  { color:#e0e0e0; }  /* 기본 회색 */

.board-content {
    margin-top: 4px;
    padding: 8px 0;
    font-size: 14px;
    color: #ddd;
    line-height: 1.4;
}



.game-intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-size: cover;
}

.game-screenshot img {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 16px;
}

.game-intro-text {
    text-align: center;
    color: #fff;
}

.game-title {
    font-size: 2rem;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.game-tagline {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0 0 20px 0;
}

.game-link-button {
    display: inline-block;
    background-color: #04ca04;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.game-link-button:hover {
    background-color: #53ff53;
}

.toast-container {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast-message {
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 12px;
    margin-top: 8px;
    border-radius: 4px;
    opacity: 0;
    animation: fadeInOut 2s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}



