.hero-section {
    background: linear-gradient(135deg, #464106 0%, #2b2601 100%);
    text-align: center;
    color: #ffffff;
    padding: 100px 20px;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ffc1070d;
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
}

.hero-section .container {
    max-width: 900px;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-section h1 span {
    color: #ffc107; 
}

.hero-section p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.price-link {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffc107;
    padding-bottom: 2px;
    font-weight: 500;
}

.badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.95rem;
    color: #a1a1aa;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 8px;
    width: 8px;
    background-color: #ffc107;
    border-radius: 50%;
}

.server-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.pricing-card {
	padding: 30px;
    width: 100%;
}

.current-price {
    font-size: 40px;
    
}

@media (max-width: 1400px) {
    .server-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 850px) {
    .server-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 650px) {
    .server-grid {
        grid-template-columns: 1fr;
    }
}