/* Kick User Profile Page - Enhanced Styles */
/* Modern dark theme design - Enhanced 2024 */

/* Main container */
.kick-profile-override {
    width: 100%;
    max-width: 1140px;
    margin: 35px auto;
    padding: 0 24px;
    animation: pageEnter 0.5s ease-out;
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.dark-theme {
    background-color: #0f0f11;
    color: #e5e5ea;
}

/* Profile Header - Enhanced */
.kick-profile-override .profile-header {
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, rgba(38, 38, 44, 0.98) 0%, rgba(24, 24, 28, 0.99) 100%);
    padding: 34px;
    border-radius: 24px;
    margin-bottom: 32px;
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    overflow: hidden;
}

.kick-profile-override .profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kick-green) 0%, #45E000 30%, rgba(83, 252, 24, 0.2) 70%, transparent 100%);
}

.kick-profile-override .profile-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(83, 252, 24, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.kick-profile-override .profile-pic-container {
    margin-right: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.kick-profile-override .profile-pic-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(35, 35, 40, 1) 0%, rgba(83, 252, 24, 0.12) 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4em;
    font-weight: 800;
    color: var(--kick-green);
    border: 3px solid rgba(83, 252, 24, 0.45);
    box-shadow:
        0 10px 30px rgba(83, 252, 24, 0.2),
        0 0 0 5px rgba(83, 252, 24, 0.08),
        inset 0 2px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 20px rgba(83, 252, 24, 0.4);
}

.kick-profile-override .profile-pic-placeholder:hover {
    transform: scale(1.04) rotate(1deg);
    box-shadow:
        0 14px 35px rgba(83, 252, 24, 0.28),
        0 0 0 6px rgba(83, 252, 24, 0.12);
    border-color: rgba(83, 252, 24, 0.6);
}

.kick-profile-override .profile-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.kick-profile-override .profile-info .username {
    margin: 0 0 14px 0;
    font-size: 2.2em;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.kick-profile-override .profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kick-profile-override .profile-actions .btn {
    margin-right: 0;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.kick-profile-override .profile-actions .btn i {
    margin-right: 0;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.kick-profile-override .profile-actions .btn:hover i {
    transform: translateX(2px);
}

.kick-profile-override .profile-actions .btn-primary {
    background: linear-gradient(135deg, var(--kick-green) 0%, #45E000 50%, #3DD000 100%);
    color: #0A0A0A;
    border: none;
    box-shadow: 0 6px 20px rgba(83, 252, 24, 0.35);
}

.kick-profile-override .profile-actions .btn-primary::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: left 0.5s ease;
}

.kick-profile-override .profile-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(83, 252, 24, 0.45),
        0 0 0 1px rgba(83, 252, 24, 0.4);
}

.kick-profile-override .profile-actions .btn-primary:hover::before {
    left: 100%;
}

.kick-profile-override .profile-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.kick-profile-override .profile-actions .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Stats Sections - Enhanced */
.kick-profile-override .stats-section {
    background: linear-gradient(165deg, rgba(38, 38, 44, 0.98) 0%, rgba(24, 24, 28, 0.99) 100%);
    padding: 28px;
    border-radius: 22px;
    margin-bottom: 24px;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.kick-profile-override .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.kick-profile-override .stats-section:hover {
    border-color: rgba(83, 252, 24, 0.15);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(83, 252, 24, 0.08) inset;
    transform: translateY(-2px);
}

/* Section Title - Enhanced */
.kick-profile-override .section-title {
    color: var(--kick-text);
    font-size: 1.35em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    position: relative;
}

.kick-profile-override .section-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--kick-green), transparent);
}

.kick-profile-override .section-title-bg {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.18) 0%, rgba(83, 252, 24, 0.06) 100%);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    margin-left: 14px;
    border: 1px solid rgba(83, 252, 24, 0.18);
    font-size: 0.85em;
    font-weight: 600;
}

.kick-profile-override .section-title i {
    margin-right: 0;
    color: var(--kick-green);
    font-size: 1.15em;
    filter: drop-shadow(0 0 8px rgba(83, 252, 24, 0.5));
}

/* Table Responsive Container */
.kick-profile-override .table-responsive {
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* Stats Table - Enhanced */
.kick-profile-override .stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    color: #c8c8cd;
}

.kick-profile-override .stats-table th,
.kick-profile-override .stats-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.kick-profile-override .stats-table thead th {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    color: var(--kick-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.8px;
}

.kick-profile-override .stats-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.kick-profile-override .stats-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.kick-profile-override .stats-table tbody tr {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.kick-profile-override .stats-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(83, 252, 24, 0.06) 0%, rgba(83, 252, 24, 0.02) 100%);
}

