body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #ffffff;
}

.container {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    padding: 50px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.15);
    max-width: 1000px;
    width: 90%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    height: 160px;
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,198,255,0.35);
}

.logo {
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-height: 100%;
    max-width: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.card:hover .logo img {
    transform: scale(1.1);
}

.card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.card p {
    margin: 4px 0 0 0;
    font-size: 12px;
    opacity: 0.7;
}

.page-notices {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 100;
}

.page-notices .notice {
    font-size: 12px;
    opacity: 0.75;
    margin: 2px 0;
}

@media (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .grid { grid-template-columns: 1fr; }
}