*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background: linear-gradient(120deg,#ffdde1,#ee9ca7);
    padding:40px 0;
}
nav{
    background:#f03e3e;
    text-align:center;
    padding:15px;
}

nav a{
    color:rgb(246, 243, 245);
    text-decoration:none;
    margin:0 25px;
    font-weight:bold;
    font-size:18px;
    transition:0.3s;
}

nav a:hover{
    color:yellow;
    transform:scale(1.1);
}
.section{
    width:80%;
    margin:auto;
    background:white;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.25);
}

.section h2{
    background: linear-gradient(45deg,#b30000,#ff6600);
    color:yellow;
    padding:25px;
    text-align:center;
    font-size:28px;
    letter-spacing:1px;
}

.content{
    padding:35px;
}

.sub-title{
    color:#d10068;
    font-size:20px;
    margin:25px 0 15px;
    border-left:6px solid #ffcc00;
    padding-left:12px;
}

.content ul{
    list-style:none;
    margin-bottom:25px;
}

.content ul li{
    background:#fff5f8;
    margin-bottom:10px;
    padding:12px 15px;
    border-radius:12px;
    border-left:5px solid #ff0000;
    transition:0.3s;
    font-weight:600;
}

.content ul li::before{
    content:"🌸 ";
}

.content ul li:hover{
    background:#ffe0eb;
    transform:scale(1.02);
}

.content p{
    line-height:1.8;
    color:#444;
    margin-bottom:15px;
}
.game-list{
    list-style:none;
}

.game-list li{
    background:#fff5f8;
    margin-bottom:10px;
    padding:15px;
    border-radius:12px;
    border-left:5px solid #ff0000;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.game-list li:hover{
    background:#ffe0eb;
    transform:scale(1.02);
}

.game-list img{
    width:600px;      
    margin-top:10px;
    border-radius:12px;
    display:none;
}
.festival-section{
    width:85%;
    margin:40px auto;
    background:#f9f9f9;
    padding:30px;
    border-radius:15px;
}

.festival-title{
    color:#d10068;
    font-size:22px;
    margin-bottom:15px;
    padding-left:15px;
    border-left:6px solid #ffcc00;   /* Thanh vàng bên trái */
}

.festival-section p{
    line-height:1.8;
    margin-bottom:15px;
    color:#444;
    text-align:justify;
}

.festival-images{
    display:flex;
    gap:20px;
    margin-top:15px;
}

.festival-images img{
    width:48%;
    height:220px;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 6px 15px rgba(0,0,0,0.2);
    transition:0.3s;
}

.festival-images img:hover{
    transform:scale(1.03);
}