/* Post Tab Modern Styles - Masterclass/Netflix Style */

.post-tab-page {
    background-color: var(--dark-bg, #0b0e11);
    color: #fff;
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Hero Section */
.tab-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.tab-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.video-background-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 14, 17, 0.3) 0%,
        rgba(11, 14, 17, 0.7) 50%,
        rgba(11, 14, 17, 1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 0 60px;
    text-align: center;
}

/* Back Link */
.category-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.category-back-link:hover {
    color: var(--primary-color, #436E67);
    transform: translateX(-5px);
    text-decoration: none;
}

/* Post Badges */
.post-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.post-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(67, 110, 103, 0.2);
    border: 1px solid var(--primary-color, #436E67);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color, #436E67);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge:before {
    content: none !important;
}

.status-badge.purchased {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-badge.free {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-badge.premium {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Hero Text */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 700px;
}

@media (max-width: 768px) {
    .tab-hero {
        margin-bottom: 5px;
    }
}

/* Tab Meta Info */
.tab-meta-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 16px;
    color: var(--primary-color, #436E67);
}

/* Main Content Section */
.tab-content-section {
    padding: 40px 0;
}

/* Sidebar Sticky */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

/* Video Player Card */
.video-player-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Tab Viewer Card */
.tab-viewer-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-viewer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.tab-viewer-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-controls-compact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 50%;
    background: rgba(67, 110, 103, 0.2);
    border: 1px solid var(--primary-color, #436E67);
    color: var(--primary-color, #436E67);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background: var(--primary-color, #436E67);
    color: #fff;
    transform: scale(1.1);
}

.control-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-inline label {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.control-inline input[type="range"] {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.control-inline input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: var(--primary-color, #436E67);
    border-radius: 50%;
    cursor: pointer;
}

.control-inline input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--primary-color, #436E67);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

#speed-level {
    font-size: 12px;
    min-width: 40px;
    color: var(--primary-color, #436E67);
    font-weight: 600;
}

/* Tab Viewer Wrapper */
.tab-viewer-wrapper {
    background: #1a1d21;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 400px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

.tab-viewer-wrapper::-webkit-scrollbar {
    width: 8px;
}

.tab-viewer-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.tab-viewer-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color, #436E67);
    border-radius: 4px;
}

.tab-viewer-wrapper::-webkit-scrollbar-thumb:hover {
    background: #5a9189;
}

#alphaTab {
    height: 100%;
    width: 100%;
}

/* AlphaTab Cursor Enhancement */
/*.at-cursor-bar {*/
/*    background: var(--primary-color, #436E67) !important;*/
/*    opacity: 0.5 !important;*/
/*}*/

.at-cursor-beat {
    background: var(--primary-color, #436E67) !important;
    opacity: 0.6 !important;
}

/* Playback Controls */
.playback-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeline {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color, #436E67);
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Post Content */
.post-content,
.preview-content {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.8;
}

.post-content h1,
.post-content h2,
.post-content h3,
.preview-content h1,
.preview-content h2,
.preview-content h3 {
    color: #fff;
    margin-top: 24px;
    margin-bottom: 16px;
}

.post-content p,
.preview-content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

/* Purchase Card Modern */
.purchase-card-modern {
    background: linear-gradient(135deg, rgba(67, 110, 103, 0.15) 0%, rgba(11, 14, 17, 0.9) 100%);
    border: 1px solid rgba(67, 110, 103, 0.3);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.card-header-modern {
    background: rgba(67, 110, 103, 0.2);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(67, 110, 103, 0.3);
}

.card-header-modern i {
    font-size: 40px;
    color: var(--primary-color, #436E67);
    margin-bottom: 12px;
    display: block;
}

.card-header-modern h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.card-body-modern {
    padding: 28px;
}

/* Price Section */
.price-section {
    text-align: center;
    margin-bottom: 32px;
}

.price-original {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-regular-strike {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-regular-strike .currency-small {
    font-size: 16px;
}

.discount-badge {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-current {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current .currency {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color, #436E67);
}

.price-current .amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.price-current .flag-icon {
    width: 28px;
    height: auto;
    margin-left: 8px;
}

.payment-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Includes Section */
.includes-section {
    margin-bottom: 28px;
}

.includes-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.includes-list li:last-child {
    border-bottom: none;
}

.includes-list i {
    color: var(--primary-color, #436E67);
    font-size: 18px;
}

/* Modern Purchase Form */
.modern-purchase-form {
    margin-bottom: 0;
}

/* Coupon Applied Notice */
.coupon-applied-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 10px;
    margin-bottom: 16px;
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-applied-notice i {
    font-size: 18px;
}

/* Coupon Input Group */
.coupon-input-group {
    position: relative;
    margin-bottom: 16px;
}

.coupon-input {
    width: 100%;
    padding: 14px 80px 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary-color, #436E67);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(67, 110, 103, 0.1);
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-apply-coupon {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    background: var(--primary-color, #436E67);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-coupon:hover:not(:disabled) {
    background: #5a9189;
    transform: translateY(-50%) scale(1.05);
}

.btn-apply-coupon:disabled {
    background: rgba(67, 110, 103, 0.3);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Purchase Button */
.btn-purchase {
    width: 100%;
    padding: 16px;
    background: var(--primary-color, #436E67);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}

.btn-purchase:hover {
    background: #5a9189;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 110, 103, 0.4);
    text-decoration: none;
    color: #fff;
}

/* Purchase Notice */
.purchase-notice {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.purchase-notice i {
    font-size: 14px;
    color: var(--primary-color, #436E67);
    flex-shrink: 0;
    margin-top: 2px;
}

.login-help {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Currency Switch */
.currency-switch {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-switch a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.currency-switch a:hover {
    color: var(--primary-color, #436E67);
    text-decoration: none;
}

.currency-switch img {
    width: 20px;
    height: auto;
}

/* Access Card (Already Purchased) */
.access-card-modern {
    background: linear-gradient(135deg, rgba(67, 110, 103, 0.15) 0%, rgba(11, 14, 17, 0.9) 100%);
    border: 1px solid rgba(67, 110, 103, 0.3);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.access-header {
    text-align: center;
    margin-bottom: 24px;
}

.access-header i {
    font-size: 50px;
    color: var(--primary-color, #436E67);
    margin-bottom: 12px;
    display: block;
}

.access-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.access-features h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.access-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.access-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.access-features i {
    color: var(--primary-color, #436E67);
    font-size: 18px;
}

/* Downloads Section in Access Card */
.downloads-section {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.downloads-section h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.downloads-section h5 i {
    color: var(--primary-color, #436E67);
    font-size: 18px;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.download-item:hover {
    background: rgba(67, 110, 103, 0.1);
    border-color: var(--primary-color, #436E67);
    transform: translateX(4px);
    text-decoration: none;
    color: #fff;
}

.download-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(67, 110, 103, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-icon i {
    font-size: 20px;
    color: var(--primary-color, #436E67);
}

.download-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.download-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.download-ext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.download-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    transition: all 0.3s ease;
}

.download-item:hover .download-arrow {
    color: var(--primary-color, #436E67);
    transform: translateX(4px);
}

.download-notice {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.download-notice i {
    font-size: 14px;
    color: #ffc107;
}

/* Author Card */
.author-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.author-info p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Modern Tipping Card */
.tipping-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.tipping-header {
    margin-bottom: 28px;
}

.tipping-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tipping-icon i {
    font-size: 28px;
    color: #ffc107;
}

.tipping-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.tipping-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.tipping-body {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tipping-thanks {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-weight: 500;
}

.tipping-form {
    margin-bottom: 16px;
}

.btn-donate {
    width: 100%;
    padding: 10px;
    background: var(--primary-color, #436E67);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-donate:hover {
    background: #5a9189;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 110, 103, 0.4);
    color: #fff;
}

.tipping-currency-switch {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tipping-currency-switch a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tipping-currency-switch a:hover {
    color: #ffc107;
    text-decoration: none;
}

.tipping-currency-switch img {
    width: 20px;
    height: auto;
}

/* Modern Tipping Thanks */
.tipping-thanks-modern {
    margin-bottom: 30px;
}

.thanks-card {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.15) 0%, rgba(67, 110, 103, 0.15) 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.thanks-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(67, 110, 103, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-icon i {
    font-size: 28px;
    color: #28a745;
}

.thanks-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.thanks-message {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .tab-hero .hero-content {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .tab-meta-info {
        font-size: 13px;
        gap: 16px;
    }
    
    .tab-viewer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tab-controls-compact {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .control-inline {
        flex: 1 1 auto;
        min-width: 120px;
    }
    
    .price-current .amount {
        font-size: 36px;
    }
    
    .post-content,
    .preview-content {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tab-content-section {
        padding: 20px 0;
    }
    
    .video-player-card,
    .tab-viewer-card,
    .post-content,
    .preview-content {
        margin-bottom: 20px;
    }
    
    .purchase-card-modern,
    .access-card-modern {
        border-radius: 16px;
    }
    
    .card-body-modern {
        padding: 20px;
    }
}
