/* ============================================
   LOMBA VIDEO KREASI - Custom Theme CSS
   Bootstrap 5 Enhancement + Custom Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B85FF;
    --secondary: #FF6584;
    --accent: #00D2FF;
    --success: #2ED573;
    --warning: #FFA502;
    --danger: #FF4757;
    --dark: #2D3436;
    --darker: #1E272E;
    --light: #F8F9FD;
    --gray: #636E72;
    --gradient-1: linear-gradient(135deg, #6C63FF 0%, #FF6584 100%);
    --gradient-2: linear-gradient(135deg, #00D2FF 0%, #6C63FF 100%);
    --gradient-3: linear-gradient(135deg, #FF6584 0%, #FFA502 100%);
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 10px rgba(108, 99, 255, 0.1);
    --shadow-md: 0 5px 20px rgba(108, 99, 255, 0.15);
    --shadow-lg: 0 10px 40px rgba(108, 99, 255, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(108, 99, 255, 0.1);
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1050;
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand .brand-icon {
    font-size: 1.8rem;
    margin-right: 6px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(108, 99, 255, 0.08);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    background: var(--gradient-1);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::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: 0.5s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #fff;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm-custom {
    padding: 6px 16px;
    font-size: 0.85rem;
    border-radius: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--gradient-1);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Offset for fixed-top navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
    color: #fff;
}

.hero-stat .number {
    font-size: 2.2rem;
    font-weight: 800;
    display: block;
}

.hero-stat .label {
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-illustration {
    position: relative;
    z-index: 2;
}

.hero-emoji {
    font-size: 15rem;
    animation: bounce 3s ease-in-out infinite;
    display: block;
    text-align: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    opacity: 0.15;
    animation: floatShape 10s ease-in-out infinite;
    z-index: 1;
}

.floating-shape:nth-child(1) {
    top: 10%;
    left: 5%;
    font-size: 3rem;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    bottom: 20%;
    left: 15%;
    font-size: 2.5rem;
    animation-delay: 4s;
}

.floating-shape:nth-child(4) {
    top: 60%;
    right: 20%;
    font-size: 1.8rem;
    animation-delay: 1s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
    }

    75% {
        transform: translateY(10px) rotate(-3deg);
    }
}

/* ============================================
   CARDS
   ============================================ */
.card-custom {
    background: #fff;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-custom .card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 24px;
}

.card-glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: #fff;
}

