:root {
    --rct-navy: #001F3F;
    --rct-navy-dark: #001226;
    --rct-gold: #D4AF37;
    /* Pure Gold */
    --rct-gold-light: #F2D574;
    --rct-gold-dark: #AA8C2C;
    --rct-black: #111111;
    --rct-white: #FFFFFF;
    --rct-red: #B91C1C;
    /* Deep Red */
    --rct-yellow: #F59E0B;
    /* Amber/Yellow for warnings/highlights */
    --rct-bg-light: #F8FAFC;
    --rct-font-heading: 'Montserrat', sans-serif;
    --rct-font-body: 'Inter', system-ui, sans-serif;
    --rct-shadow: 0 10px 30px rgba(0, 31, 63, 0.15);
    --rct-radius: 8px;
}

/* Global Reset for Plugin Elements */
.rct-registration-wrapper,
.rct-login-wrapper,
.rct-payment-wrapper,
.rct-dashboard,
.rct-landing-wrapper * {
    box-sizing: border-box;
}

/* Container Styles - Dashboard & Forms */
/* Container Styles - Dashboard & Forms */
/* Container Styles - Dashboard & Forms */
.rct-registration-wrapper,
.rct-login-wrapper,
.rct-payment-wrapper,
.rct-dashboard {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: var(--rct-white);
    border-radius: var(--rct-radius);
    box-shadow: var(--rct-shadow);
    font-family: var(--rct-font-body);
    border-top: 5px solid var(--rct-navy);
    color: var(--rct-black);
}

.rct-registration-wrapper h2,
.rct-login-wrapper h2,
.rct-payment-wrapper h2,
.rct-dashboard h3,
.rct-dashboard h4 {
    color: var(--rct-navy);
    font-family: var(--rct-font-heading);
    margin-bottom: 25px;
    font-weight: 700;
}

/* Form Styles */
.rct-form-group {
    margin-bottom: 25px;
}

