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

body{
font-family:Arial,sans-serif;
background:#111;
color:white;
}

.header{
height:85px;
background:rgba(0,0,0,.92);
display:flex;
align-items:center;
justify-content:space-between;
padding:0 45px;
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
border-bottom:1px solid #222;
}

.logo img{
height:55px;
display:block;
}

.menu{
display:flex;
gap:40px;
}

.menu a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:17px;
}

.menu a:hover{
color:#ffcc66;
}

.download{
border:1px solid #777;
padding:15px 32px;
color:white;
text-decoration:none;
font-weight:bold;
}

.download:hover{
background:#d6a86b;
color:black;
}

/* 메인 배너 */
.hero{
height:700px;
background:url("22222.png");
background-size:cover;
background-position:center top;
margin-top:85px;
margin-bottom:0;
}

/* 카드 영역 */
.section{
padding:35px 20px 70px;
background:#f3f3f3;
color:#111;
text-align:center;
}

.section h2{
font-size:42px;
margin-bottom:45px;
color:#e6c989;
}

.cards{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.card{
width:280px;
background:white;
border:1px solid #ddd;
overflow:hidden;
transition:.2s;
border-radius:10px;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.card a{
display:block;
text-decoration:none;
color:#111;
}

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

.card-content{
padding:25px;
text-align:center;
}

.card-content h3{
font-size:28px;
margin-bottom:18px;
color:#18244a;
}

.card-content p{
display:inline-block;
color:#333;
font-size:15px;
border:1px solid #c9a46a;
padding:8px 22px;
border-radius:30px;
}

/* 텔레그램 */
.telegram{
position:fixed;
right:25px;
bottom:25px;
background:#444;
width:130px;
height:140px;
display:flex;
align-items:center;
justify-content:center;
border-radius:14px;
font-size:18px;
font-weight:bold;
line-height:1.5;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.5);
z-index:999;
}

/* 공지 */
.notice-top{
height:250px;
background:
linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.7)),
url("22222.png");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
font-size:52px;
font-weight:bold;
margin-top:85px;
}

.notice-wrap{
width:95%;
max-width:1200px;
margin:50px auto;
}

.notice-table{
width:100%;
border-collapse:collapse;
background:#1a1a1a;
}

.notice-table th{
background:#222;
padding:18px;
border-bottom:1px solid #444;
font-size:18px;
}

.notice-table td{
padding:22px;
border-bottom:1px solid #333;
font-size:17px;
}

.notice-table tr:hover{
background:#252525;
}

.notice-table a{
color:white;
text-decoration:none;
font-weight:bold;
}

.notice-table a:hover,
.notice-title a{
color:#ffcc66;
}

.home-btn,
.back-btn{
display:inline-block;
margin-top:30px;
padding:14px 30px;
background:#d6a86b;
color:black;
text-decoration:none;
font-weight:bold;
}

.view-wrap{
width:95%;
max-width:1200px;
margin:60px auto;
background:#1a1a1a;
border:1px solid #333;
}

.view-title{
padding:30px;
font-size:34px;
font-weight:bold;
border-bottom:1px solid #333;
color:#ffcc66;
}

.view-info{
padding:20px 30px;
border-bottom:1px solid #333;
color:#aaa;
font-size:15px;
}

.view-content{
padding:50px 30px;
line-height:2;
font-size:18px;
min-height:400px;
}

/* 모바일 */
@media screen and (max-width:1000px){

.header{
flex-direction:column;
height:auto;
padding:20px;
gap:20px;
position:relative;
}

.menu{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.menu a{
font-size:14px;
}

.download{
padding:10px 20px;
font-size:14px;
}

.hero{
height:520px;
margin-top:0;
}

.section{
padding:30px 15px 60px;
}

.notice-top{
font-size:34px;
text-align:center;
padding:20px;
margin-top:0;
}

.notice-table th,
.notice-table td{
font-size:14px;
padding:14px;
}

.view-title{
font-size:24px;
}

.view-content{
font-size:15px;
padding:30px 20px;
}

.telegram{
display:none;
}

}
.telegram{
text-decoration:none;
color:white;
}

.copyright{
width:100%;
max-width:1200px;
margin:20px auto 50px;
text-align:center;
font-size:14px;
color:#999;
line-height:1.8;
padding:0 20px;
}