/* Competition Card */
.lomba-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.lomba-card .card-banner {
    height: 180px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.lomba-card .card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lomba-card .card-banner .kategori-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.lomba-card .status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-aktif {
    background: var(--success);
    color: #fff;
}

.status-draft {
    background: var(--warning);
    color: #fff;
}

.status-selesai {
    background: var(--gray);
    color: #fff;
}

.lomba-card .card-body h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.lomba-card .card-body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lomba-card .card-footer {
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lomba-card .date-info {
    font-size: 0.8rem;
    color: var(--gray);
}

.lomba-card .date-info i {
    color: var(--primary);
    margin-right: 4px;
}

/* ============================================
   STAT CARDS (Dashboard)
   ============================================ */
.stat-card {
    border-radius: var(--radius);
    padding: 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
}

.stat-card .stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 4px;
}

.stat-gradient-1 {
    background: var(--gradient-1);
}

.stat-gradient-2 {
    background: var(--gradient-2);
}

.stat-gradient-3 {
    background: var(--gradient-3);
}

.stat-gradient-4 {
    background: linear-gradient(135deg, #2ED573 0%, #00D2FF 100%);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--darker) 0%, #1a1a2e 100%);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1040;
    transition: all 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar .sidebar-brand {
    padding: 24px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar .sidebar-brand h4 {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar .sidebar-brand small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.sidebar-menu {
    list-style: none;
    padding: 16px 12px;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 4px;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-menu li a i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.1rem;
    text-align: center;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: rgba(108, 99, 255, 0.2);
    color: #fff;
}

.sidebar-menu li a.active {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.sidebar-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 12px 16px;
}

.sidebar-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ============================================
   MAIN CONTENT (Dashboard)
   ============================================ */
.main-content {
    margin-left: 280px;
    padding: 0;
    min-height: 100vh;
    background: var(--light);
}

.topbar {
    background: #fff;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar .page-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
}

.topbar .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar .user-info .avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.content-body {
    padding: 30px;
}

/* ============================================
   AUTH PAGES
   ============================================ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.auth-wrapper::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.auth-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.auth-card .auth-title {
    font-weight: 800;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 8px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 0.9rem;
}

.auth-card .auth-emoji {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.input-group>.form-control-custom {
    width: auto;
    flex: 1 1 auto;
}

.form-select-custom {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
    cursor: pointer;
}

.form-select-custom:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.form-label-custom {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 6px;
    display: block;
}

/* ============================================
   TABLES
   ============================================ */
.table-custom {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-custom thead th {
    background: var(--dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 16px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-custom tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-bottom: 1px solid #F0F0F0;
}

.table-custom tbody tr:hover {
    background: rgba(108, 99, 255, 0.03);
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge-custom {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
}

.badge-success {
    background: rgba(46, 213, 115, 0.15);
    color: var(--success);
}

.badge-warning {
    background: rgba(255, 165, 2, 0.15);
    color: var(--warning);
}

.badge-danger {
    background: rgba(255, 71, 87, 0.15);
    color: var(--danger);
}

.badge-info {
    background: rgba(0, 210, 255, 0.15);
    color: var(--accent);
}

/* Platform badges */
.platform-youtube {
    background: #FF0000;
    color: #fff;
}

.platform-tiktok {
    background: #000;
    color: #fff;
}

.platform-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.platform-facebook {
    background: #1877F2;
    color: #fff;
}

.platform-twitter {
    background: #1DA1F2;
    color: #fff;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-weight: 800;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1rem;
}

/* ============================================
   FOOTER (Public)
   ============================================ */
.footer-section {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-section h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert-custom {
    border: none;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-custom i {
    font-size: 1.2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Stagger animations */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* ============================================
   SCORING STARS
   ============================================ */
.score-display {
    display: flex;
    align-items: center;
    gap: 4px;
}

.score-bar {
    height: 8px;
    background: #E8E8E8;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
}

.score-bar .fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .emoji {
    font-size: 4rem;
    margin-bottom: 16px;
    display: block;
}

.empty-state h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 20px;
}

/* ============================================
   MODAL CUSTOM
   ============================================ */
.modal-custom .modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.modal-custom .modal-header {
    border-bottom: 1px solid #F0F0F0;
    padding: 24px;
}

.modal-custom .modal-title {
    font-weight: 700;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-emoji {
        font-size: 8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .number {
        font-size: 1.5rem;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.show {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .auth-card {
        margin: 20px;
        padding: 32px 24px;
    }

    .content-body {
        padding: 16px;
    }

    .stat-card {
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .topbar {
        padding: 12px 16px;
    }

    .topbar .page-title {
        font-size: 1rem;
    }
}

/* ============================================
   SIDEBAR TOGGLE
   ============================================ */
.sidebar-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    z-index: 1050;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

@media (max-width: 768px) {
    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================
   SUBMISSION VIDEO CARD
   ============================================ */
.video-submission-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.video-submission-card:hover {
    box-shadow: var(--shadow-md);
}

.video-submission-card .platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.platform-icon.platform-youtube {
    background: #FF0000;
}

.platform-icon.platform-tiktok {
    background: #000;
}

.platform-icon.platform-instagram {
    background: #E1306C;
}

.platform-icon.platform-facebook {
    background: #1877F2;
}

.platform-icon.platform-twitter {
    background: #1DA1F2;
}

.platform-icon.platform-lainnya {
    background: var(--gray);
}

/* Scroll animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGINATION CUSTOM
   ============================================ */
.pagination .page-link {
    border: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 14px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   CATEGORY ICONS
   ============================================ */
.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

/* ============================================
   PROFILE PHOTO
   ============================================ */
.profil-foto-wrapper {
    display: inline-block;
}

.profil-foto {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(108, 99, 255, 0.2);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.15);
    transition: all 0.3s ease;
}

.profil-foto:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(108, 99, 255, 0.25);
}

.profil-foto-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    opacity: 0.7;
    margin: 0 auto;
}

.profil-field {
    background: var(--light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.profil-field small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fix overlay on sidebar */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1035;
}

@media (max-width: 768px) {
    .sidebar-overlay.show {
        display: block;
    }
}

/* ============================================
   IMPERSONATE BADGE
   ============================================ */
.impersonate-badge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.2);
    z-index: 9999;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}