.rct-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--rct-navy);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rct-form-group input[type="text"],
.rct-form-group input[type="email"],
.rct-form-group input[type="password"],
.rct-form-group input[type="file"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: var(--rct-radius);
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.rct-form-group input:focus {
    border-color: var(--rct-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    outline: none;
    background: var(--rct-white);
}

.rct-button {
    background: linear-gradient(135deg, var(--rct-navy), var(--rct-navy-dark));
    color: var(--rct-gold);
    padding: 16px 32px;
    border: 1px solid var(--rct-navy);
    border-radius: var(--rct-radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--rct-font-heading);
}

.rct-button:hover {
    background: var(--rct-white);
    color: var(--rct-navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 31, 63, 0.2);
}

/* Dashboard Stats */
.rct-welcome {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.rct-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.rct-stat-card {
    background: var(--rct-white);
    padding: 30px;
    border-radius: var(--rct-radius);
    text-align: center;
    border: 1px solid #f1f1f1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.rct-stat-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--rct-gold);
}

.rct-stat-card:hover {
    transform: translateY(-5px);
}

.rct-stat-card h4 {
    margin: 0 0 15px;
    color: var(--rct-navy);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rct-stat-card .value {
    font-size: 32px;
    font-weight: 800;
    color: var(--rct-gold-dark);
    font-family: var(--rct-font-heading);
}

/* Referral Box */
.rct-link-box {
    background: var(--rct-bg-light);
    padding: 25px;
    border-radius: var(--rct-radius);
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.rct-link-box input {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--rct-gold);
    background: var(--rct-white);
    color: var(--rct-navy);
    font-family: monospace;
    font-size: 16px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
}

/* Progress Bar */
.rct-bonus-section {
    margin-bottom: 40px;
}

.rct-progress-bar-container {
    background: #e2e8f0;
    height: 25px;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    border: none;
}

.rct-progress-bar {
    background: linear-gradient(90deg, var(--rct-gold), var(--rct-gold-light));
    height: 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Checkbox Grid (Savings) */
.rct-savings-section h3 {
    border-left: 5px solid var(--rct-gold);
    padding-left: 15px;
    color: var(--rct-navy);
}

.rct-savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rct-savings-card {
    border: 1px solid #f1f1f1;
    padding: 20px;
    border-radius: var(--rct-radius);
    text-align: center;
    transition: all 0.3s;
    background: var(--rct-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.rct-savings-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.inst-number {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--rct-navy);
    font-size: 14px;
}

.inst-status {
    font-size: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    color: inherit;
}

.status-lunas,
.status-paid {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    /* Green for Success */
}

.status-pending,
.status-menunggu-konfirmasi {
    background-color: #fefce8;
    border: 1px solid #fef08a;
    color: var(--rct-yellow);
}

.status-unpaid,
.status-belum-dibayar {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
}

.rct-pay-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--rct-navy);
    color: var(--rct-white);
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.rct-pay-btn:hover {
    background: var(--rct-gold);
    color: var(--rct-navy);
}

/* ----- LANDING PAGE STYLES ----- */
.rct-landing-wrapper {
    background: var(--rct-navy);
    color: var(--rct-white);
    padding: 0;
    font-family: var(--rct-font-heading);
    overflow-x: hidden;
    position: relative;
    border-radius: 0;
    width: 100%;
    margin: 0 auto;
    border: none;
}

.rct-landing-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.rct-hero-section {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(16, 42, 67, 0.8) 0%, rgba(0, 31, 63, 0) 70%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.rct-logo-area h1 {
    color: var(--rct-gold);
    font-size: 36px;
    margin: 0 0 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    /* Use a more "Royal" font if available, fallback to serif/sans */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.rct-logo-area h1:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--rct-gold);
    margin: 15px auto 0;
}

.rct-logo-area p {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 10px 0;
    opacity: 0.9;
    font-weight: 300;
}

.rct-tagline {
    color: var(--rct-white);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    margin-top: 5px;
    opacity: 0.8;
}

.rct-main-title h2 {
    font-size: 80px;
    font-weight: 900;
    margin: 40px 0 20px;
    text-transform: uppercase;
    color: var(--rct-white);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    line-height: 1;
    letter-spacing: -2px;
    background: linear-gradient(to bottom, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rct-batch {
    background: linear-gradient(135deg, var(--rct-black), #222);
    color: var(--rct-gold);
    padding: 10px 30px;
    border: 1px solid var(--rct-gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    top: -10px;
}

/* Features Bar */
.rct-features-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(90deg, var(--rct-gold), var(--rct-gold-light));
    padding: 25px;
    border-radius: 50px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.rct-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--rct-black);
}

.rct-feature-item .dashicons {
    font-size: 36px;
    width: 36px;
    height: 36px;
    opacity: 0.8;
}

.rct-feature-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
}

.rct-feature-text span {
    font-size: 13px;
    opacity: 0.8;
}

/* Promo Grid */
.rct-promo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

/* Price Circle */
.rct-price-circle-container {
    flex: 0 0 280px;
    text-align: center;
}

.rct-price-circle {
    background: radial-gradient(circle, var(--rct-white) 30%, #f1f1f1 70%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 8px solid var(--rct-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--rct-black);
    box-shadow: 0 0 40px rgba(197, 160, 89, 0.4);
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.rct-price-main {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    color: var(--rct-navy);
}

.rct-price-main small {
    font-size: 24px;
    font-weight: 600;
    color: var(--rct-gold-dark);
}

.rct-price-detail {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #555;
}

/* Lists */
.rct-details-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 30px;
}

.rct-included,
.rct-excluded {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--rct-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.rct-included h3 {
    background: #166534;
    /* Green */
    color: white;
    padding: 12px;
    font-size: 18px;
    margin: -20px -20px 20px -20px;
    border-radius: var(--rct-radius) var(--rct-radius) 0 0;
    text-align: center;
    font-weight: 700;
}

.rct-excluded h3 {
    background: var(--rct-red);
    /* Red */
    color: white;
    padding: 12px;
    font-size: 18px;
    margin: -20px -20px 20px -20px;
    border-radius: var(--rct-radius) var(--rct-radius) 0 0;
    text-align: center;
    font-weight: 700;
}

.rct-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rct-details-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.rct-details-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rct-gold);
    font-weight: bold;
}

.rct-excluded li:before {
    content: "✕";
    color: var(--rct-red);
}

/* Bonuses */
.rct-bonuses {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.rct-bonus-item {
    background: radial-gradient(circle, var(--rct-white), #eee);
    color: var(--rct-black);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 4px solid var(--rct-gold);
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.rct-badge {
    position: absolute;
    top: -12px;
    background: var(--rct-red);
    color: var(--rct-white);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rct-bonus-content strong {
    font-size: 24px;
    display: block;
    color: var(--rct-navy);
}

.rct-promo-bubble {
    background: var(--rct-white);
    color: var(--rct-black);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 4px solid var(--rct-gold);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.rct-free-text {
    position: absolute;
    top: 25px;
    left: -35px;
    width: 150px;
    background: var(--rct-red);
    color: white;
    font-weight: 800;
    transform: rotate(-45deg);
    padding: 5px 0;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.rct-big-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--rct-navy);
}

.rct-small-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* CTA */
.rct-cta-section {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.rct-cta-button {
    background: linear-gradient(135deg, var(--rct-gold), var(--rct-gold-dark));
    color: var(--rct-black);
    padding: 20px 60px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--rct-font-heading);
}

.rct-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    color: var(--rct-navy);
}

.rct-footer-info {
    margin-top: 50px;
    background: var(--rct-gold);
    color: var(--rct-navy);
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Custom Responsive Updates */
@media (max-width: 900px) {
    .rct-promo-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .rct-details-list {
        width: 100%;
        order: 2;
    }

    .rct-price-circle-container {
        order: 1;
    }

    .rct-bonuses {
        order: 3;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .rct-main-title h2 {
        font-size: 42px;
    }

    .rct-features-bar {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .rct-feature-item {
        background: var(--rct-gold);
        padding: 15px;
        border-radius: 10px;
        width: 100%;
    }

    .rct-details-list {
        flex-direction: column;
    }

    .rct-footer-info {
        flex-direction: column;
        gap: 15px;
        margin-left: -20px;
        margin-right: -20px;
    }
}

/* Form Styles */
.rct-form-group {
    margin-bottom: 20px;
}

.rct-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.rct-form-group input[type="text"],
.rct-form-group input[type="email"],
.rct-form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.rct-form-group input:focus {
    border-color: #d4af37;
    /* Gold color */
    outline: none;
}

.rct-button {
    background: linear-gradient(135deg, #d4af37, #b49321);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.rct-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Dashboard Stats */
.rct-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.rct-stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eee;
}

.rct-stat-card h4 {
    margin: 0 0 10px;
    color: #666;
    font-size: 14px;
}

.rct-stat-card .value {
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
}

/* Referral Box */
.rct-link-box {
    background: #f0f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.rct-link-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    font-family: monospace;
}

/* Progress Bar */
.rct-progress-bar-container {
    background: #eee;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.rct-progress-bar {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
    height: 100%;
    transition: width 0.5s ease-in-out;
}

/* Checkbox Grid (Savings) */
.rct-savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.rct-savings-card {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.inst-number {
    font-weight: 600;
    margin-bottom: 5px;
}

.inst-status {
    font-size: 12px;
    margin-bottom: 10px;
}

.status-lunas,
.status-paid {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
}

.status-pending,
.status-menunggu-konfirmasi {
    background-color: #fff3e0;
    border-color: #ffe0b2;
    color: #ef6c00;
}

.status-unpaid,
.status-belum-dibayar {
    background-color: #fafafa;
    color: #999;
}

.rct-pay-btn {
    display: inline-block;
    padding: 6px 12px;
    background: #2196F3;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
}

.rct-pay-btn:hover {
    background: #1976D2;
}

/* Responsive */
/* Existing Styles... */

/* Landing Page Styles */
.rct-landing-wrapper {
    background: #0a1f35;
    /* Dark Blue from background */
    color: #fff;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    width: 100%;
    margin: 0 auto;
}

.rct-hero-section {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.rct-logo-area h1 {
    color: #c5a059;
    /* Gold */
    font-size: 24px;
    margin: 0;
    letter-spacing: 2px;
}

.rct-tagline {
    color: #c5a059;
    font-style: italic;
    margin-top: 5px;
}

.rct-main-title h2 {
    font-size: 60px;
    font-weight: 800;
    margin: 10px 0;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.rct-batch {
    background: #111;
    color: #c5a059;
    padding: 5px 15px;
    border: 1px solid #c5a059;
    font-size: 12px;
    text-transform: uppercase;
}

/* Features Bar */
.rct-features-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to right, #c5a059, #e6c87a);
    padding: 15px;
    border-radius: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rct-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.rct-feature-item .dashicons {
    font-size: 30px;
    width: 30px;
    height: 30px;
}

.rct-feature-text {
    line-height: 1.2;
    text-align: left;
}

.rct-feature-text strong {
    display: block;
    font-size: 14px;
}

.rct-feature-text span {
    font-size: 12px;
}

/* Promo Grid */
.rct-promo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
}

/* Price Circle */
.rct-price-circle-container {
    flex: 0 0 250px;
    text-align: center;
}

.rct-price-circle {
    background: radial-gradient(circle, #fff 40%, #e0e0e0 70%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #c5a059;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
    margin: 0 auto;
}

.rct-price-main {
    font-size: 50px;
    font-weight: 900;
    line-height: 1;
}

.rct-price-main small {
    font-size: 20px;
    font-weight: 600;
}

.rct-price-detail {
    margin-top: 10px;
    font-size: 16px;
}

.rct-price-detail p {
    margin: 2px 0;
}

/* Lists */
.rct-details-list {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 20px;
}

.rct-included,
.rct-excluded {
    flex: 1;
}

.rct-included h3 {
    background: #006025;
    /* Green */
    padding: 8px;
    font-size: 16px;
    margin: 0 0 10px;
}

.rct-excluded h3 {
    background: #d32f2f;
    /* Red */
    padding: 8px;
    font-size: 16px;
    margin: 0 0 10px;
}

.rct-details-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rct-details-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 5px;
    font-size: 14px;
}

.rct-details-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c5a059;
}

/* Bonuses */
.rct-bonuses {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.rct-bonus-item {
    background: radial-gradient(circle, #fff, #ddd);
    color: #000;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 3px solid #c5a059;
    position: relative;
}

.rct-badge {
    position: absolute;
    top: -10px;
    background: #d32f2f;
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
}

.rct-bonus-content small {
    font-size: 10px;
    display: block;
}

.rct-bonus-content strong {
    font-size: 20px;
    display: block;
}

.rct-promo-bubble {
    background: radial-gradient(circle, #fff, #ddd);
    color: #000;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 3px solid #c5a059;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.rct-free-text {
    background: red;
    color: white;
    font-weight: bold;
    transform: rotate(-10deg);
    padding: 2px 5px;
    font-size: 12px;
}

.rct-big-number {
    font-size: 40px;
    font-weight: 900;
    line-height: 1;
}

.rct-small-text {
    font-size: 10px;
    max-width: 80px;
}

/* CTA */
.rct-cta-section {
    text-align: center;
    margin-top: 40px;
}

.rct-cta-button {
    background: linear-gradient(135deg, #c5a059, #b49321);
    color: #fff;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.rct-cta-button:hover {
    transform: scale(1.05);
}

.rct-footer-info {
    margin-top: 30px;
    background: #c5a059;
    color: #000;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
    .rct-promo-grid {
        flex-direction: column;
        align-items: center;
    }

    .rct-details-list {
        width: 100%;
        order: 2;
        /* Put details below price */
    }

    .rct-price-circle-container {
        order: 1;
        /* Price on top */
        margin-bottom: 20px;
    }

    .rct-bonuses {
        order: 3;
        /* Bonuses at bottom */
        flex-direction: row;
        /* Horizontal scrolling or wrapping */
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    .rct-bonus-item,
    .rct-promo-bubble {
        width: 100px;
        height: 100px;
    }

    .rct-bonus-content strong {
        font-size: 16px;
    }

    .rct-big-number {
        font-size: 30px;
    }
}

@media (max-width: 600px) {
    .rct-main-title h2 {
        font-size: 36px;
    }

    .rct-logo-area h1 {
        font-size: 20px;
    }

    .rct-features-bar {
        border-radius: 20px;
        gap: 15px;
    }

    .rct-feature-item {
        width: 45%;
        /* 2 cols */
        justify-content: center;
    }

    .rct-details-list {
        flex-direction: column;
    }

    .rct-included,
    .rct-excluded {
        width: 100%;
        margin-bottom: 20px;
    }

    .rct-footer-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* Split Screen Login Styles */
.rct-split-screen {
    display: flex;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    background: #000000;
}

.rct-split-left {
    flex: 0 0 450px;
    background: #000000;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    z-index: 10;
}

.rct-split-right {
    flex: 1;
    background-image: url('../images/home-flyer.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.rct-split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    /* Slight overlay */
    z-index: 2;
}

.rct-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: none;
}

.rct-login-container {
    max-width: 360px;
    margin: auto;
    width: 100%;
}

/* Brand */
.rct-brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.rct-logo-icon {
    margin-bottom: 15px;
}

.rct-brand-logo h3 {
    color: #D4AF37;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Form Styles */
.rct-google-btn {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 25px;
}

.rct-google-btn:hover {
    background: #252525;
    border-color: #444;
}

.rct-divider {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
}

.rct-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #333;
    z-index: 1;
}

.rct-divider span {
    background: #000;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.rct-custom-login-form .rct-form-group {
    margin-bottom: 20px;
}

.rct-custom-login-form label {
    display: block;
    margin-bottom: 8px;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

#rct_loginform input.rct-input {
    width: 100%;
    background: #111 !important;
    border: 1px solid #333;
    border-radius: 6px;
    padding: 12px 15px;
    color: #fff !important;
    font-size: 15px;
    transition: border-color 0.2s;
}

#rct_loginform input.rct-input::placeholder {
    color: #666;
}

#rct_loginform input.rct-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 1px #D4AF37;
    background: #000 !important;
}

.rct-form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.rct-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ccc;
}

.rct-forgot-link {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.2s;
}

.rct-forgot-link:hover {
    color: #F2D574;
}

.rct-submit-btn {
    width: 100%;
    background: #D4AF37;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.rct-submit-btn:hover {
    background: #e6c87a;
    transform: translateY(-1px);
}

.rct-register-link {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 14px;
}

.rct-register-link a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.rct-policy-text {
    margin-top: 40px;
    font-size: 11px;
    color: #555;
    text-align: center;
    line-height: 1.5;
}

.rct-policy-text a {
    color: #D4AF37;
    text-decoration: none;
}

.rct-copyright {
    text-align: center;
    margin-top: 20px;
    color: #444;
    font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .rct-split-screen {
        flex-direction: column;
    }

    .rct-split-left {
        flex: 1;
        padding: 40px 20px;
        order: 1;
        max-width: 100%;
    }

    .rct-split-right {
        order: 0;
        height: 200px;
        flex: none;
        display: none;
    }
}

/* Admin Dashboard Styles */
.rct-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.rct-dashboard-header h3 {
    margin: 0;
    color: var(--rct-navy);
}

.rct-logout .button {
    background: var(--rct-red);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s;
}

.rct-logout .button:hover {
    background: #991b1b;
}

.rct-stat-card .rct-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--rct-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.rct-stat-card .rct-link:hover {
    text-decoration: underline;
}

.rct-admin-notice {
    margin-top: 40px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    border-radius: 4px;
    text-align: center;
}

/* =========================================
   Registration Notification Popup
   ========================================= */
.rct-popup {
    position: fixed !important;
    z-index: 99999 !important;
    padding: 15px;
    max-width: 350px;
    width: 90%;
    margin: 20px;
    background: #fff !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-left: 5px solid var(--rct-gold);
    border-left: 5px solid var(--rct-gold);
    display: flex !important;
    align-items: center;
    gap: 15px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.rct-popup.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
}

/* Positioning */
.rct-popup-bottom-left {
    bottom: 0;
    left: 0;
}

.rct-popup-bottom-right {
    bottom: 0;
    right: 0;
}

.rct-popup-top-left {
    top: 70px;
    left: 0;
}

.rct-popup-top-right {
    top: 70px;
    right: 0;
}

.rct-popup-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.rct-popup-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rct-popup-details {
    margin-left: 15px;
    flex: 1;
}

.rct-popup-details .rct-name {
    display: block;
    font-weight: 700;
    color: var(--rct-navy);
    font-size: 14px;
}

.rct-popup-details .rct-action {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 2px;
}

.rct-popup-details .rct-meta {
    font-size: 11px;
    color: #888;
}

.rct-popup-details .rct-verified {
    font-size: 10px;
    color: #22c55e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 3px;
}

.rct-popup-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
    margin-left: auto;
    align-self: flex-start;
}

.rct-popup-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .rct-popup {
        margin: 10px;
        width: calc(100% - 20px);
    }

    .rct-popup-bottom-left,
    .rct-popup-bottom-right {
        bottom: 0;
        left: 0;
        right: 0;
    }

    .rct-popup-top-left,
    .rct-popup-top-right {
        top: 10px;
        left: 0;
        right: 0;
    }
}