/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0d0d0d;
    font-size: 14px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Заголовок */
.header {
    background: #1a1a1a;
    color: white;
    padding: 0.75rem 0;
    border-bottom: 1px solid #2a2a2a;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}

.nav-container {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.nav-container::-webkit-scrollbar {
    display: none;
}

.nav-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(to left, rgba(26, 26, 26, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.nav {
    display: flex;
    gap: 0.5rem;
    min-width: max-content;
    padding: 0.25rem 0;
}

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-link:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

.nav-link.active {
    background-color: #3a3a3a;
    color: #ffffff;
}

/* Основной контент */
.main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 600;
}

/* Сетка карточек */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1rem;
}

/* Карточки */
.card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 80px;
}

.card:hover {
    border-color: #3a3a3a;
    background: #1f1f1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Новые стили для карточек */
.card-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: 8px;
}

.card-info {
    flex: 1;
    text-align: left;
}

.card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.card-position {
    color: #a0a0a0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0 0 0.25rem 0;
}

.card-company {
    color: #888888;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* Старые стили для совместимости */
.card-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 2px solid #2a2a2a;
}

.card-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Старые стили для совместимости */
.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.card-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    color: #a0a0a0;
    font-size: 0.85rem;
}

.card-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}

.metric {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: #2a2a2a;
    border-radius: 4px;
    font-size: 0.85rem;
}

.metric-label {
    font-weight: 500;
    color: #a0a0a0;
}

.metric-value {
    font-weight: 600;
    color: #ffffff;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.rating-value {
    font-weight: 600;
    color: #ffffff;
}

.rating-count {
    color: #a0a0a0;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    padding: 0.4rem 0.8rem;
    background-color: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid #3a3a3a;
}

.social-link:hover {
    background-color: #3a3a3a;
    border-color: #4a4a4a;
}

/* Подвал */
.footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #2a2a2a;
}

/* Адаптивность */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .card-metrics {
        grid-template-columns: 1fr;
    }
}

/* Анимации загрузки */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.2rem;
    color: #7f8c8d;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Пустое состояние */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Специальные стили для разных типов карточек */
.specialist-card .card-header {
    border-bottom: 2px solid #e74c3c;
}

.company-card .card-header {
    border-bottom: 2px solid #3498db;
}

.blogger-card .card-header {
    border-bottom: 2px solid #e67e22;
}

.vk-channel-card .card-header {
    border-bottom: 2px solid #4a90e2;
}

.telegram-channel-card .card-header {
    border-bottom: 2px solid #0088cc;
}

