:root {
            --primary: #ff2d6f;
            --primary-dark: #c61d58;
            --accent: #4dd0e1;
            --neutral: #f3f5f7;
            --ink: #1f1f29;
            --muted: #5a5a6d;
            --border: #e2e4ec;
            --shadow: rgba(26, 24, 36, 0.08);
            --card-shadow: rgba(26, 24, 36, 0.14);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", "Segoe UI", Roboto, sans-serif;
            background: var(--neutral);
            color: var(--ink);
            line-height: 1.6;
            min-height: 100vh;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* Header - Same as main page */
        header {
            background: #ffffff;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }

        .nav {
            max-width: 1440px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 0;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--primary);
            letter-spacing: -0.02em;
        }

        .brand i {
            font-size: 1.2rem;
            color: var(--ink);
            margin: 0 0.2rem;
        }

        .brand span {
            color: var(--ink);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--ink);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: var(--muted);
        }

        /* Profile Content */
        .container {
            max-width: 1200px;
            margin: 2.5rem auto;
            padding: 0 2rem;
        }

        .profile-card {
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 22px 40px var(--shadow);
        }

        .profile-header {
            padding: 1.5rem 2rem;
            text-align: center;
            background: linear-gradient(135deg, rgba(255,45,111,0.04), rgba(77,208,225,0.02));
            border-bottom: 1px solid var(--border);
        }

        .username-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .username {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.5px;
        }

        .display-name {
            font-size: 1.3rem;
            color: var(--muted);
            font-weight: 500;
        }

        .age-badge {
            background: var(--primary);
            color: white;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .image-section {
            padding: 2rem;
            background: linear-gradient(to bottom, #ffffff, #fafbfc);
        }

        .image-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .image-container {
            position: relative;
            width: 100%;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
            background: #0f0f17;
        }

        .profile-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .viewer-count {
            background: rgba(255,255,255,0.95);
            color: var(--ink);
            padding: 0.5rem 1rem;
            border-radius: 999px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .no-image-placeholder {
            aspect-ratio: 16/10;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 1.2rem;
            background: linear-gradient(135deg, #f5f5f5, #e9e9e9);
        }

        .no-image-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .content {
            padding: 2.5rem;
        }

        .subject-box {
            background: linear-gradient(135deg, #fafbfc, #f5f7fa);
            padding: 1.8rem;
            border-radius: 14px;
            margin-bottom: 2rem;
            text-align: center;
            border: 1px solid var(--border);
        }

        .subject-label {
            color: var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }

        .subject-text {
            font-size: 1.15rem;
            color: var(--ink);
            line-height: 1.6;
        }

        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 2.5rem;
            justify-content: center;
        }

        .tag {
            background: rgba(77,208,225,0.15);
            color: #0f6370;
            padding: 0.5rem 1.2rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.2s ease;
        }

        .tag:hover {
            background: rgba(77,208,225,0.25);
            transform: translateY(-2px);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .stat-card {
            background: #ffffff;
            padding: 1.8rem;
            border-radius: 14px;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px var(--shadow);
            border-color: var(--primary);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.8rem;
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .details-section {
            background: linear-gradient(135deg, #fafbfc, #ffffff);
            padding: 2rem;
            border-radius: 14px;
            border: 1px solid var(--border);
            margin-bottom: 2.5rem;
        }

        .details-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.2rem;
        }

        @media (min-width: 769px) {
            .details-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .detail-item {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .detail-item {
                padding: 1rem 0.8rem;
                gap: 0.8rem;
            }
        }

        .detail-item:hover {
            transform: translateX(4px);
            border-color: var(--primary);
        }

        .detail-icon {
            font-size: 1.4rem;
            width: 40px;
            text-align: center;
        }

        .detail-content {
            flex: 1;
            min-width: 0;
        }

        .detail-label {
            font-size: 0.8rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-bottom: 0.2rem;
        }

        .detail-value {
            font-size: 1.05rem;
            color: var(--ink);
            font-weight: 600;
            word-break: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }

        @media (max-width: 768px) {
            .detail-value {
                font-size: 0.95rem;
            }
        }

        /* Recent Articles Section */
        .articles-section {
            background: linear-gradient(135deg, #fafbfc, #ffffff);
            padding: 2.5rem;
            border-radius: 14px;
            border: 1px solid var(--border);
            margin-bottom: 2.5rem;
        }

        .articles-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .articles-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--ink);
        }

        .view-all-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.2s ease;
        }

        .view-all-link:hover {
            gap: 0.8rem;
        }

        .articles-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .article-preview {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            display: block;
        }

        .article-preview:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px var(--shadow);
            border-color: var(--primary);
        }

        .article-preview-date {
            font-size: 0.8rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .article-preview-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 0.8rem;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-preview:hover .article-preview-title {
            color: var(--primary);
        }

        .article-preview-excerpt {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .article-preview-link {
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }

        @media (max-width: 768px) {
            .articles-list {
                grid-template-columns: 1fr;
            }
            
            .articles-section {
                padding: 1.5rem;
            }
        }

        .actions {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.2rem;
            padding: 0 2.5rem 2.5rem;
        }

        .btn {
            padding: 1.1rem 1.8rem;
            border-radius: 999px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 16px 30px rgba(255,45,111,0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255,45,111,0.35);
        }

        .btn-secondary {
            background: rgba(77,208,225,0.15);
            color: #0f6370;
            font-weight: 700;
        }

        .btn-secondary:hover {
            background: rgba(77,208,225,0.25);
            transform: translateY(-3px);
        }

        /* Footer - Same as main page */
        footer {
            background: #0f0f17;
            color: rgba(255,255,255,0.68);
            padding: 3.5rem 2rem 3rem;
            margin-top: 4rem;
        }

        .footer__inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            gap: 1.5rem;
        }

        .footer__top {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.78);
        }

        .footer__meta {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
        }

        .footer__meta a {
            color: rgba(77,208,225,0.9);
        }

        .footer__meta a:hover {
            text-decoration: underline;
        }

        .legal {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.45);
            line-height: 1.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
                margin: 1.5rem auto;
            }

            .username {
                font-size: 1.8rem;
            }

            .username-display {
                flex-direction: column;
                gap: 0.5rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-card {
                padding: 1.2rem;
            }

            .stat-value {
                font-size: 1.6rem;
            }

            .details-grid {
                grid-template-columns: 1fr;
            }

            .actions {
                grid-template-columns: 1fr;
            }

            .nav {
                justify-content: center;
                text-align: center;
            }

            .nav-left {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }

            .nav-meta {
                width: 100%;
                justify-content: center;
            }

            .content {
                padding: 1.5rem;
            }

            .image-section {
                padding: 1.5rem 1rem;
            }

            .image-overlay {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
        }

        @media (min-width: 769px) {
            .details-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }
        }
        
        @media (max-width: 468px) {
            .viewer-count {
               display:none!important;
            }
        }
        
        
        .white {
            color: white!important;
        }

        /* Live Recording Button Styles */
        .btn-primary i.fa-circle {
            font-size: 0.75rem;
            animation: blink-live 1.5s ease-in-out infinite;
        }

        /* Simple blinking animation for live effect */
        @keyframes blink-live {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.3;
            }
        }
        
         .articles-section {
            background:none!important;border:none!important
        }
        
        /* Remove the extra padding from articles-section to match other sections */
.articles-section {
    background: none!important;
    border: none!important;
    padding: 0; /* Changed from 2.5rem */
    margin-bottom: 2.5rem;
}

/* Mobile responsive adjustments for article section header */
@media (max-width: 768px) {
    .articles-section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .articles-section-title {
        margin-bottom: 0;
    }
    
    .articles-list {
        grid-template-columns: 1fr;
    }
    
    .articles-section {
        padding: 0; /* Changed from 1.5rem */
    }
}
/* Recordings Section */
.recordings-section {
    margin-bottom: 2.5rem;
}

.recordings-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.recordings-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
}

.recordings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.recording-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: block;
}

.recording-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--shadow);
    border-color: var(--primary);
}

.recording-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #0f0f17;
}

.recording-image,
.recording-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.recording-image {
    opacity: 1;
    z-index: 1;
}

.recording-video {
    opacity: 0;
    z-index: 2;
}

.recording-card:hover .recording-image {
    transform: scale(1.05);
}

.recording-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.85);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.recording-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.recording-card:hover .recording-play-overlay {
    opacity: 0.9;
}

.recording-info {
    padding: 1rem;
}

.recording-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.recording-date,
.recording-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recording-title {
    font-size: 0.85rem;
    color: var(--ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recording-card:hover .recording-title {
    color: var(--primary);
}

@media (max-width: 768px) {
    .recordings-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .recordings-section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    
    .recording-info {
        padding: 0.8rem;
    }
    
    .recording-meta {
        font-size: 0.7rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .recordings-grid {
        grid-template-columns: 1fr;
    }
}
        