.vip-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: -50px;
}

.vip-notice {
    background: rgba(25, 25, 25, 0.7);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-notice ol {
    color: #b3b3b3;
    padding-left: 20px;
    line-height: 1.6;
}

.vip-notice li {
    margin-bottom: 10px;
}

.vip-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-plan {
    background: rgba(25, 25, 25, 0.7);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.vip-plan:hover {
    transform: translateY(-5px);
    border-color: #5A6DB3;
}

.vip-plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.vip-plan-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.vip-plan-header span {
    color: #5A6DB3;
    font-size: 1rem;
}

.vip-plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    color: #fff;
}

.vip-plan-price i {
    color: #5A6DB3;
}

.vip-plan-benefits {
    margin-bottom: 30px;
}

.vip-plan-benefits h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.vip-plan-benefits ul {
    list-style: none;
    padding: 0;
}

.vip-plan-benefits li {
    color: #b3b3b3;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.vip-plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5A6DB3;
}

.vip-buy-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: #5A6DB3;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vip-buy-button:hover {
    background: #ff3333;
}

.vip-destaques-heading {
    color: #fff;
    font-size: 2.5rem;
    margin: 60px 0 50px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.vip-destaques-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, rgba(77, 127, 255,0.2) 0%, #5A6DB3 50%, rgba(77, 127, 255,0) 100%);
}

.vip-combat-buffs, .vip-daily-bonus {
    margin-top: 30px;
    padding: 20px;
    background: rgba(25, 25, 25, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(77, 127, 255, 0.3);
}

.vip-combat-buffs h3, .vip-daily-bonus h3 {
    color: #5A6DB3;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.vip-combat-buffs ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.vip-combat-buffs li, .vip-daily-bonus p {
    color: #fff;
    font-weight: 500;
}

.vip-combat-buffs i, .vip-daily-bonus i {
    color: #5A6DB3;
    margin-right: 10px;
}

.vip-combat-buffs li {
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.vip-combat-buffs li i {
    color: #5A6DB3;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.vip-combat-buffs li i.fa-sword {
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .vip-destaques-heading {
        margin: 50px 0 30px;
        font-size: 2rem;
    }
} 