/* ============================
   VARIABLES & RESET
============================ */
:root {
    --color-primary: #ff66bb;
    --color-secondary: #7ebdfc;
    --color-accent: #ff3388;
    --color-white: #ffffff;
    --color-shadow-pink: rgba(255, 170, 200, 0.5);
    --color-shadow-blue: rgba(173, 216, 230, 0.3);
    --color-text-dark: #333;
    --color-text-light: #555;
    --color-text-gray: #777;
    --color-bg-light: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-bg: linear-gradient(135deg, #ffd1e8 0%, #ffe3f3 20%, #e5d9ff 45%, #d7f1ff 70%, #cfe7ff 100%);
    --gradient-pink: linear-gradient(135deg, #ff6b93, #ff8e53);
    --gradient-red: linear-gradient(135deg, #ff416c, #ff4b2b);
    --gradient-orange: linear-gradient(135deg, #ff9500, #ff5e3a);
    
    /* Social Media Gradients */
    --instagram-gradient: linear-gradient(45deg, #833AB4, #FD1D1D, #F56040);
    --tiktok-gradient: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
    --twitch-gradient: linear-gradient(45deg, #9146FF, #6441A5);
    --youtube-gradient: linear-gradient(45deg, #FF0000, #CC0000);
    --twitter-gradient: linear-gradient(45deg, #1DA1F2, #1DA0F0);
    --discord-gradient: linear-gradient(45deg, #5865F2, #7289DA);
    --onlyfans-gradient: linear-gradient(45deg, #00AFF0, #00B2FF);
    --irlstream-gradient: linear-gradient(90deg, #FF0000 0%, #FF416C 25%, #FF6B93 50%, #FF8E53 75%, #FF9500 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--gradient-bg);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    padding-bottom: 50px;
}

/* ============================
   ANIMATIONS
============================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes irlstream-gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes irlstream-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 107, 147, 0);
    }
    25% { 
        transform: scale(1.03);
        box-shadow: 0 0 15px rgba(255, 107, 147, 0.4);
    }
    50% { 
        transform: scale(0.98);
        box-shadow: 0 0 10px rgba(255, 107, 147, 0.2);
    }
    75% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 107, 147, 0.6);
    }
}

@keyframes shine {
    0% { left: -100%; }
    20%, 100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes live-pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4), 0 0 15px rgba(255, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.4);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes pulse-border {
    0%, 100% { 
        border-color: #FF0000;
        box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3), 0 0 25px rgba(255, 0, 0, 0.2);
    }
    50% { 
        border-color: #FF6666;
        box-shadow: 0 8px 25px rgba(255, 102, 102, 0.4), 0 0 30px rgba(255, 102, 102, 0.3);
    }
}

@keyframes newPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 2px 6px rgba(255, 65, 108, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 3px 8px rgba(255, 65, 108, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   UTILITY CLASSES
============================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glass-box {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.3), 0 0 30px rgba(173, 216, 230, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4), 0 0 40px rgba(173, 216, 230, 0.4);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================
   BACKGROUND DECORATIONS
============================ */
.bg-decorations {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.decor {
    position: absolute;
    opacity: 0.55;
    filter: drop-shadow(0 4px 12px var(--color-shadow-pink));
    animation: float 6s ease-in-out infinite;
}

.cloud {
    width: 220px;
    top: 40px;
    left: -20px;
    animation-duration: 7s;
}

.dots {
    width: 140px;
    bottom: 50px;
    right: 20px;
    opacity: 0.35;
    animation-duration: 8s;
}

.star1 {
    width: 90px;
    top: 160px;
    right: 140px;
}

.star2 {
    width: 70px;
    bottom: 160px;
    left: 100px;
    animation-duration: 9s;
}

/* ============================
   LAYOUT
============================ */
.main-content {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* ============================
   HEADER & NAVIGATION
============================ */
.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.pastel-header {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 10px 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), 0 0 18px rgba(255, 182, 193, 0.25), 0 0 28px rgba(173, 216, 230, 0.25);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text-dark);
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.65);
    color: var(--color-primary);
    transform: scale(1.05);
}

/* Exclusive - Normal style */
.pastel-header .nav-links a[href="exclusive/index.html"] {
    color: var(--color-text-dark);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    animation: none;
}

/* IRL Stream - Special animated style */
.pastel-header .nav-links a[href="irlstream/index.html"] {
    color: transparent;
    background: var(--irlstream-gradient);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: irlstream-gradient 3s linear infinite, irlstream-pulse 1.5s ease-in-out infinite;
    background-position: 0% 50%;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

/* Efek cahaya berdenyut untuk IRL Stream */
.pastel-header .nav-links a[href="irlstream/index.html"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

/* Efek hover untuk IRL Stream */
.pastel-header .nav-links a[href="irlstream/index.html"]:hover {
    animation-play-state: paused;
    transform: scale(1.1);
    background: var(--irlstream-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: 0 0 25px rgba(255, 107, 147, 0.8);
}

/* Efek glow pada border saat hover untuk semua nav items */
.nav-links a:hover {
    box-shadow: 0 4px 15px rgba(255, 102, 187, 0.2);
}

/* ============================
   PROFILE SECTION
============================ */
.profile-section {
    padding: 10px 0 40px;
}

.profile-card {
    width: 850px;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
}

.profile-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.profile-photo-container {
    flex: 0 0 280px;
    position: relative;
}

.profile-photo {
    width: 100%;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid var(--color-white);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4), 0 0 30px rgba(173, 216, 230, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.profile-info {
    flex: 1;
    text-align: center;
}

.profile-name {
    font-family: 'Lilita One', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-shadow: -2px -2px 0 var(--color-white), 
                 2px -2px 0 var(--color-white), 
                 -2px 2px 0 var(--color-white), 
                 2px 2px 0 var(--color-white),
                 -1px -1px 0 #e773a3, 
                 1px -1px 0 #e773a3, 
                 -1px 1px 0 #e773a3, 
                 1px 1px 0 #e773a3,
                 0 4px 8px var(--color-shadow-pink);
    margin-bottom: 20px;
}

.profile-details {
    text-align: left;
    background: var(--color-bg-light);
    border-radius: 18px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-row:last-child {
    border-bottom: none;
}

.profile-label {
    font-family: 'Lilita One', sans-serif;
    font-size: 16px;
    color: var(--color-primary);
    text-shadow: -1px -1px 0 var(--color-white), 
                 1px -1px 0 var(--color-white), 
                 -1px 1px 0 var(--color-white), 
                 1px 1px 0 var(--color-white);
    flex: 0 0 120px;
    margin-right: 10px;
}

.profile-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--color-text-light);
    flex: 1;
    text-align: right;
    padding-left: 10px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    margin: 10px 0;
    opacity: 0.5;
}

.profile-row.highlight {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 10px 15px;
    margin: 8px -5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(255, 170, 200, 0.2);
    animation: pulse 2s infinite;
}

.profile-row.highlight .profile-label {
    color: var(--color-accent);
    font-size: 17px;
}

.profile-row.highlight .profile-value {
    color: var(--color-accent);
    font-weight: 600;
}

/* ============================
   LIVE STREAM INDICATOR
============================ */
.live-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
    padding: 5px 10px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4), 0 0 15px rgba(255, 0, 0, 0.3);
    z-index: 10;
    animation: live-pulse 1.5s infinite;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 90px;
    min-width: auto;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
    flex-shrink: 0;
}

.live-indicator-text {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
    display: inline-block;
}

.live-indicator:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #FF2222, #FF6666);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.4);
}

.profile-photo.live-active {
    animation: pulse-border 2s infinite;
    border: 2px solid #FF0000;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3), 0 0 25px rgba(255, 0, 0, 0.2);
}

/* ============================
   SOCIAL MEDIA GRID
============================ */
.social-section {
    padding: 40px 0 60px;
}

.social-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-card {
    text-decoration: none;
    display: block;
    padding: 25px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 182, 193, 0.4), 0 0 45px rgba(173, 216, 230, 0.4);
}

.social-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    height: 100%;
}

.social-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.social-card:hover .social-icon-container {
    transform: scale(1.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-platform {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-text-dark);
    margin: 0 0 5px;
}

.social-username {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--color-text-light);
    margin: 0;
    opacity: 0.9;
}

/* Platform-specific styles */
.social-card:nth-child(1) .social-icon-container { background: linear-gradient(135deg, rgba(0, 175, 240, 0.15), rgba(0, 178, 255, 0.15)); border-color: rgba(0, 175, 240, 0.3); }
.social-card:nth-child(2) .social-icon-container { background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(114, 137, 218, 0.15)); border-color: rgba(88, 101, 242, 0.3); }
.social-card:nth-child(3) .social-icon-container { background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(253, 29, 29, 0.15), rgba(245, 96, 64, 0.15)); border-color: rgba(253, 29, 29, 0.3); }
.social-card:nth-child(4) .social-icon-container { background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(37, 244, 238, 0.15), rgba(254, 44, 85, 0.15)); border-color: rgba(254, 44, 85, 0.3); }
.social-card:nth-child(5) .social-icon-container { background: linear-gradient(135deg, rgba(145, 70, 255, 0.15), rgba(100, 65, 165, 0.15)); border-color: rgba(145, 70, 255, 0.3); }
.social-card:nth-child(6) .social-icon-container { background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(204, 0, 0, 0.15)); border-color: rgba(255, 0, 0, 0.3); }
.social-card:nth-child(7) .social-icon-container { background: linear-gradient(135deg, rgba(29, 161, 242, 0.15), rgba(29, 160, 240, 0.15)); border-color: rgba(29, 161, 242, 0.3); }
.social-card:nth-child(8) .social-icon-container { background: linear-gradient(135deg, rgba(0, 255, 56, 0.15), rgba(0, 200, 40, 0.15)); border-color: rgba(0, 255, 56, 0.3); }

.social-card:nth-child(1):hover { box-shadow: 0 15px 35px rgba(0, 175, 240, 0.25); }
.social-card:nth-child(2):hover { box-shadow: 0 15px 35px rgba(88, 101, 242, 0.25); }
.social-card:nth-child(3):hover { box-shadow: 0 15px 35px rgba(253, 29, 29, 0.25); }
.social-card:nth-child(4):hover { box-shadow: 0 15px 35px rgba(254, 44, 85, 0.25); }
.social-card:nth-child(5):hover { box-shadow: 0 15px 35px rgba(145, 70, 255, 0.25); }
.social-card:nth-child(6):hover { box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25); }
.social-card:nth-child(7):hover { box-shadow: 0 15px 35px rgba(29, 161, 242, 0.25); }
.social-card:nth-child(8):hover { box-shadow: 0 15px 35px rgba(0, 255, 56, 0.25); }

/* ============================
   EXCLUSIVE PAGE STYLES
============================ */

/* Simple Switch */
.simple-switch-section {
    padding: 100px 0 30px;
}

.simple-switch {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.switch-btn {
    padding: 8px 30px;
    border: 2px solid rgba(255, 107, 147, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.switch-btn.active {
    background: var(--gradient-pink);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 15px rgba(255, 107, 147, 0.3);
}

.switch-btn:hover:not(.active) {
    background: rgba(255, 107, 147, 0.1);
    color: #ff6b93;
    border-color: rgba(255, 107, 147, 0.5);
}

/* Content Sections */
.content-section {
    display: none;
    padding: 0 0 50px;
}

.content-section.active-section {
    display: block;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ============================
   PHOTOPACK CARD STYLES (REVISED - HARGA DI BAWAH)
============================ */

/* Content Item - Revisi untuk tampilan seperti referensi */
.content-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.4), 0 0 35px rgba(173, 216, 230, 0.4);
}

/* Photopack Label - teks PHOTOPACK di atas */
.photopack-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: rgba(0, 0, 50, 0.4);
    padding: 8px 12px;
    font-family: 'Lilita One', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.album-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: rgba(255, 0, 0, 0.4);
    padding: 8px 12px;
    font-family: 'Lilita One', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Image Container */
.content-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-top: 35px; /* Untuk memberi ruang untuk photopack-label */
}

.content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-item:hover .content-image {
    transform: scale(1.08);
}

/* Badges NEW/HOT */
.content-badge {
    position: absolute;
    top: 5px; /* Diperhitungkan untuk photopack label */
    right: 8px;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.content-badge.new {
    background: var(--gradient-red);
    color: white;
    animation: newPulse 2s infinite;
}

.content-badge.hot {
    background: var(--gradient-orange);
    color: white;
}

/* Judul - Warna putih dengan outline pink */
.content-title {
    text-align: center;
    color: white;
    font-family: 'Lilita One', sans-serif;
    font-size: 16px;
    margin: 0px 15px 0px;
    padding: 5px 0;
    line-height: 1.2;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: -1px -1px 0 #ff6b93,
                 1px -1px 0 #ff6b93,
                 -1px 1px 0 #ff6b93,
                 1px 1px 0 #ff6b93,
                 0 0 3px rgba(255, 107, 147, 0.5);
}

/* Garis pembatas horizontal */
.content-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255, 0, 0, 0.158) 50%, transparent 90%);
    margin: 0 15px 10px;
}

/* Container wrapper untuk info dan harga */
.content-info-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 15px 12px;
    min-height: 60px;
    gap: 8px; /* Jarak antara description dan harga */
}

/* Description di atas - memenuhi lebar */
.content-description {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
}

.content-info {
    color: var(--color-text-gray);
    line-height: 1.4;
    font-size: 12px;
    text-align: left;
    margin: 0;
    font-family: 'Lilita One', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    display: flex;
    align-items: center;
}

/* NSFW Content Info - Label merah */
.content-info.nsfw .content-label {
    color: #ff416c !important;
}

.content-info.nsfw .content-detail {
    color: var(--color-text-gray) !important;
}

/* SFW Content Info - Semuanya abu-abu */
.content-info.sfw .content-label,
.content-info.sfw .content-detail {
    color: var(--color-text-gray) !important;
}

/* Style untuk label dan detail */
.content-label {
    font-weight: 800;
    font-size: 11px;
    margin-right: 4px;
}

.content-detail {
    font-weight: 700;
    font-size: 10px;
    opacity: 0.9;
}

/* Separator */
.content-separator {
    color: rgba(119, 119, 119, 0.5);
    margin: 0 4px;
}

/* Harga di bawah description, rata kanan */
.price-container {
    display: flex;
    justify-content: flex-end; /* Rata kanan */
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.15); /* Garis tipis pembatas */
}

