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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
    filter: blur(20px);
    transform: scale(1.1);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Top Header */
.top-header {
    background: black;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.header-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.verified-icon {
    width: 18px;
    height: 18px;
}

/* Main Photo */
.main-photo {
    width: 100%;
    aspect-ratio: 3/4;
    margin: 0 auto 20px;
    overflow: hidden;
    background: transparent;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OnlyFans Button */
.onlyfans-button-wrapper {
    padding: 0 20px;
    margin-bottom: 16px;
}

.onlyfans-button {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: black;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.onlyfans-button:hover {
    background: #333;
}

/* Profile Header */
.profile-header {
    padding: 24px 20px 16px;
    text-align: center;
}

.profile-name {
    font-size: 32px;
    font-weight: 700;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.verified-badge {
    width: 24px;
    height: 24px;
}

.username {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 20px 20px;
}

.social-thumbnail {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.social-thumbnail.onlyfans {
    aspect-ratio: 2/1;
}

.social-thumbnail.onlyfans img {
    object-fit: cover;
}

.social-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.thumbnail-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.thumbnail-label span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.platform-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.thumbnail-label img.platform-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Follower Count */
.follower-count {
    text-align: center;
    padding: 16px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.follower-count .count {
    font-size: 24px;
    font-weight: 700;
}

.follower-count .label {
    font-size: 16px;
    opacity: 0.9;
}

.chevron-down {
    margin-left: 4px;
    color: rgba(255, 255, 255, 0.6);
}

/* Details */
.details {
    padding: 0 20px 24px;
    text-align: center;
}

.detail-item {
    margin-bottom: 8px;
    color: white;
    font-size: 16px;
}

.detail-icon {
    font-size: 20px;
    margin-right: 6px;
}

.snap-username {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Tabs Section */
.tabs-section {
    padding: 0 20px 20px;
}

.tab-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn.active {
    background: #9333EA;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Shouts Video */
.shouts-video {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 9/16;
    background: #1a1a1a;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.video-overlay.visible {
    display: flex;
}

/* Shouts Images */
.shouts-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.shouts-images img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* Locked Content */
.locked-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
}

.lock-icon {
    width: 64px;
    height: 64px;
    color: #FFD700;
    margin-bottom: 16px;
}

.continue-text {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.unlock-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #9333EA 0%, #DA70D6 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s;
}

.unlock-button:hover {
    transform: scale(1.05);
}

/* Engagement Stats */
.engagement-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 20px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.stat-item svg {
    width: 24px;
    height: 24px;
}

.stat-item span {
    font-size: 16px;
    font-weight: 600;
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.media-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

/* TikTok Section */
.tiktok-section {
    padding: 0 20px 40px;
}

.tiktok-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 24px;
}

.tiktok-videos {
    display: flex;
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.tiktok-videos::-webkit-scrollbar {
    height: 8px;
}

.tiktok-videos::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.tiktok-videos::-webkit-scrollbar-thumb {
    background: #9333EA;
    border-radius: 4px;
}

.tiktok-embed {
    flex: 0 0 calc(100% - 20px);
    margin: 0;
    scroll-snap-align: start;
    min-width: 325px;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .profile-card {
        border-radius: 16px;
    }

    .profile-header {
        padding: 20px 16px 12px;
    }

    .profile-name {
        font-size: 28px;
    }

    .social-grid {
        padding: 0 16px 16px;
        gap: 6px;
    }

    .details {
        padding: 0 16px 20px;
    }
}
