/* Exact replica of original TikTok premium accounts interface */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header Section */
.header-section {
    margin-bottom: 60px;
}

.main-title {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.discord-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.discord-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Disclaimer Text */
.disclaimer-text {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.4;
    margin-top: 16px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: transparent;
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
}

/* Section Title */
.section-title {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px;
}

/* Profiles Grid */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Profile Card */
.profile-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Profile Avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: block;
    object-fit: cover;
    border: 2px solid #404040;
}

/* Profile Username */
.profile-username {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

/* Profile Niche */
.profile-niche {
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    background-color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    margin: 0 auto 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    text-align: center;
}

/* Profile Price */
.profile-price {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 24px;
}

/* Audience Targeting Section */
.audience-targeting {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #444444;
}

.audience-title {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item {
    text-align: left;
}

.stat-label {
    font-size: 12px;
    color: #888888;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

/* View Button */
.view-btn {
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.view-btn:hover {
    background-color: #f0f0f0;
    color: #000000;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Loading and Error States */
.loading-section {
    margin: 60px 0;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

.error-container {
    margin: 60px 0;
}

.alert {
    background-color: #2a2a2a;
    border: 1px solid #ff4444;
    border-radius: 8px;
    color: #ffffff;
}

.alert-danger {
    background-color: rgba(255, 68, 68, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-wrapper {
        padding: 20px 15px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .profiles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 24px;
    }
    
    .stats-grid {
        gap: 12px 16px;
    }
    
    .stat-value {
        font-size: 14px;
    }
}