/* Media & Community Section */
.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .media-grid { grid-template-columns: 1fr; }
}

.media-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.media-card:hover {
    border-color: #ff0000; /* YouTube Red default */
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

/* Platform variants */
.card-whatsapp:hover { border-color: #25D366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15); }
.card-instagram:hover { border-color: #E1306C; box-shadow: 0 10px 30px rgba(225, 48, 108, 0.15); }
.card-github:hover { border-color: #fff; box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08); }

.ig-icon {
    background: transparent !important;
    border-color: transparent !important;
    overflow: visible !important;
    border-radius: 16px !important;
}
.ig-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.gh-icon {
    background: #0d1117 !important;
    border-color: #30363d !important;
}

.wa-btn { color: #25D366; }
.ig-btn { color: #E1306C; }
.gh-btn { color: #fff; }

.dot-icon { width: 8px; height: 8px; border-radius: 50%; }
.dot-icon.wa { background: #25D366; box-shadow: 0 0 6px #25D366; }
.dot-icon.ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); box-shadow: 0 0 6px rgba(225,48,108,0.6); }
.dot-icon.gh { background: #fff; box-shadow: 0 0 6px rgba(255,255,255,0.4); }

.media-card:hover::before {
    transform: translateX(100%);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-light);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.channel-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.channel-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.subscribe-btn {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.play-icon {
    width: 0; 
    height: 0; 
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #ff0000;
}