.price-amount {
    font-family: 'Lilita One', sans-serif;
    font-weight: 800;
    font-size: 13px;
    color: #ff416c;
    line-height: 1;
    text-align: right;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

/* Efek hover untuk harga */
.price-amount:hover {
    color: #ff416c; /* Hijau yang lebih gelap saat hover */
}

/* Hapus style lama untuk harga NSFW */
.content-info-container:has(.content-info.nsfw) .price-amount,
.content-info-wrapper:has(.content-info.nsfw) .price-amount {
    color: #ff416c; /* Tetap hijau meskipun NSFW */
}

/* ============================
   MODALS
============================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--gradient-pink);
    color: white;
}

.modal-header h2 {
    font-family: 'Lilita One', sans-serif;
    font-size: 24px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-body {
    flex: 1;
    padding: 0;
    position: relative;
    min-height: 500px;
}

/* Live Stream Modal */
.live-stream-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.live-stream-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.live-modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.2), 0 0 60px rgba(255, 100, 100, 0.15);
    animation: modalSlideUp 0.4s ease;
}

.live-modal-header {
    background: linear-gradient(135deg, #FF0000, #FF3366);
    padding: 20px 25px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-modal-header h2 {
    font-family: 'Lilita One', sans-serif;
    font-size: 22px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    opacity: 0.8;
}

.live-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.live-modal-body {
    padding: 30px 25px;
}

.modal-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.platform-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.platform-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.platform-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tiktok-option {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(37, 244, 238, 0.08), rgba(254, 44, 85, 0.08));
    border: 2px solid rgba(254, 44, 85, 0.3);
}

.tiktok-option:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(37, 244, 238, 0.15), rgba(254, 44, 85, 0.15));
    border-color: rgba(254, 44, 85, 0.5);
}

