.meso-btn {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin-right: 10px;
}

.kakao {
    background: #FEE500;
    color: #000;
}

.discord {
    background: #5865F2;
    color: #fff;
}

.meso-price-wrap {
    background: #262626;
    padding: 40px;
    border-radius: 30px;
    margin: 30px 0;
    color: #fff;
}

.meso-price-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meso-card {
    flex: 1;
    min-width: 250px;
    background: #f1f1f1;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    color: #222;
    position: relative;
}

.meso-highlight {
    background: #f7e4dc;
}

.meso-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff5a1f;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
}

.meso-card h3{
    font-size: 1.2rem;
    color: #666;
}

.meso-price {
    line-height: 1;
    font-size: 3rem;
    font-weight: bold;
    margin: 20px 0;
    color: #ff5a1f;
}

.meso-old-price {
    text-decoration: line-through;
    color: #666;
}

.meso-bottom {
    margin-top: 30px;
    background: #d8f0d9;
    padding: 20px;
    border-radius: 18px;
    color: #008000;
    font-size: 1.2rem;
    text-align: center;
}

.meso-danger {
    color: red !important;
    font-weight: bold !important;
}

.meso-option{
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.meso-server-wrap {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.meso-server-box {
    flex: 1;
    min-width: 340px;
    background: #30302E;
    padding: 36px;
    border-radius: 24px;
    color: #fff;
}

.server-title-row,
.ticker-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.server-unit {
    opacity: .7;
    font-size: 14px;
}

.server-item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.server-item strong {
    text-align: right;
}

.server-main strong {
    color: #38a1ff;
}

.ticker-head h2,
.server-title-row h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.live-badge {
    background: #ffd5cb;
    color: #ff3d00;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
}

.meso-ticker {
    height: 348px;
    overflow: hidden;
    position: relative;
}

.ticker-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    box-sizing: border-box;
}

.ticker-item strong {
    display: block;
    margin-bottom: 6px;
}

.ticker-item p {
    margin: 0;
    opacity: .7;
}

.ticker-item span {
    opacity: .6;
    white-space: nowrap;
}

.server-caption {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: black;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 20px;
    justify-content: center;
    align-items: center;
    color: #858585;
    font-weight: bold;
}

.bullet::before {
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}

.planet .bullet::before {
    background-color: #1886E5;
}

.land .bullet::before {
    background-color: #F15A25;
}

.artale .bullet::before {
    background-color: #00730C;
}

.rona .bullet::before {
    background-color: #A537FF;
}

.black{
    color: black;
}


@media all and (max-width:767px) {
    .meso-price-wrap{
        padding: 20px;
    }

    .meso-price{
        font-size: 2.5rem;
    }

    .meso-card{
        padding: 40px 20px;
    }

    .meso-bottom{
        font-size: 1rem;
    }

    .server-unit{
        display: none;
    }

    .live-badge{
        display: none;
    }
    
    .server-title-row, .ticker-head{
        display: block;
        text-align: center;
    }

    .server-item{
        grid-template-columns: 1fr 1fr 16.666%;
        white-space: nowrap;
        font-size: .9rem;
    }

    .server-caption{
        font-size: .9rem;
        text-align: center;
        grid-template-columns: 1fr;
    }
    
}

/* Tablet (가로폭 768px 이상, 1023px 이하) */
@media all and (min-width:768px) and (max-width:1023px) {}

/* PC Desktop (가로폭 1024 이상) */
@media all and (min-width:1024px) {}