.kick-profile-override .stats-table tbody tr:last-child td {
    border-bottom: none;
}

.kick-profile-override .stats-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.kick-profile-override .stats-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

.kick-profile-override .stats-table a {
    color: var(--kick-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.kick-profile-override .stats-table a:hover {
    color: #7FFF50;
    text-shadow: 0 0 12px rgba(83, 252, 24, 0.4);
}

.kick-profile-override .no-data-message {
    color: #6B6B70;
    text-align: center;
    padding: 50px 24px;
    font-size: 15px;
    font-style: italic;
}

/* Ban Status Styles - Enhanced */
.ban-status {
    padding: 7px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.ban-status.unbanned {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.16) 0%, rgba(83, 252, 24, 0.08) 100%);
    color: var(--kick-green);
    border: 1px solid rgba(83, 252, 24, 0.25);
    box-shadow: 0 2px 8px rgba(83, 252, 24, 0.12);
}

.ban-status.permanent {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.2) 0%, rgba(255, 51, 51, 0.1) 100%);
    color: #FF4444;
    border: 1px solid rgba(255, 51, 51, 0.25);
    box-shadow: 0 2px 8px rgba(255, 51, 51, 0.15);
}

.ban-status.active {
    background: linear-gradient(135deg, rgba(255, 85, 85, 0.16) 0%, rgba(255, 85, 85, 0.08) 100%);
    color: #FF6666;
    border: 1px solid rgba(255, 85, 85, 0.25);
    box-shadow: 0 2px 8px rgba(255, 85, 85, 0.12);
}

.ban-status.expired {
    background: linear-gradient(135deg, rgba(255, 166, 0, 0.16) 0%, rgba(255, 166, 0, 0.08) 100%);
    color: #FFB830;
    border: 1px solid rgba(255, 166, 0, 0.25);
    box-shadow: 0 2px 8px rgba(255, 166, 0, 0.12);
}

/* Reward row left border styling handled by inline styles */

/* PRO Banner - Enhanced */
.pro-banner-container {
    background: linear-gradient(145deg, rgba(145, 71, 255, 0.14) 0%, rgba(100, 50, 200, 0.06) 100%);
    border: 1px solid rgba(145, 71, 255, 0.25);
    border-radius: 18px;
    padding: 22px 28px;
    margin-bottom: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(145, 71, 255, 0.1);
}

.pro-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9147FF 0%, #B366FF 40%, rgba(145, 71, 255, 0.2) 100%);
}

.pro-banner-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 71, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pro-banner-content {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #C5C5CA;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.pro-banner-content i {
    color: #B366FF;
    font-size: 1.4em;
    filter: drop-shadow(0 0 10px rgba(145, 71, 255, 0.6));
}

.pro-banner-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
}

.pro-banner-actions .btn-subscribe {
    background: linear-gradient(135deg, #9147FF 0%, #7B2FE8 50%, #6A28D9 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(145, 71, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.pro-banner-actions .btn-subscribe::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: left 0.5s ease;
}

.pro-banner-actions .btn-subscribe:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(145, 71, 255, 0.45),
        0 0 0 1px rgba(145, 71, 255, 0.4);
}

.pro-banner-actions .btn-subscribe:hover::before {
    left: 100%;
}

.pro-banner-actions .pro-about-link {
    color: #9A9AA0;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.pro-banner-actions .pro-about-link:hover {
    color: #B366FF;
    text-shadow: 0 0 10px rgba(145, 71, 255, 0.3);
}

/* PRO Feature Locked Overlay - Enhanced */
.pro-feature-locked-overlay {
    position: relative;
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(145deg, rgba(145, 71, 255, 0.1) 0%, rgba(0, 0, 0, 0.35) 100%);
    border-radius: 18px;
    margin-top: 24px;
    border: 1px dashed rgba(145, 71, 255, 0.35);
}

.pro-feature-locked-overlay .fa-lock {
    font-size: 3rem;
    color: #B366FF;
    margin-bottom: 22px;
    filter: drop-shadow(0 0 15px rgba(145, 71, 255, 0.6));
    animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pro-feature-locked-overlay p {
    font-size: 1rem;
    color: #C5C5CA;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* See All with PRO Link - Enhanced */
.see-all-pro {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.12) 0%, rgba(83, 252, 24, 0.04) 100%);
    border-top: 1px solid rgba(83, 252, 24, 0.18);
    text-align: center;
    padding: 16px;
    margin: -28px -28px -28px -28px;
    margin-top: 24px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    transition: all 0.3s ease;
}

