.renewal-wrapper {
    position: relative;
    height: calc(100vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}

.renewal-content-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/files/imgs/gigaflops_background.png');
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 0.3;
}

.renewal-modal {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 100%;
    background-color: rgba(31, 41, 55, 0.85);
    border: 1px solid #374151;
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    animation: fadeInModal 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInModal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.renewal-logo {
    height: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.renewal-modal h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.renewal-modal p {
    font-size: 1rem;
    color: var(--subText-color);
    line-height: 1.7;
}

.renewal-divider {
    height: 1px;
    width: 80%;
    background-color: #374151;
    margin: 2rem auto;
}

.renewal-contact {
    font-size: 0.9rem !important;
}

.renewal-contact a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}

.renewal-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .renewal-modal {
        padding: 2rem;
    }
    .renewal-modal h2 {
        font-size: 1.5rem;
    }
    .renewal-modal p {
        font-size: 0.95rem;
    }
}