/*
 * AyRad - Cyber Aesthetic Theme
 * Beautiful cyan/magenta neon vibes
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Core Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(15, 15, 25, 0.8);
    --bg-card-hover: rgba(20, 20, 35, 0.9);

    /* Neon Colors */
    --cyan: #00ffff;
    --cyan-dark: #00cccc;
    --cyan-glow: rgba(0, 255, 255, 0.5);
    --magenta: #ff00ff;
    --magenta-dark: #cc00cc;
    --magenta-glow: rgba(255, 0, 255, 0.5);

    /* Accent Colors */
    --purple: #8b5cf6;
    --blue: #3b82f6;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #64748b;

    /* Borders */
    --border-color: rgba(0, 255, 255, 0.2);
    --border-glow: rgba(0, 255, 255, 0.4);

    /* Shadows */
    --shadow-cyan: 0 0 20px rgba(0, 255, 255, 0.3);
    --shadow-magenta: 0 0 20px rgba(255, 0, 255, 0.3);

    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;

    /* Spacing */
    --container-width: 1400px;
    --gap: 1.5rem;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--magenta));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--cyan-dark), var(--magenta-dark));
}

/* ============================================
   Animated Background
   ============================================ */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 255, 255, 0.1) 10deg,
        transparent 60deg
    );
    animation: radarSweep 8s linear infinite;
    opacity: 0.3;
}

@keyframes radarSweep {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 255, 0.6), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 0, 255, 0.5), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(0, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 0, 255, 0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(0, 255, 255, 0.5), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 0, 255, 0.4), transparent),
        radial-gradient(1px 1px at 60px 100px, rgba(0, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 120px 50px, rgba(255, 0, 255, 0.6), transparent),
        radial-gradient(1px 1px at 180px 150px, rgba(0, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 200px 80px, rgba(255, 0, 255, 0.6), transparent);
    background-size: 250px 250px;
    animation: particleFloat 40s linear infinite;
    opacity: 0.8;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0.8; }
    25% { transform: translateY(-100px) translateX(20px); opacity: 1; }
    50% { transform: translateY(-200px) translateX(-10px); opacity: 0.9; }
    75% { transform: translateY(-300px) translateX(15px); opacity: 1; }
    100% { transform: translateY(-400px) translateX(0); opacity: 0.8; }
}

/* Additional floating particles */
.cyber-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(3px 3px at 150px 200px, rgba(0, 255, 255, 0.4), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(255, 0, 255, 0.5), transparent),
        radial-gradient(1px 1px at 450px 250px, rgba(0, 255, 255, 0.6), transparent);
    background-size: 600px 600px;
    animation: particleFloat2 50s linear infinite reverse;
    opacity: 0.6;
}

@keyframes particleFloat2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-600px) rotate(360deg); }
}

/* ============================================
   Container
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* ============================================
   Header
   ============================================ */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Radar Icon Animation */
.radar-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: radarPulse 2s ease-out infinite;
}

.radar-ring:nth-child(1) { width: 20px; height: 20px; animation-delay: 0s; }
.radar-ring:nth-child(2) { width: 35px; height: 35px; animation-delay: 0.4s; }
.radar-ring:nth-child(3) { width: 50px; height: 50px; animation-delay: 0.8s; }

@keyframes radarPulse {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

.radar-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan), 0 0 30px var(--cyan);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo-text .ay {
    color: var(--cyan);
    text-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan), 0 0 40px var(--cyan);
}

.logo-text .rad {
    color: var(--magenta);
    text-shadow: 0 0 10px var(--magenta), 0 0 20px var(--magenta), 0 0 40px var(--magenta);
}

.tagline {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

/* Search Box */
.search-section {
    flex: 1;
    max-width: 500px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: var(--cyan);
    font-size: 1rem;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 
        var(--shadow-cyan), 
        inset 0 0 20px rgba(0, 255, 255, 0.05),
        0 0 40px rgba(0, 255, 255, 0.3);
    transform: scale(1.02);
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% { box-shadow: var(--shadow-cyan), inset 0 0 20px rgba(0, 255, 255, 0.05), 0 0 40px rgba(0, 255, 255, 0.3); }
    50% { box-shadow: var(--shadow-cyan), inset 0 0 20px rgba(0, 255, 255, 0.1), 0 0 60px rgba(0, 255, 255, 0.5); }
}

.search-glow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transition: width 0.3s ease;
}