.twitch-option {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.05), rgba(100, 65, 165, 0.08));
    border: 2px solid rgba(145, 70, 255, 0.3);
}

.twitch-option:hover {
    background: linear-gradient(135deg, rgba(145, 70, 255, 0.1), rgba(100, 65, 165, 0.15));
    border-color: rgba(145, 70, 255, 0.5);
}

.platform-icon-container {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.tiktok-option .platform-icon-container {
    background: var(--tiktok-gradient);
}

.twitch-option .platform-icon-container {
    background: var(--twitch-gradient);
}

.platform-icon {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    margin: 0 0 5px;
}

.platform-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.platform-arrow {
    font-size: 20px;
    color: #666;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.platform-option:hover .platform-arrow {
    transform: translateX(5px);
    color: #FF0000;
}

.modal-footer-note {
    background: rgba(255, 0, 0, 0.05);
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    text-align: center;
}

.modal-footer-note p {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ============================
   LANGUAGE SWITCHER
============================ */
.language-switcher-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.language-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 10px 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ff66bb;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 187, 0.2);
}

.language-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 187, 0.3);
}

.language-flag {
    font-size: 18px;
}

.language-text {
    font-weight: 700;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    overflow: hidden;
    display: none;
    z-index: 1002;
}

.language-dropdown.show {
    display: block;
    animation: slideDown 0.3s ease;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 102, 187, 0.1);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 102, 187, 0.1);
}