.see-all-pro:hover {
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.18) 0%, rgba(83, 252, 24, 0.08) 100%);
}

.see-all-pro a {
    color: var(--kick-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.see-all-pro a:hover {
    color: #7FFF50;
    text-shadow: 0 0 12px rgba(83, 252, 24, 0.4);
}

.see-all-pro a:hover i {
    transform: translateX(5px);
}

.see-all-pro i {
    margin-left: 0;
    font-size: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Pagination Controls - Enhanced */
.pagination-controls-container {
    margin-top: 24px;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.18) 100%);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pagination-controls-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pagination-buttons-row {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.btn-pagination {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: #9A9AA0;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-pagination:hover:not(.disabled) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--kick-text);
    transform: translateY(-1px);
}

.btn-pagination.active {
    background: linear-gradient(135deg, var(--kick-green) 0%, #45E000 50%, #3DD000 100%);
    color: #0A0A0A;
    border: none;
    box-shadow: 0 6px 18px rgba(83, 252, 24, 0.35);
}

.btn-pagination.active:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(83, 252, 24, 0.45);
}

.btn-pagination.disabled {
    background: rgba(255, 255, 255, 0.03);
    color: #454550;
    border-color: rgba(255, 255, 255, 0.03);
    cursor: not-allowed;
    opacity: 1;
}

.btn-pagination i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.btn-pagination:hover:not(.disabled) i {
    transform: translateX(2px);
}

.pagination-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7A7A80;
    font-size: 13px;
}

.page-info {
    font-weight: 600;
    color: #9A9AA0;
}

.page-size-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-size-selector label {
    color: #6B6B70;
    font-size: 13px;
}

.page-size-selector select {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: var(--kick-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.page-size-selector select:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.page-size-selector select:focus {
    outline: none;
    border-color: var(--kick-green);
    box-shadow: 0 0 0 4px rgba(83, 252, 24, 0.15);
}

/* Modal Styles for Kick Profile */
#user-alerts-modal .modal-content {
    background: linear-gradient(165deg, rgba(38, 38, 44, 0.98) 0%, rgba(24, 24, 28, 0.99) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

#user-alerts-modal h2 {
    color: var(--kick-text);
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

#user-alerts-modal h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--kick-green), transparent);
}

.alert-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 100%);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.alert-option:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
    border-color: rgba(83, 252, 24, 0.15);
}

.alert-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--kick-green);
    cursor: pointer;
}

.alert-option label {
    color: #C5C5CA;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

#user-alerts-form button[type="submit"] {
    background: linear-gradient(135deg, var(--kick-green) 0%, #45E000 50%, #3DD000 100%);
    color: #0A0A0A;
    padding: 14px 28px;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 18px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#user-alerts-form button[type="submit"]::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: left 0.5s ease;
}

#user-alerts-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(83, 252, 24, 0.4);
}

#user-alerts-form button[type="submit"]:hover::before {
    left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kick-profile-override {
        padding: 0 16px;
        margin: 24px auto;
    }

    .kick-profile-override .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
        border-radius: 20px;
    }

    .kick-profile-override .profile-pic-container {
        margin-right: 0;
        margin-bottom: 22px;
    }

    .kick-profile-override .profile-info .username {
        font-size: 1.7em;
    }

    .kick-profile-override .profile-actions {
        justify-content: center;
    }

    .kick-profile-override .stats-section {
        padding: 22px;
        border-radius: 18px;
    }

    .see-all-pro {
        margin: -22px -22px -22px -22px;
        margin-top: 22px;
        border-bottom-left-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .pro-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 22px;
        border-radius: 16px;
    }

    .pro-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .pro-banner-actions .btn-subscribe {
        width: 100%;
        justify-content: center;
    }

    .pagination-info-row {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .kick-profile-override .profile-pic-placeholder {
        width: 80px;
        height: 80px;
        font-size: 1.9em;
        border-radius: 16px;
    }

    .kick-profile-override .section-title {
        font-size: 1.15em;
        flex-wrap: wrap;
    }

    .kick-profile-override .section-title-bg {
        margin-left: 0;
        margin-top: 10px;
    }

    .kick-profile-override .stats-table th,
    .kick-profile-override .stats-table td {
        padding: 14px 16px;
        font-size: 13px;
    }

    .btn-pagination {
        padding: 10px 16px;
        font-size: 12px;
    }
}
