* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    min-height: 100vh;
    background-color: #000;
    position: relative;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 340px);
    z-index: 10;
    padding: 40px;
    padding-bottom: 200px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 70%, rgba(255,255,255,0) 100%);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.logo-container {
    flex-shrink: 0;
}

.school-logo {
    height: 160px;
    width: auto;
}

.school-info {
    text-align: center;
    color: #000;
}

.school-name {
    font-family: 'Arial';
    color: #182a8a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.3;
}

.school-slogan {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.1;
    text-align: left;
}

.school-slogan p {
    margin: 3px 0;
}

.banner {
    flex: 1;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, #4169e1 0%, #4169e1 75%, rgba(65,105,225,0.3) 90%, rgba(0,0,0,0.4) 100%);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

main {
    width: fit-content;
    max-height: 100vh;
    overflow-y: auto;
    background-color: #000;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: left;
    color: #fff;
}

.games-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.game-card {
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    width: 280px;
    height: 90px;
}

.game-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.game-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 90px;
    background-color: #222;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    overflow: hidden;
}

.game-info h3 {
    font-size: 13px;
    margin-bottom: 3px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.game-info p {
    font-size: 10px;
    color: #999;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
