body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #fff;
}

a { text-decoration: none; color: inherit; }

.channel-header {
    width: 100%;
    background-color: #1e1e1e;
    border-bottom: 1px solid #303030;
}

.channel-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.channel-pfp {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.channel-info { flex: 1; }

.channel-name { margin:0; font-size:1.8rem; font-weight:700; }
.channel-subs { margin:4px 0 0 0; color:#aaa; }

.subscribe-btn {
    padding:10px 20px;
    background-color:#ff0000;
    border:none;
    border-radius:2px;
    font-weight:600;
    cursor:pointer;
    transition:0.2s;
}
.subscribe-btn:hover { background-color:#e60000; }

.channel-tabs {
    display:flex;
    gap:12px;
    border-bottom:1px solid #303030;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
    flex-wrap:wrap;
}

.channel-tabs .tab {
    padding:12px 16px;
    color:#aaa;
    font-weight:500;
    border-radius:2px;
    transition:0.2s;
}
.channel-tabs .tab:hover { background-color:#303030; color:#fff; }
.channel-tabs .tab.active { color:#fff; border-bottom:2px solid #ff0000; }

.about-hero {
    text-align:center;
    padding:50px 20px 30px 20px;
}
.about-hero h2 { font-size:2rem; margin-bottom:16px; }
.about-hero p { font-size:1rem; color:#ccc; line-height:1.6; max-width:700px; margin:0 auto; }

.about-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
    gap:20px;
    max-width:1200px;
    margin:0 auto 50px auto;
    padding:0 20px;
}

.about-card {
    background-color:#1e1e1e;
    padding:25px 20px;
    border-radius:10px;
    text-align:center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow:0 12px 20px rgba(0,0,0,0.6);
}
.about-card h3 {
    margin:12px 0 10px 0;
    font-size:1.2rem;
    font-weight:600;
    color:#fff;
}
.about-card p {
    font-size:0.95rem;
    color:#ccc;
    line-height:1.5;
}
.about-card .icon {
    font-size:2rem;
}

@media (max-width:768px) {
    .channel-banner { flex-direction:column; align-items:center; text-align:center; }
    .about-grid { grid-template-columns:1fr; }
}
