@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #0d1117; /* Very Dark Blue/Black */
    --surface-color: #161b22;
    --background-color: #ffffff;
    --background-alt: #f8f9fa;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-blue: #2563eb;
    --accent-purple: #7c3aed;
    --gradient-accent: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Utility */
.text-gradient {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Badge Utility */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--background-alt);
    color: var(--accent-blue);
}

.badge.blue { background: rgba(37, 99, 235, 0.1); color: var(--accent-blue); }
.badge.purple { background: rgba(124, 58, 237, 0.1); color: var(--accent-purple); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.2rem;
    background: var(--gradient-accent);
    box-shadow: var(--shadow-glow);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.search-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.search-btn:hover {
    color: var(--accent-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 0;
    background: var(--background-alt);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #1e293b, #0d1117);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Intro Section */
.platform-intro {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.platform-intro p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

.platform-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Article Grid Section */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--background-alt);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.article-card-img {
    height: auto;
    min-height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card-img img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
    display: block;
}

.article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.article-card-title a {
    color: var(--text-primary);
}

.article-card-title a:hover {
    color: var(--accent-blue);
}

.article-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Trending Categories */
.categories-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.category-tag {
    padding: 12px 24px;
    background: white;
    border-radius: 30px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.category-tag:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-2px);
}

/* Trending Section */
.trending-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trending-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.trending-item-num {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--border-color);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.trending-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.trending-item-content h4 a:hover {
    color: var(--accent-blue);
}

/* CTA Section */
.cta-section {
    padding: 20px 0 80px;
}

.cta-container {
    background: var(--gradient-accent);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-btn {
    background: white;
    color: var(--accent-blue);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    color: var(--accent-purple);
}

/* Resources & Events Cards */
.resource-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-blue);
}

.resource-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.resource-title {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.resource-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex: 1;
}

.event-card {
    display: flex;
    gap: 24px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
    align-items: center;
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-color: var(--accent-purple);
}

.event-date {
    background: var(--background-alt);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    min-width: 80px;
    border: 1px solid var(--border-color);
}

.event-date-month {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: block;
}

.event-date-day {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-top: 4px;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.event-meta {
    display: flex;
    gap: 16px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.event-meta i {
    color: var(--accent-blue);
}

/* Footer Design */
.footer {
    background: #080b0f;
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: #94a3b8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--gradient-accent);
    color: white;
}

/* Article Detail Page */
.article-header {
    margin-top: 80px;
    padding: 60px 0 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.article-header h1 {
    font-size: 3.5rem;
    margin: 24px 0;
}

.article-author-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-secondary);
}

.article-author-large img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.article-featured-image {
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
}

.article-body blockquote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid var(--accent-blue);
    padding: 24px;
    margin: 32px 0;
    background: var(--background-alt);
    border-radius: 0 12px 12px 0;
}

/* Share Buttons */
.share-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-alt);
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.share-btn:hover {
    background: var(--gradient-accent);
    color: white;
}

/* Interview specific */
.qa-block {
    margin-bottom: 40px;
}

.qa-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.qa-question::before {
    content: 'Q:';
    color: var(--accent-blue);
}

.qa-answer {
    padding-left: 32px;
    position: relative;
}

.qa-answer::before {
    content: 'A:';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--text-secondary);
}

/* Page Headers */
.page-header {
    margin-top: 80px;
    padding: 80px 0;
    background: var(--background-alt);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trending-layout {
        grid-template-columns: 1fr;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .article-header h1 {
        font-size: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Editor Pick Card */
.editor-pick-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.editor-pick-card:hover {
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.epc-img {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.epc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.editor-pick-card:hover .epc-img img {
    transform: scale(1.08);
}

.epc-img .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.epc-content {
    padding: 16px;
}

.epc-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.epc-content h4 a:hover {
    color: var(--accent-blue);
}

/* Premium CTA */
.premium-cta {
    background: linear-gradient(135deg, #1e1b4b, #4c1d95, #2563eb);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.premium-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPjxyZWN0IHdpZHRoPSI0IiBoZWlnaHQ9IjQiIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.5;
    pointer-events: none;
}

.premium-btn {
    background: white;
    color: #4c1d95;
    font-weight: 800;
}

.premium-btn:hover {
    background: rgba(255,255,255,0.9);
    color: #1e1b4b;
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Search Modal */
.search-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-container.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-close:hover {
    transform: scale(1.1);
}

.search-box {
    width: 100%;
    max-width: 800px;
    position: relative;
    padding: 0 24px;
}

.search-input {
    width: 100%;
    padding: 24px;
    font-size: 2rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    color: white;
    outline: none;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent-blue);
}

.search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.search-results {
    width: 100%;
    max-width: 800px;
    margin-top: 40px;
    padding: 0 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: background 0.2s ease;
    text-decoration: none;
    color: white;
}

.search-result-item:hover {
    background: rgba(255,255,255,0.1);
}

.search-result-content h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.search-result-content span {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* New Explore UI */
.explore-section .category-tag {
    display: inline-flex;
    align-items: center;
    background: white;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}
.explore-section .category-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}
.explore-section .category-tag i {
    transition: transform 0.3s ease;
}
.explore-section .category-tag:hover i {
    transform: scale(1.1);
}
/* Share Modal Styles */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 11, 15, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.share-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.share-modal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.share-modal.active .share-modal-content {
    transform: translateY(0);
}

.share-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.share-modal-close:hover {
    background: #e2e8f0;
    color: var(--accent-blue);
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.share-option:hover {
    transform: translateY(-5px);
}

.share-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.share-option span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.share-whatsapp .share-icon { background: #25D366; }
.share-twitter .share-icon { background: #1DA1F2; }
.share-linkedin .share-icon { background: #0A66C2; }
.share-insta .share-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-copy .share-icon { background: #64748b; }