/* Стили для отдельных страниц */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-description {
    font-size: 1.1rem;
    color: #a0a0a0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Центральный поиск */
.search-section {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    width: 100%;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #ffffff;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4a4a4a;
    background: #1f1f1f;
}

.search-input::placeholder {
    color: #a0a0a0;
}

.search-button {
    padding: 1rem 2rem;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-button:hover {
    background: #3a3a3a;
    border-color: #4a4a4a;
}

.search-button:active {
    transform: translateY(1px);
}

/* Фильтры (старые стили для совместимости) */
.filters {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
}

.filter-group label {
    font-weight: 500;
    color: #ffffff;
    font-size: 0.9rem;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #2a2a2a;
    color: #ffffff;
    transition: all 0.2s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #4a4a4a;
    background: #2f2f2f;
}

/* Обзорная страница */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.overview-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.overview-card:hover {
    border-color: #3a3a3a;
    background: #1f1f1f;
    transform: translateY(-2px);
}

.overview-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overview-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.overview-link {
    display: inline-block;
    background: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid #3a3a3a;
    font-size: 0.9rem;
}

.overview-link:hover {
    background: #3a3a3a;
    border-color: #4a4a4a;
}

/* Детальные страницы */
.detail-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.detail-header {
    margin-bottom: 2rem;
}

.detail-avatar {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.avatar-placeholder-large {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: 12px;
}

.detail-info {
    width: 80px;
    flex-shrink: 0;
}

.detail-info h1 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-weight: 600;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.detail-info .subtitle {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.company-name {
    color: #888888;
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.social-links-top {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-rating .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.detail-rating .value {
    font-weight: 600;
    color: #ffffff;
}

.detail-rating .count {
    color: #a0a0a0;
    font-size: 0.9rem;
}

.detail-content {
    display: grid;
    gap: 2rem;
}

.detail-section {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
}

.detail-section h2 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-metric {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
}

.detail-metric .label {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.detail-metric .value {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    color: #ffffff;
    border-color: #3a3a3a;
    background: #1f1f1f;
}

/* История работы */
.work-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-item {
    background: #2a2a2a;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #4a4a4a;
}

.work-position {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.work-company {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.work-date {
    color: #a0a0a0;
    font-size: 0.8rem;
}

/* Дополнительная информация в карточках */
.specialization,
.telegram-info {
    margin: 0.75rem 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.specialization strong,
.telegram-info strong {
    color: #ffffff;
    font-weight: 600;
}

/* Стили для сотрудников компании */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.staff-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.staff-card:hover {
    border-color: #3a3a3a;
    background: #1f1f1f;
    transform: translateY(-2px);
}

.staff-avatar {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.staff-info {
    flex: 1;
}

.staff-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.staff-position {
    color: #a0a0a0;
    font-size: 0.85rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .search-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .search-button {
        width: 100%;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .detail-header {
        margin-bottom: 1.5rem;
    }
    
    .detail-avatar {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .detail-info {
        width: 80px;
        flex-shrink: 0;
    }
    
    .detail-info h1 {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .detail-info .subtitle {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .company-name {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .social-links-top {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .header .container {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 13px;
    }
    
    .card {
        padding: 0.75rem;
        min-height: 70px;
    }
    
    .card-avatar-small {
        width: 50px;
        height: 50px;
    }
    
    .card-name {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .card-position {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .card-company {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* MediaHunt Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    border-radius: 50%;
    filter: blur(40px);
    animation: color-mix 4s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
    transition: background 0.5s ease-in-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}


@keyframes color-mix {
    0% {
        background: radial-gradient(circle, 
            rgba(0, 255, 0, 0.4) 0%, 
            rgba(255, 165, 0, 0.3) 30%, 
            rgba(255, 0, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
    15% {
        background: radial-gradient(circle, 
            rgba(0, 255, 0, 0.4) 0%, 
            rgba(255, 165, 0, 0.3) 30%, 
            rgba(255, 0, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
        filter: blur(30px);
    }
    30% {
        background: radial-gradient(circle, 
            rgba(0, 255, 0, 0.4) 0%, 
            rgba(255, 165, 0, 0.3) 30%, 
            rgba(255, 0, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
    35% {
        background: radial-gradient(circle, 
            rgba(255, 0, 255, 0.4) 0%, 
            rgba(0, 255, 255, 0.3) 30%, 
            rgba(255, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
    50% {
        background: radial-gradient(circle, 
            rgba(255, 0, 255, 0.4) 0%, 
            rgba(0, 255, 255, 0.3) 30%, 
            rgba(255, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
        filter: blur(30px);
    }
    65% {
        background: radial-gradient(circle, 
            rgba(255, 0, 255, 0.4) 0%, 
            rgba(0, 255, 255, 0.3) 30%, 
            rgba(255, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
    70% {
        background: radial-gradient(circle, 
            rgba(255, 165, 0, 0.4) 0%, 
            rgba(255, 0, 0, 0.3) 30%, 
            rgba(0, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
    85% {
        background: radial-gradient(circle, 
            rgba(255, 165, 0, 0.4) 0%, 
            rgba(255, 0, 0, 0.3) 30%, 
            rgba(0, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
        filter: blur(30px);
    }
    100% {
        background: radial-gradient(circle, 
            rgba(255, 165, 0, 0.4) 0%, 
            rgba(255, 0, 0, 0.3) 30%, 
            rgba(0, 255, 0, 0.2) 60%, 
            rgba(0, 0, 0, 0.1) 80%, 
            transparent 100%);
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(40px);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #888888;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* MediaHunt Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-category {
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-card:hover {
    border-color: #3a3a3a;
    background: #1f1f1f;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.feature-content {
    margin-bottom: 2rem;
}

.feature-headline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: none;
}

.feature-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #888888;
}

.feature-link {
    display: block;
    background: #2a2a2a;
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
}

.feature-link:hover {
    background: #3a3a3a;
    transform: translateY(-1px);
}

/* MediaHunt CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 0;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    margin-top: 2rem;
}

.cta-content {
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.cta-button.primary {
    background: #ffffff;
    color: #0d0d0d;
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #2a2a2a;
}

.cta-button.secondary:hover {
    border-color: #3a3a3a;
    background: #1f1f1f;
    transform: translateY(-2px);
}

/* MediaHunt Responsive */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title::before {
        width: 100%;
        height: 100%;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-category {
        left: 1.5rem;
    }
    
    .feature-headline {
        font-size: 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}
