body {
    background: #0f172a;
    color: #eee;
}
.direction-container-title {
    background: #040b1b;
    border: 1px solid #2a3458;
    border-radius: 4px;
    margin: 40px 40px 0px 40px;
    padding: 15px;
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
.direction-container { 
    display: flex; gap: 16px; 
    background: #1a1f3a;
    border: 1px solid #2a3458;
    border-radius: 4px;
    margin: 15px 40px 40px 40px;
    padding: 15px;
}
.arrow-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 4px; 
    flex: 1;
    background: #111735;
    border: 1px solid #2a3458;
    border-radius: 4px;
    padding: 0px 20px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}
.arrow-item i { 
    display: flex;
    background: #040b1b;
    width: 200px; 
    height : 200px;
    border: 1px solid #2a3458;
    border-radius: 4px;
    font-size: 110px; 
    justify-content: center; /* 가로 중앙 정렬 */
    align-items: center;     /* 세로 중앙 정렬 */
    margin-top: 20px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}
.arrow-item .row_list { 
    border-bottom: 1px solid #2a3458;
    font-size: 12px;
    padding-left: 15px;
}
.arrow-item .row_list:last-child { 
    border-bottom: none;
}
.arrow-item span { 
    width: 100%;
    height: 40px;
    line-height: 40px;
    
}
.arrow-item span.label { 
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #2a3458;
    font-size: 15px; 
    color: #aaa; 
    margin: 0px 20px;
}
.arrow-item span.num { 
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #2a3458;
    font-size: 20px; 
    font-weight: 800;
}
.arrow-item div { font-size: 11px; width: 100%; }
.arrow-item div span:first-child { color: #aaa; }
.container-help {
    line-height: 25px;
    font-size: 13px;
    padding: 25px;
    
}
.help-box {
    justify-content: right; 
    background: #111735;
    border: 1px solid #2a3458;
    border-radius: 4px;
    padding: 15px 0px 15px 25px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
    width: 650px;
    margin-left:25px;
}