* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

body.dark {
    background-color: #1a1a2e;
    color: #e0e0e0;
}

.h {
    background: #0080ff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark .h {
    background: #0060c0;
}

.b {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.l {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.c {
    display: flex;
    align-items: center;
    gap: 15px;
}

.d {
    position: relative;
}

#s {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#s:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.n {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    overflow: hidden;
    z-index: 100;
}

.dark .n {
    background: #2d3047;
    color: #e0e0e0;
}

.n a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.dark .n a {
    color: #e0e0e0;
}

.n a:hover {
    background: #f0f0f0;
}

.dark .n a:hover {
    background: #3a3d5c;
}

#t {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#t:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.k {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.p {
    font-size: 18px;
    margin-bottom: 20px;
}

.q {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    border-left: 5px solid #0088ff;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dark .q {
    background: linear-gradient(135deg, #2d3047 0%, #0060c0 100%);
    border-left: 5px solid #0088ff;
}

.r {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.dark .r {
    color: #e0e0e0;
}

.u {
    text-align: right;
    font-style: italic;
    color: #666;
}

.dark .u {
    color: #aaa;
}

.v {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 30px;
}

@media (max-width: 1100px) {
    .v {
        grid-template-columns: 1fr;
    }
}

.w {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.dark .w {
    background: #2d3047;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.w:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.w h2 {
    color: #0088ff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
    font-size: 24px;
}

.dark .w h2 {
    color: #0088ff;
    border-bottom: 2px solid #3a3d5c;
}

.x {
    margin-bottom: 25px;
}

.x h3 {
    color: #666;
    margin-bottom: 10px;
    font-size: 18px;
}

.dark .x h3 {
    color: #aaa;
}

.y {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid #0088ff;
}

.dark .y {
    background: #2a3a5a;
    border-left: 4px solid #0088ff;
}

.z {
    font-size: 20px;
    color: #333;
}

.dark .z {
    color: #e0e0e0;
}

.z span {
    font-weight: 700;
    color: #0088ff;
}

.dark .z span {
    color: #0088ff;
}

.footer {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 20px;
    text-align: center;
    color: #666;
    border-top: 1px solid #eaeaea;
}

.dark .footer {
    color: #aaa;
    border-top: 1px solid #3a3d5c;
}

.notice-content {
    font-size: 14px;
    line-height: 1.6;
}

.notice-content p {
    margin-bottom: 10px;
}

.notice-content a {
    color: #0088ff;
    text-decoration: none;
    transition: color 0.3s;
}

.notice-content a:hover {
    color: #0060c0;
    text-decoration: underline;
}

.dark .notice-content a {
    color: #4da6ff;
}

.dark .notice-content a:hover {
    color: #0088ff;
}