/* Influencer Page Premium Styles */
:root {
    --primary-yellow: #fff003;
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

.influencer-hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 100%);
    padding: 50px 0 100px;
    position: relative;
    overflow: hidden;
}

.influencer-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(0,0,0,0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: rotateY(0deg) rotateX(0deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.card-1 { top: 10%; left: -10%; }
.card-2 { bottom: 10%; right: -5%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.perks-section {
    background: var(--dark-bg);
    padding: 120px 0;
    color: white;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.perk-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px 0; /* Align left but keep spacing */
    font-size: 1.5rem;
    color: #000;
}

/* Center icons in boxes if needed */
.perk-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-tag {
    color: var(--primary-yellow);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 16px;
}

.how-it-works {
    padding: 120px 0;
    background: white;
}

.step-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: -40px;
    left: 20px;
    line-height: 1;
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.premium-btn {
    background: #000;
    color: var(--primary-yellow);
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.premium-btn:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: scale(1.05);
}

.premium-btn-outline {
    background: transparent;
    color: #000;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.premium-btn-outline:hover {
    background: #000;
    color: var(--primary-yellow);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title { font-size: 3.5rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-image-wrapper { margin-top: 60px; }
    .perks-section .col-md-6 { margin-bottom: 30px; }
    .step-number { font-size: 5rem; top: -20px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .premium-btn, .premium-btn-outline { width: 100%; text-align: center; margin-bottom: 10px; }
    .display-3 { font-size: 2rem !important; }
}
