/* Promotional Banner */
.promo-banner {
    background: #FF4384;
    color: white;
    padding: 12px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(255, 67, 132, 0.2);
}

.promo-content {
    max-width: 480px;
    margin: 0 auto;
}

.promo-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 480px) {
    .promo-banner {
        padding: 10px 16px;
    }
    
    .promo-text {
        font-size: 13px;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 440px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
    position: relative;
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF8FB 100%);
    border-radius: 24px;
    margin-bottom: 16px;
    box-shadow: 0 8px 32px rgba(255, 67, 132, 0.12);
    border: 2px solid #FFE8F1;
    position: relative;
    overflow: hidden;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 67, 132, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.6;
}

.profile-image {
    margin-bottom: 16px;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 28px;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 67, 132, 0.15),
                0 0 0 3px rgba(255, 255, 255, 1),
                0 0 0 5px rgba(255, 67, 132, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:hover {
    transform: scale(1.02) translateY(-1px);
    box-shadow: 0 10px 28px rgba(255, 67, 132, 0.2),
                0 0 0 3px rgba(255, 255, 255, 1),
                0 0 0 5px rgba(255, 67, 132, 0.15);
}

.profile-name {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin: 16px 0 0 0;
    background: linear-gradient(135deg, #FF4384 0%, #FF6B9D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 0.2px;
    position: relative;
}

.profile-bio {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    margin: 0;
    line-height: 1.4;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF4384, #FF6B9D);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 67, 132, 0.2);
}

.social-icon:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 5px 16px rgba(255, 67, 132, 0.25);
}



/* Cohort Card Container */
.cohort-card {
    margin-bottom: 16px;
    animation: slideInUp 0.6s ease-out 0.6s both;
}

.cohort-card .link-card {
    margin-bottom: 12px;
}

/* Countdown Timer */
.countdown-timer {
    background: linear-gradient(135deg, #FF1744, #FF5722);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
    text-align: center;
    max-width: fit-content;
    margin: 0 auto;
    transition: all 0.2s ease;
    cursor: pointer;
    animation: slideInUp 0.6s ease-out 0.8s both;
}

.countdown-timer:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 16px rgba(255, 23, 68, 0.5);
}

.countdown-text {
    letter-spacing: 0.5px;
}

#timeLeft {
    font-weight: 800;
}

/* Slide-in animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Links Section */
.links-section {
    padding: 0 0 40px 0;
}

.featured-link {
    margin-bottom: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 18px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    border: 2px solid #F8F9FA;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 67, 132, 0.08);
    border-color: #FFE8F1;
}

.link-card.featured {
    padding: 20px;
    background: linear-gradient(135deg, #FF4384, #FF6B9D);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 67, 132, 0.2);
    border: 2px solid transparent;
}

.link-card.featured:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 67, 132, 0.3);
}

.link-card.featured-white {
    padding: 20px;
    background: linear-gradient(135deg, #FF4384, #FF6B9D);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 67, 132, 0.2);
    border: 2px solid transparent;
}

.link-card.featured-white:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 67, 132, 0.3);
}

.link-card.featured-white .link-content h3 {
    color: white;
}

.link-card.featured-white .link-content p {
    color: rgba(255, 255, 255, 0.9);
}

.link-card.featured-white .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.link-card.featured-white .link-arrow {
    color: white;
}

/* Website Section */
.website-section {
    margin-bottom: 16px;
}

/* Broker Card */
.broker-section {
    margin-bottom: 16px;
}

.link-card.broker-card {
    background: white;
    border: 2px solid #FFB3D1;
}

.link-card.broker-card .link-icon {
    background: #FFF0F5;
    color: #FF4384;
}

.link-card.newsletter {
    border: 2px solid #FF4384;
    background: rgba(255, 67, 132, 0.05);
}

.link-card.free-community {
    background: white;
    border: 2px solid #FFC1E3;
}

.link-card.paid-community {
    background: white;
    border: 2px solid #FFB3D1;
}

.link-card.cohort {
    background: white;
    border: 2px solid #F8BBE0;
}

.youtube-video-card {
    background: white;
    border: 2px solid #FFB3D1;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

.youtube-video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 67, 132, 0.08);
    border-color: #FF6B9D;
}

.youtube-video-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background: #F8F9FA;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.link-card.substack {
    background: white;
    border: 2px solid #FFADD6;
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: white;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.free-badge {
    background: #FF6B9D;
}

.popular-badge {
    background: #FF4384;
}

.vip-badge {
    background: #E91E63;
}

.new-badge {
    background: #FF1744;
}

.subscribe-badge {
    background: #FF5722;
}



.link-card.consultation .link-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.link-card.free-community .link-icon {
    background: #FFE8F1;
    color: #FF6B9D;
}

.link-card.paid-community .link-icon {
    background: #FDF2F8;
    color: #FF4384;
}

.link-card.cohort .link-icon {
    background: #FCE7F3;
    color: #E91E63;
}

.link-card.substack .link-icon {
    background: #FFF0F5;
    color: #FF5722;
}

.link-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F8F9FA;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #FF4384;
    margin-right: 14px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.link-card.featured .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.link-card.consultation .link-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    line-height: 1.3;
    color: #333;
}

.link-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
}

.link-card.featured .link-content p {
    color: rgba(255, 255, 255, 0.8);
}

.link-arrow {
    font-size: 16px;
    color: #999;
    margin-left: 12px;
    transition: all 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(4px);
    color: #FF4384;
}

.link-card.featured:hover .link-arrow {
    color: white;
}

/* Links Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}



/* Contact Section */
.contact-section {
    margin: 0;
    animation: slideInUp 0.6s ease-out 1.2s both;
}

/* Disclaimers Section */
.disclaimers-section {
    text-align: center;
    padding: 16px 0 0 0;
}

.disclaimers-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.disclaimers-link:hover {
    color: #FF4384;
}

.disclaimers-link i {
    font-size: 14px;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #FFE8F1;
    box-shadow: 0 4px 16px rgba(255, 67, 132, 0.06);
    transition: all 0.2s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 67, 132, 0.1);
    border-color: #FFB3D1;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FDF2F8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FF4384;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
    background: #FCE7F3;
}

.contact-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.contact-info p {
    font-size: 14px;
    color: #666;
}

/* Footer */
.footer {
    text-align: center;
    padding: 32px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.footer p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 16px;
    }
    
    .profile-section {
        padding: 32px 16px;
        margin-bottom: 20px;
    }
    
    .profile-name {
        font-size: 24px;
    }
    
    .profile-bio {
        font-size: 14px;
    }
    
    .link-card {
        padding: 16px;
    }
    
    .link-card.featured {
        padding: 20px 16px;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .youtube-video-card {
        padding: 16px;
    }
    
    .youtube-video-card h3 {
        font-size: 15px;
    }
    

}



/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.link-card:focus,
.social-link:focus {
    outline: 2px solid #FF4384;
    outline-offset: 2px;
}



/* Dark mode disabled - always use light pink theme */