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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f7fb;
    color: #333;
}

/* COMMON */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* HEADER */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

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

.logo {
    width: 80px;
}

.title h1 {
    font-size: 22px;
    color: #b00000;
}

.title p {
    font-size: 15px;
    font-weight: 600;
}

/* MAIN CONTENT */
.main-content {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.info, .notice {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info {
    flex: 2;
}

.notice {
    flex: 1;
}

h2 {
    margin-bottom: 15px;
    color: #222;
}

/* NOTICE LIST */
.notice ul {
    list-style: none;
}

.notice li {
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.notice a {
    text-decoration: none;
    color: #0066cc;
}

/* UPDATE NOTE */
.update-note {
    background: linear-gradient(135deg, #00c200, #0402fa);
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.update-note h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.update-note p {
    font-size: 16px;
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-content {
        flex-direction: column;
    }
}


.notice li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice i {
    color: #0066cc;
    cursor: pointer;
}




.download-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #0066cc;
}