.search-box input:focus ~ .search-glow {
    width: 80%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-about {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-about:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.btn-refresh {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--cyan);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-refresh::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
}

.btn-refresh:hover {
    border-color: var(--cyan);
    box-shadow: 
        var(--shadow-cyan),
        0 0 30px rgba(0, 255, 255, 0.5);
    transform: rotate(180deg) scale(1.1);
}

.btn-refresh:hover::before {
    width: 100px;
    height: 100px;
}

.btn-refresh.loading i {
    animation: spin 1s linear infinite;
}

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

.time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.time-display i {
    color: var(--cyan);
}

/* ============================================
   Filter Bar
   ============================================ */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.filter-sources {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--source-color, var(--cyan)) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    opacity: 0.3;
    z-index: 0;
}

.filter-btn:hover {
    border-color: var(--source-color, var(--cyan));
    color: var(--source-color, var(--cyan));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.filter-btn.active {
    background: var(--source-color, var(--cyan));
    border-color: var(--source-color, var(--cyan));
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: 
        0 0 20px var(--source-color, var(--cyan-glow)),
        0 5px 25px rgba(0, 255, 255, 0.4);
    transform: scale(1.05);
    animation: filterPulse 2s ease-in-out infinite;
}

.filter-btn.active::before {
    width: 300px;
    height: 300px;
    opacity: 0.5;
}

@keyframes filterPulse {
    0%, 100% { box-shadow: 0 0 20px var(--source-color, var(--cyan-glow)), 0 5px 25px rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 30px var(--source-color, var(--cyan-glow)), 0 5px 35px rgba(0, 255, 255, 0.6); }
}

.filter-sort select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ffff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.filter-sort select:focus {
    outline: none;
    border-color: var(--cyan);
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(255, 0, 255, 0.05));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.stat-item i,
.stat-item span,
.stat-item label {
    position: relative;
    z-index: 1;
}

.stat-item i {
    margin-bottom: 0.25rem;
}

.stat-item i {
    font-size: 1.25rem;
    color: var(--cyan);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-item label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Trends Grid
   ============================================ */
.trends-container {
    padding: 2rem 0;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gap);
}

/* Loading State */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 400px;
    gap: 2rem;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid transparent;
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: loaderSpin 1.5s linear infinite;
}

.loader-ring:nth-child(1) { width: 80px; height: 80px; }
.loader-ring:nth-child(2) { width: 60px; height: 60px; animation-delay: 0.15s; border-top-color: var(--magenta); }
.loader-ring:nth-child(3) { width: 40px; height: 40px; animation-delay: 0.3s; }

@keyframes loaderSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.loading-text {
    font-family: var(--font-mono);
    color: var(--text-muted);
    animation: loadingPulse 1.5s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.progress-container {
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
    background-size: 200% 100%;
    border-radius: 10px;
    position: relative;
    transition: width 0.3s ease;
    animation: progressGradient 2s linear infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

@keyframes progressGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: progressGlow 1.5s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { opacity: 0; transform: translateX(-30px); }
    50% { opacity: 1; transform: translateX(0); }
}

.progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.progress-text span:first-child {
    color: var(--cyan);
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 0 0 10px var(--cyan-glow);
}

.progress-status {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ============================================
   Trend Card
   ============================================ */
.trend-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    animation: cardFadeIn 0.6s ease-out backwards;
}

.trend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.trend-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    animation: cardGlow 3s ease-in-out infinite;
}

.trend-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: 
        var(--shadow-cyan), 
        var(--shadow-magenta),
        0 15px 50px rgba(0, 255, 255, 0.3),
        0 0 80px rgba(255, 0, 255, 0.2);
}

