/* Reset cơ bản */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Verdana'; /* Font chữ kiểu máy đánh chữ */
}
.site-footer{color: white;}
body {
    background-color: #f3ece0; /* Màu nền kem nhạt */
    background-image: radial-gradient(#d3c5b5 1px, transparent 1px);
    background-size: 20px 20px;
    display: flex;
    justify-content: center;
    padding: 50px;
}

.main-container {
    width: 900px;
    background-color: #4a2c1d; /* Màu nâu đậm bao quanh */
    padding: 15px;
    border: 3px solid #361e13;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.1);
}

/* Banner */
.banner {
    background-color: #8b5a2b;
    height: 120px;
    position: relative;
    border: 2px solid #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner h1 {
    color: #fff;
    font-size: 4em;
    text-shadow: 2px 2px #4a2c1d;
    z-index: 2;
    font-family: Museo Moderno;
}

.banner-lace {
    position: absolute;
    top: 0;
    width: 100%;
    height: 20px;
    background-image: radial-gradient(circle, #fff 5px, transparent 6px);
    background-size: 20px 20px;
    background-repeat: repeat-x;
}

/* Bố cục Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 15px;
}

/* Các hộp nội dung chung */
.intro-box, .faq-box, .social-links, .comms-box {
    background-color: #eaddca;
    border: 2px solid #361e13;
    padding: 10px;
}

/* Left Column */
.intro-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.profile-pic img {
    border: 4px double #4a2c1d;
    width: 80px;
}

.chat-bubble-q {
    background: #d2b48c;
    padding: 5px 10px;
    border-radius: 15px;
    margin-bottom: 5px;
    font-size: 0.8em;
    border: 1px solid #4a2c1d;
}

.chat-bubble-a {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-bottom: 15px;
    border-left: 5px solid #8b5a2b;
}

/* Center Column */
.character-frame {
    background-color: #5d3a24;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    background-image: url('https://www.transparenttextures.com/patterns/pinstriped-suit.png');
}

/* Right Column */
.btn-chocolate {
    display: block;
    background: linear-gradient(#8b5a2b, #4a2c1d);
    color: white;
    text-align: center;
    padding: 8px;
    margin: 5px 0;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #fff;
    font-size: 0.9em;
}

.comms-box {
    margin-top: 15px;
    text-align: center;
}

.rules-list {
    list-style: none;
    text-align: left;
    font-size: 0.8em;
    margin-top: 10px;
}

.rules-list li {
    margin-bottom: 8px;
}

.rules-list span {
    background: #8b5a2b;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
}
