* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.7;
}

.container{
    width:100%;
    max-width:980px;
    margin:0 auto;
    padding:50px 24px;
}

.header{
    border-bottom:1px solid #222;
    padding-bottom:30px;
    margin-bottom:40px;
}

.logo{
    font-size:34px;
    font-weight:bold;
    letter-spacing:-1.5px;
    margin-bottom:12px;
}

.header h1{
    font-size:42px;
    letter-spacing:-1.5px;
    margin-bottom:10px;
}

.header p{
    color:#999;
}

.card{
    background:#080808;
    border:1px solid #222;
    border-radius:18px;
    padding:40px;
}

section{
    margin-bottom:34px;
}

h2{
    font-size:24px;
    margin-bottom:14px;
    letter-spacing:-0.5px;
}

p{
    color:#cfcfcf;
    margin-bottom:14px;
}

ul{
    margin-left:22px;
    color:#cfcfcf;
    margin-top:10px;
}

li{
    margin-bottom:8px;
}

.notice{
    background:#000;
    border:1px solid #333;
    border-radius:14px;
    padding:20px;
    margin-bottom:35px;
    color:#ddd;
}

.footer{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid #222;
    color:#888;
    font-size:14px;
}

a{
    color:#fff;
}

@media(max-width:700px){
    .card{
        padding:26px;
    }

    .header h1{
        font-size:32px;
    }
}