.trend-card:hover::before {
    opacity: 1;
}

.trend-card:hover::after {
    opacity: 0.5;
}

.card-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.trend-card:hover .card-thumbnail img {
    transform: scale(1.1);
}

.card-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-card));
}

.card-thumbnail-placeholder i {
    font-size: 3rem;
    color: var(--border-color);
}

.card-source-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--text-primary);
}

.card-source-badge i {
    color: var(--source-color, var(--cyan));
}

.card-engagement {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.75rem;
}

.engagement-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.engagement-item .exact-count-small {
    font-size: 0.65rem;
    color: var(--text-muted);
    opacity: 0.7;
}

.engagement-item i {
    font-size: 0.7rem;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-time {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-time i {
    margin-right: 0.3rem;
    color: var(--cyan);
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    border-radius: 50%;
}

.card-action-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.card-action-btn:hover::before {
    width: 60px;
    height: 60px;
}

/* ============================================
   Load More
   ============================================ */
.load-more-section {
    display: flex;
    justify-content: center;
    padding: 2rem 0 4rem;
}

.btn-load-more {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 2px solid var(--cyan);
    border-radius: 30px;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-load-more span,
.btn-load-more i {
    position: relative;
    z-index: 1;
}

.btn-load-more:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 
        var(--shadow-cyan),
        0 0 40px rgba(0, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.btn-load-more:hover::before {
    width: 300px;
    height: 300px;
}

.btn-load-more i {
    animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ============================================
   Modal
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    pointer-events: none;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
    animation: modalSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    pointer-events: auto;
}

.modal-close:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.modal-source i {
    color: var(--cyan);
}

.modal-time {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal-body {
    padding: 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-thumbnail {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.modal-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-title {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.modal-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* AI Summary Section */
.ai-summary-section {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-header i {
    color: var(--cyan);
    font-size: 1.25rem;
}

.ai-header span {
    font-weight: 600;
    flex: 1;
}

.btn-summarize {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    border: none;
    border-radius: 20px;
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-summarize:hover {
    box-shadow: var(--shadow-cyan);
    transform: scale(1.05);
}

.btn-summarize.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-summarize.loading i {
    animation: spin 1s linear infinite;
}

.ai-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.ai-placeholder {
    font-style: italic;
    color: var(--text-muted);
}

/* About Modal */
.about-content {
    max-width: 800px;
}

.about-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.about-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    color: var(--cyan);
}

.about-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.about-features,
.about-tech,
.about-dev {
    margin-bottom: 2rem;
}

.about-features h3,
.about-tech h3,
.about-dev h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.about-features ul {
    list-style: none;
    padding: 0;
}

.about-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.about-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

.about-tech p,
.about-dev p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.btn-dev-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dev-link:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

/* Embedded Viewer */
.embedded-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
}

.viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.viewer-title {
    font-weight: 600;
    color: var(--cyan);
    font-family: var(--font-body);
}

.btn-close-viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    border-radius: 8px;
    color: #ff4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-viewer:hover {
    background: rgba(255, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

#contentFrame {
    flex: 1;
    width: 100%;
    border: none;
    background: var(--bg-dark);
}

.btn-view {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 150px;
    pointer-events: auto;
    z-index: 10;
}

.btn-view::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-view span,
.btn-view i {
    position: relative;
    z-index: 1;
}

.btn-view:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px) scale(1.05);
}

.btn-view:hover::before {
    width: 300px;
    height: 300px;
}

.btn-view:active {
    transform: translateY(0) scale(1);
}

/* Google Ads */
.ad-container {
    width: 100%;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    min-height: 100px;
    background: rgba(0, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.ad-top {
    margin-top: 0;
}

.ad-middle {
    margin: 3rem 0;
}

/* Placeholder Cards */
.placeholder-card {
    opacity: 0.7;
    position: relative;
}

.placeholder-card::after {
    content: 'Placeholder';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.5);
    border-radius: 4px;
    font-size: 0.7rem;
    color: #ffa500;
    font-weight: 600;
    z-index: 10;
}

.placeholder-card:hover {
    opacity: 0.9;
}

/* Comments Section */
.comments-section {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.comments-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.comments-header i {
    color: var(--magenta);
}

.comments-header span {
    font-weight: 600;
    flex: 1;
}

.sentiment-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.8rem;
}

.sentiment-badge.positive { color: var(--green); }
.sentiment-badge.negative { color: var(--red); }
.sentiment-badge.mixed { color: var(--orange); }

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comment-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--cyan);
}

.comment-author {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.comment-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    justify-content: center;
}

.modal-footer button,
.modal-footer a {
    pointer-events: auto;
}

.btn-visit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--cyan);
    border: none;
    border-radius: 8px;
    color: var(--bg-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-visit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-visit span,
.btn-visit i {
    position: relative;
    z-index: 1;
}

.btn-visit:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px) scale(1.05);
}

.btn-visit:hover::before {
    width: 300px;
    height: 300px;
}

.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

.btn-share::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 0, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: 0;
}

.btn-share span,
.btn-share i {
    position: relative;
    z-index: 1;
}

.btn-share:hover {
    border-color: var(--magenta);
    color: var(--magenta);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-share:hover::before {
    width: 300px;
    height: 300px;
}

.btn-share:active {
    transform: translateY(0) scale(1);
}

/* ============================================
   Toast Notifications
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    animation: toastSlide 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes toastSlide {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success { border-color: var(--green); }
.toast.success i { color: var(--green); }

.toast.error { border-color: var(--red); }
.toast.error i { color: var(--red); }

.toast.info { border-color: var(--cyan); }
.toast.info i { color: var(--cyan); }

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.empty-state p {
    color: var(--text-muted);
    max-width: 400px;
}

/* ============================================
   Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        align-items: stretch;
    }

    .logo-section {
        justify-content: center;
    }

    .search-section {
        max-width: 100%;
        order: 3;
    }

    .header-actions {
        justify-content: center;
    }

    .stats-bar {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --gap: 1rem;
    }

    .logo-text {
        font-size: 2rem;
    }

    .filter-sources {
        justify-content: center;
    }

    .filter-btn span {
        display: none;
    }

    .filter-btn {
        padding: 0.5rem 0.75rem;
    }

    .trends-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .modal-footer {
        flex-direction: column;
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-bar {
        gap: 1rem;
    }

    .stat-item span {
        font-size: 1.25rem;
    }

    .card-thumbnail {
        height: 150px;
    }
}

/* ============================================
   Let's Help! Section
   ============================================ */
.lets-help-section {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 2px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    color: var(--magenta);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.05); }
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.creator-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    animation: cardFadeIn 0.6s ease-out backwards;
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientShift 3s linear infinite;
}

.creator-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: 
        var(--shadow-cyan), 
        var(--shadow-magenta),
        0 15px 50px rgba(0, 255, 255, 0.3);
}

.creator-card:hover::before {
    opacity: 1;
}

.creator-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.creator-name {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.creator-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.creator-platform i {
    color: var(--cyan);
}

.creator-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.creator-subscribers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.creator-subscribers .exact-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.8;
}

.creator-subscribers i {
    color: var(--magenta);
}

.creator-description {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.creator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.creator-tags .tag {
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--cyan);
}

.creator-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.creator-socials {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.btn-subscribe {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 2px solid var(--cyan);
    border-radius: 20px;
    color: var(--cyan);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
    transform: scale(1.05);
}

.btn-subscribe.subscribed {
    background: var(--magenta);
    border-color: var(--magenta);
    color: var(--bg-dark);
}

.btn-subscribe.subscribed:hover {
    background: var(--magenta-dark);
    border-color: var(--magenta-dark);
}

.creator-ai-summary {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.btn-ai-summary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--cyan);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-ai-summary:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.ai-summary-content {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

.ai-summary-content .ai-loading {
    color: var(--cyan);
    text-align: center;
}

.ai-summary-content .ai-error {
    color: var(--red);
    text-align: center;
}

.empty-creators {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .creators-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
