/* Platforms Page Styles */

.channels-container {
    padding: 50px 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: calc(100vh - 120px);
}

.page-title {
    font-size: 2.8em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    padding: 0 15px;
    max-width: 1100px;
    margin: 0 auto;
}

.channel-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.channel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(255, 140, 0, 0.3) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 0;
}

.channel-card:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.channel-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.channel-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #555;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.channel-logo img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.2));
}

.channel-info {
    position: relative;
    z-index: 2;
}

.channel-info h3 {
    font-size: 1.3em;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255,255,255,0.03);
}

.channel-info p {
    font-size: 0.9em;
    color: #c0c0c0;
    margin-bottom: 0;
    font-weight: 400;
}

.channel-info p i {
    margin-right: 6px;
    color: #a0a0a0;
} 