.language-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* Status Message */
.status-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 15px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    animation: slideUp 0.5s ease;
    display: none;
}

/* ============================
   DEMO CONTROLS (HIDDEN BY DEFAULT)
============================ */
#demo-controls {
    display: none;
}

/* ============================
   RESPONSIVE DESIGN
============================ */

/* Tablet */
@media (max-width: 1024px) {
    .social-grid-container { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .content-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .profile-card { width: 90%; padding: 25px; }
    .profile-layout { gap: 30px; }
    .profile-photo-container { flex: 0 0 240px; }
    .simple-switch-section { padding: 90px 0 25px; }
    
    .content-image-container { height: 200px; }
    .content-title { font-size: 15px; min-height: 35px; margin: 10px 12px 6px; }
    .content-info { font-size: 11px; }
    .content-label { font-size: 10px; }
    .content-detail { font-size: 9px; }
    .price-amount { font-size: 16px; }
    .photopack-label { font-size: 13px; padding: 6px 10px; }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .main-content { padding-top: 100px; }
    .pastel-header { flex-wrap: wrap; justify-content: center; padding: 18px 22px; gap: 20px; }
    .nav-links { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .social-grid-container { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0 15px; }
    .content-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .profile-card { padding: 20px; }
    .profile-layout { flex-direction: column; gap: 25px; align-items: center; }
    .profile-photo-container { flex: none; width: 250px; }
    .profile-info { width: 100%; }
    .profile-details { padding: 15px; }
    .simple-switch { gap: 10px; margin-bottom: 25px; }
    .switch-btn { padding: 7px 25px; font-size: 15px; }
    .language-switcher-container { top: 15px; right: 15px; }
    .language-switcher-btn { padding: 8px 12px; font-size: 13px; }
    
    .content-image-container { height: 180px; }
    .content-title { font-size: 14px; min-height: 32px; margin: 8px 10px 6px; }
    .content-info-wrapper { padding: 0 10px 10px; min-height: 45px; }
    .content-info { font-size: 10px; line-height: 1.3; }
    .content-label { font-size: 9px; }
    .content-detail { font-size: 8px; }
    .price-amount { font-size: 15px; }
    .content-divider { margin: 0 10px 8px; }
    .photopack-label { font-size: 12px; padding: 5px 8px; }
}

/* Mobile Portrait */
@media (max-width: 600px) {
    .nav-links a { font-size: 14px; padding: 6px 10px; }
    .profile-card { padding: 15px; }
    .profile-photo-container { width: 200px; }
    .profile-name { font-size: 28px; letter-spacing: 2px; margin-bottom: 15px; }
    .profile-details { padding: 12px; }
    .profile-row { flex-direction: column; align-items: flex-start; gap: 3px; padding: 6px 0; }
    .profile-label, .profile-value { text-align: left; width: 100%; flex: none; }
    .profile-label { font-size: 15px; margin-right: 0; }
    .profile-value { padding-left: 0; padding-top: 2px; font-size: 14px; white-space: normal; text-overflow: clip; }
    .profile-row.highlight { flex-direction: column; align-items: flex-start; padding: 8px 12px; margin: 5px -5px; }
    .profile-row.highlight .profile-label { font-size: 16px; }
    .profile-divider { margin: 8px 0; }
}

@media (max-width: 480px) {
    .social-grid-container { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 10px; }
    .social-card { padding: 18px 12px; }
    .social-icon-container { width: 55px; height: 55px; }
    .social-icon { width: 30px; height: 30px; }
    .social-platform { font-size: 15px; }
    .social-username { font-size: 12px; }
    .content-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .content-item { padding: 10px; border-radius: 10px; }
    .content-image-container { height: 160px; }
    .content-title { font-size: 13px; min-height: 28px; margin: 6px 8px 4px; text-shadow: -0.5px -0.5px 0 #ff6b93, 0.5px -0.5px 0 #ff6b93, -0.5px 0.5px 0 #ff6b93, 0.5px 0.5px 0 #ff6b93; }
    .content-badge { font-size: 10px; padding: 3px 8px; top: 35px; }
    .simple-switch { gap: 8px; margin-bottom: 20px; }
    .switch-btn { padding: 6px 20px; font-size: 14px; }
    
    .content-info-wrapper { padding: 0 8px 8px; min-height: 40px; }
    .content-info { font-size: 9px; line-height: 1.2; }
    .content-label { font-size: 8px; }
    .content-detail { font-size: 7px; }
    .price-container { min-width: 50px; }
    .price-amount { font-size: 14px; }
    .content-divider { margin: 0 8px 6px; }
    .photopack-label { font-size: 11px; padding: 4px 6px; }
}

/* Small Mobile */
@media (max-width: 400px) {
    .profile-photo-container { width: 180px; }
    .profile-name { font-size: 24px; }
    .profile-details { padding: 10px; }
    .pastel-header { padding: 15px; gap: 10px; }
    .nav-links { gap: 10px; }
    .nav-links a { padding: 6px 8px; font-size: 13px; }
    .social-grid-container { padding: 0 10px; }
}

@media (max-width: 360px) {
    .social-grid-container { grid-template-columns: 1fr; gap: 12px; }
    .content-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .content-item { padding: 8px; }
    .content-image-container { height: 150px; }
    .content-title { font-size: 12px; min-height: 26px; margin: 5px 6px 3px; }
    .content-info { font-size: 8px; }
    .content-label { font-size: 7px; }
    .content-detail { font-size: 6px; }
    .price-amount { font-size: 13px; }
    .content-divider { margin: 0 6px 5px; }
    .photopack-label { font-size: 10px; padding: 3px 5px; }
}

/* ============================
   CONTENT SECTION ANIMATIONS
============================ */

.content-section {
    opacity: 0;
    transform: translateX(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.content-section.active-section {
    opacity: 1;
    transform: translateX(0);
}

/* Efek untuk grid items */
.content-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--item-index, 0) * 0.05s);
}

/* Loading animation untuk content grid */
.content-grid {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.content-grid.loading {
    opacity: 0.5;
}