/* ========================================
   Reusable Component Styles
   ======================================== */

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
}

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

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-secondary);
}

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--accent-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 var(--space-4);
    max-width: var(--container-max);
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-decoration: none;
}

.header-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search {
    flex: 1;
    max-width: 400px;
    margin: 0 var(--space-6);
}

.header-search input {
    width: 100%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-4);
    padding-left: var(--space-10);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.header-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    cursor: pointer;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.header-nav a {
    position: relative;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    white-space: nowrap;
    overflow: hidden;
}

.header-nav a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0;
    transition: opacity var(--transition-fast);
    border-radius: var(--radius-full);
    z-index: -1;
}

.header-nav a:hover {
    color: var(--text-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.header-nav a:hover::before {
    opacity: 1;
}

/* Responsive - hide on smaller screens */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }
}

/* ===== Search Box ===== */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.search-box input {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    padding-left: var(--space-12);
    font-size: var(--text-base);
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
}

.search-box-icon {
    position: absolute;
    left: var(--space-4);
    color: var(--text-muted);
}

.search-box-btn {
    position: absolute;
    right: var(--space-2);
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.search-box-btn:hover {
    background: var(--accent-primary-hover);
    transform: scale(1.05);
}

/* ===== Category Tabs ===== */
.category-tabs {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    padding: var(--space-2) 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: all var(--transition-fast);
    cursor: pointer;
}

.category-tab:hover {
    color: var(--text-primary);
    background: var(--bg-card-hover);
    border-color: var(--border-secondary);
}

.category-tab.active {
    color: var(--text-primary);
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

/* ===== Video Card ===== */
.video-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.video-card:hover {
    transform: translateY(-4px);
}

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

.video-thumbnail {
    position: relative;
    aspect-ratio: var(--video-aspect);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.video-duration {
    position: absolute;
    bottom: var(--space-2);
    right: var(--space-2);
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    background: var(--overlay-dark);
    border-radius: var(--radius-sm);
}

.video-live {
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    background: var(--color-live);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.video-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: var(--radius-full);
    animation: pulse 1.5s infinite;
}

.video-info {
    display: flex;
    gap: var(--space-3);
}

.video-channel-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    background: var(--bg-elevated);
    overflow: hidden;
}

.video-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-details {
    flex: 1;
    min-width: 0;
}

.video-title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-1);
}

.video-channel-name {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    margin-bottom: var(--space-1);
}

.video-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Sponsored Video Card */
.video-card.sponsored .video-thumbnail::after {
    content: 'SPONSORED';
    position: absolute;
    top: var(--space-2);
    left: var(--space-2);
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
    font-weight: var(--font-bold);
    background: var(--color-success);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
}

.video-card.sponsored .video-channel-name {
    color: var(--color-success);
}

/* ===== Ad Banner ===== */
.ad-banner {
    position: relative;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    overflow: hidden;
}

.ad-banner::before {
    content: 'AD';
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
    font-weight: var(--font-bold);
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
}

.ad-banner-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.ad-banner-subtitle {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-4);
}

.ad-banner-close {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.ad-banner-close:hover {
    color: var(--text-primary);
}

/* ===== Ad Sidebar Card ===== */
.ad-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    position: relative;
}

.ad-sidebar::before {
    content: 'AD';
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    padding: var(--space-1) var(--space-2);
    font-size: 10px;
    font-weight: var(--font-bold);
    color: var(--text-muted);
    background: var(--bg-elevated);
    border-radius: var(--radius-sm);
}

.ad-sidebar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
    background: var(--accent-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.ad-sidebar-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.ad-sidebar-text {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-bottom: var(--space-4);
}

.ad-sidebar-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* ===== Comments ===== */
.comments-section {
    margin-top: var(--space-6);
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-4);
}

.comments-count {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
}

.comments-sort {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-secondary);
    cursor: pointer;
}

.comment-input {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.comment-input input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-primary);
    border-radius: 0;
    padding: var(--space-2) 0;
}

.comment-input input:focus {
    border-bottom-color: var(--accent-primary);
    box-shadow: none;
}

.comment {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    flex-shrink: 0;
    overflow: hidden;
}

.comment-body {
    flex: 1;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-1);
}

