body {
    padding-top: 60px;
}

.content-wrapper {
    flex-grow: 1; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem; 
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 80px;
    letter-spacing: 5px; 
    text-transform: uppercase;
}
.page-title .accent-red {
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%);
    background-size: 200% 200%;
    animation: textGradientFlow 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.subscription-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; 
    justify-content: center;
    margin-bottom: 80px;
}
.subscription-card {
    background-color: none;
    color: #FFFFFF;
    padding: 35px;
    border-radius: 10px;
    max-width: 380px;
    flex: 1 1 300px;
    min-width: 280px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.subscription-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF; 
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscription-card h3 [data-three-icon] {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}
.subscription-card .price {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF; 
    margin-top: 15px;
    margin-bottom: 30px;
}
.subscription-card .features-list {
    border-top: 2px solid transparent;
    position: relative;
    list-style: none;
    padding: 0;
    text-align: left;
    flex-grow: 1; 
}
.subscription-card .features-list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}
.subscription-card .features-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #FFFFFF;
    display: flex;
    align-items: flex-start;
}
.subscription-card .features-list li i {
    color: #CC0000; 
    font-size: 1.1rem;
    margin-right: 15px;
    margin-top: 4px; 
}
.btn-buy {
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 25%, #660000 50%, #8B0000 75%, #CC0000 100%);
    color: #FFFFFF;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
}
.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.btn-buy:hover::before {
    animation: btnShine 0.6s ease;
}
.btn-buy:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 25%, #4D0000 50%, #660000 75%, #990000 100%);
    background-size: 200% 200%;
    animation: gradientFlow1 2.5s ease infinite;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}

.modal-content {
    background-color: #000000;
    border-radius: 10px;
    color: #FFFFFF;
}
.modal-header {
    border-bottom: 2px solid transparent;
    position: relative;
}
.modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}

.modal-title {
    color: #CC0000;
    font-family: 'Cinzel', serif;
}

.profile-redirect-btn {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #CC0000 0%, #8B0000 50%, #660000 100%) !important; 
    border: none !important;      
    color: #ffffff !important;           
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.profile-redirect-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}
.profile-redirect-btn:hover::before {
    animation: btnShine 0.6s ease;
}
.profile-redirect-btn:hover {
    background: linear-gradient(135deg, #990000 0%, #660000 50%, #4D0000 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 0, 0, 0.4);
}
.btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23CC0000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    filter: none !important;
    opacity: 0.85;
    transition: opacity 0.3s;
}
.btn-close:hover {
    opacity: 1;
}
.modal-footer-styled {
    border-top: 2px solid transparent;
    position: relative;
}
.modal-footer-styled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(204, 0, 0, 0) 0%,
        rgba(204, 0, 0, 0.85) 25%,
        rgba(204, 0, 0, 0) 50%,
        rgba(204, 0, 0, 0.85) 75%,
        rgba(204, 0, 0, 0) 100%
    );
    background-size: 200% 100%;
    animation: borderGradientFlow 3s linear infinite;
}

@media (max-width: 768px) {
    .page-title { 
        font-size: 2.5rem; 
        margin-bottom: 40px; 
        padding-top: 50px; 
        letter-spacing: 2px; 
    }
}
