@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@font-face {
    font-family: 'HBIOS-SYS';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2207-01@1.0/HBIOS-SYS.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
html {font-family: 'HBIOS-SYS'; font-size: 16px;letter-spacing: -1px;
word-spacing: -0.2rem;}

body,h1,h2,ol,ul,p{margin:0; padding:0}
body {
    background-color: #000;
    color: #fff;
    margin: 0;
    padding:3rem 0rem;
    background-image: url('https://i.imgur.com/8ZXT8.gif');
    background-repeat: repeat;
}
.wrapper{display: flex;justify-content: center}

aside{width:100px; margin-left:12px}
.container {
    width:736px;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #ff00ff;
}

header {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to right, #ff00ff, #00ffff);
    margin-bottom: 1rem;
}
#welcome img{width:100%}
h1 {
    color: #fff;
    text-shadow: 2px 2px #ff00ff;
    font-size: 2.5em;
    margin: 0;
}

.subtitle {
    color: #00ffff;
    font-size: 1.2em;
    margin-top: 5px;
}

.navigation {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.navigation a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    background-color: #000;
    border: 1px solid #ff00ff;
}

.navigation a:hover {
    background-color: #ff00ff;
    color: #000;
}

section {
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ffff;
}

td{padding: 0.6rem;user-select: none;}
td:hover{background: white; color:black}

h2 {
    color: #00ffff;
    border-bottom: 2px solid #ff00ff;
    padding-bottom: 5px;
}

.blink {
    animation: blink 1s infinite;
    color: #ff00ff;
    text-align: center;
    font-size: 1.2rem;
    margin: 1rem 0;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.anime-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border: 1px solid #00ffff;
    text-align: center;
}

.anime-card h3 {
    color: #ff00ff;
    margin-top: 0;
}

.guestbook {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1rem 0rem;
}

input, textarea {
    width: 60%;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background-color: #000;
    border: 1px solid #ff00ff;
    color: #fff;
}

button {
    background-color: #ff00ff;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #00ffff;
}

footer {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(to right, #ff00ff, #00ffff);
    margin-top: 1rem;
}

footer p {
    margin: 5px 0;
    color: #000;
}

/* 공지사항 스타일 */
.notices-container {
    margin-top: 1rem;
}

.notice-item {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid #00ffff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.notice-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #ff00ff;
    padding-bottom: 5px;
}

.notice-title {
    color: #ff00ff;
    font-weight: bold;
}

.notice-date {
    color: #00ffff;
    font-size: 0.9em;
}

.notice-content {
    color: #fff;
    line-height: 1.6;
}

.notice-form {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    margin-top: 1rem;
    border: 1px solid #ff00ff;
}

.notice-form h3 {
    color: #00ffff;
    margin-top: 0;
}

.notice-form input,
.notice-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #000;
    border: 1px solid #ff00ff;
    color: #fff;
}

.notice-form button {
    background-color: #ff00ff;
    color: #000;
    border: none;
    padding: 10px 1rem;
    cursor: pointer;
}

.notice-form button:hover {
    background-color: #00ffff;
}

.admin-button {
    background-color: #ff00ff;
    color: #000;
    border: none;
    padding: 10px 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.admin-button:hover {
    background-color: #00ffff;
} 