.membership-tabs {
    border-bottom: 2px solid #f0f0f0;
}

.membership-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    color: #777;
    font-weight: 600;
    padding: 12px 20px;
}

.membership-tabs .nav-link.free.active {
    border-color: #10B981;
    color: #10B981;
    background-color: transparent;
}

.membership-tab-content {
    padding: 30px 0;
}

.membership-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background-color: #ffffff;
    transition: all 0.3s ease;
}
    
.membership-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.membership-header.free {
    background-color: #10B981;
}

.membership-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.membership-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600;
}

.membership-badge i {
    margin-right: 5px;
    font-size: 12px;
}

.basic-badge {
    background-color: rgba(255, 255, 255, 0.15);
}

.membership-price {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.membership-body {
    padding: 30px;
}

.membership-benefits {
    list-style: none;
    padding-left: 0;
}

.benefits-item {
    width: 196px;
    border-radius: 8px;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.benefits-item .icon.free {
    color: #10B981;
}

.benefits-text {
    color: #666;
    font-size: 0.95rem;
    margin-top: 5px;
}

.membership-benefits li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #f0f0f0;
}

.membership-benefits li:last-child {
    border-bottom: none;
}

.membership-benefits li i {
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.membership-benefits li i.free {
    color: #10B981;
}

.card-header-free {
    font-size: 1.2rem;
    color: #10B981;
    border-bottom: 2px solid #10B981;
    display: inline-block;
    padding-bottom: 5px;
}

.membership-comparison th, .membership-comparison td {
    text-align: center;
    vertical-align: middle;
}

.membership-comparison th:first-child, .membership-comparison td:first-child {
    text-align: left;
}

.membership-action .free {
    background-color: #10B981;
    border-color: #10B981;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-item {
    border-radius: 0.375rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.subscription-success {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

.close-success-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .benefits-item {
        width: 160px;
    }
}

.price-breakdown {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background-color: #f8f9fa;
}

.payment-methods .form-check {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.terms-agreement {
    border: 1px solid #dee2e6;
}

    
.terms-links a:hover {
    text-decoration: underline !important;
}

.card-header {
    border-bottom: 1px solid #dee2e6;
}

.pricing-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.error-message {
    color: var(--primary);
    font-size: 12px;
    margin-top: 5px;
}
input.error {
    border-color: var(--primary) !important;
}

.success-icon, .pending-icon, .info-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.table-borderless td {
    border: none;
    padding: 0.5rem 0;
}

.alert {
    border-radius: 8px;
}

.badge {
    font-size: 0.875rem;
}

.fanclub-page-header {
    height: 140px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('/images/bg-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fanclub-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.fanclub-animated-bg {
    animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.95;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.002);
    }
}

.fanclub-header-wrapper {
    height: 100%;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.fanclub-logo-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.fanclub-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fanclub-logo-placeholder {
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.fanclub-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.fanclub-description {
    font-size: 1rem;
    line-height: 1.4;
    color: #6c757d;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
    .fanclub-page-header {
        height: 120px;
    }
    
    .fanclub-animated-bg {
        animation: breathe 8s ease-in-out infinite;
    }
    
    .fanclub-header-wrapper {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        max-width: 100%;
    }
    
    .fanclub-logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        margin-right: 0 !important;
    }
    
    .fanclub-logo-placeholder {
        font-size: 20px;
    }
    
    .fanclub-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .fanclub-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fanclub-animated-bg {
        animation: none;
    }
}


.step-number .badge {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.card {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