.comment-author-name {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.comment-author-date {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.comment-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.comment-action {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-xs);
    color: var(--text-tertiary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.comment-action:hover {
    color: var(--text-primary);
}

/* ===== Related Videos List ===== */
.related-video {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.related-video:hover {
    opacity: 0.8;
}

.related-video-thumbnail {
    width: 168px;
    flex-shrink: 0;
    aspect-ratio: var(--video-aspect);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
}

.related-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-video-duration {
    position: absolute;
    bottom: var(--space-1);
    right: var(--space-1);
    padding: 2px var(--space-1);
    font-size: 11px;
    background: var(--overlay-dark);
    border-radius: var(--radius-sm);
}

.related-video-info {
    flex: 1;
    min-width: 0;
}

.related-video-title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    line-height: var(--leading-tight);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--space-1);
}

.related-video-channel {
    font-size: var(--text-xs);
    color: var(--text-tertiary);
}

.related-video-meta {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ===== Inline Sponsor ===== */
.inline-sponsor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    margin: var(--space-4) 0;
}

.inline-sponsor-content {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.inline-sponsor-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-sponsor-label {
    font-size: var(--text-xs);
    color: var(--color-success);
    font-weight: var(--font-medium);
}

.inline-sponsor-text {
    font-size: var(--text-sm);
    color: var(--text-primary);
}

/* ===== Video Player ===== */
.video-player-wrapper {
    position: relative;
    aspect-ratio: var(--video-aspect);
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-ad-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-ad-countdown {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--overlay-dark);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
}

.video-ad-countdown svg {
    color: var(--accent-primary);
}

.video-ad-skip {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--overlay-dark);
    border: 1px solid var(--text-muted);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.video-ad-skip:hover {
    background: var(--bg-card);
    border-color: var(--text-primary);
}

.video-ad-skip.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Recommended Channels ===== */
.recommended-channels {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
}

.recommended-channels-title {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
}

.channel-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
}

.channel-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--bg-elevated);
    overflow: hidden;
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.channel-subs {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.channel-subscribe {
    font-size: var(--text-xs);
    color: var(--accent-primary);
    font-weight: var(--font-medium);
    cursor: pointer;
}

.channel-subscribe:hover {
    text-decoration: underline;
}

/* ===== Progress Bar ===== */
.progress-bar {
    height: 4px;
    background: var(--bg-elevated);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

/* ===== Loading Skeleton ===== */
.skeleton {
    background: linear-gradient(90deg,
            var(--bg-card) 25%,
            var(--bg-elevated) 50%,
            var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    padding: var(--space-4) var(--space-6);
    background: var(--bg-elevated);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-toast);
    animation: slideUp var(--transition-base);
}

/* ===== Badge ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-1) var(--space-2);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    border-radius: var(--radius-sm);
    background: var(--bg-elevated);
    color: var(--text-secondary);
}

.badge-primary {
    background: var(--accent-primary-light);
    color: var(--accent-primary);
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--color-success);
}

.badge-live {
    background: var(--color-live);
    color: var(--text-primary);
}

/* ===== Site Footer ===== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding: var(--space-12) 0 var(--space-6);
    margin-top: var(--space-12);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: var(--space-3);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
}

.footer-nav h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-nav a {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--accent-primary);
}

.footer-bottom {
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-primary);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin: 0;
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: var(--space-8) 0;
    min-height: calc(100vh - var(--header-height) - 200px);
}

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

.legal-content h1 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content .last-updated {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.legal-content .lead-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.legal-content section {
    margin-bottom: var(--space-8);
}

.legal-content h2 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    margin: var(--space-4) 0 var(--space-2);
    color: var(--text-primary);
}

.legal-content p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.legal-content ul {
    list-style: disc;
    padding-left: var(--space-6);
    margin-bottom: var(--space-4);
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-relaxed);
}

.legal-content a {
    color: var(--accent-primary);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* About Page Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.feature-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.feature-item h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2) !important;
    margin-top: 0 !important;
}

.feature-item p {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* Contact Page Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    margin: var(--space-6) 0;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
}

.contact-icon {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-3);
}

.contact-card h3 {
    margin-top: 0 !important;
    margin-bottom: var(--space-2) !important;
}

.contact-card p {
    font-size: var(--text-sm);
    margin-bottom: var(--space-2);
}

.contact-card a {
    font-size: var(--text-sm);
    word-break: break-all;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
}

.faq-item h3 {
    font-size: var(--text-base);
    margin-top: 0 !important;
    margin-bottom: var(--space-2) !important;
}

.faq-item p {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .footer-brand {
        max-width: 100%;
    }

    .features-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .legal-content h1 {
        font-size: var(--text-3xl);
    }
}