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

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: 4px;
    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;
}

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

.hero-text {
    flex: 1;
    min-width: 280px;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff0000;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.2s;
}

.cta-btn:hover {
    background-color: #e60000;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.service-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.7);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    color: #ccc;
    font-size: 0.95rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.video-card {
    background-color: #202020;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.6);
}

.video-card img {
    width: 100%;
    display: block;
    border-bottom: 1px solid #303030;
}

.video-info {
    padding: 14px;
}

.video-info h3 {
    font-size: 1rem;
    margin: 0 0 6px 0;
}

.video-info p {
    color: #ccc;
    font-size: 0.875rem;
}

.testimonials {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}

.cta-section {
    background-color: #1e1e1e;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    max-width: 1000px;
    margin: 80px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.yt-logo {
    display: block;
    width: 200px;
    height: auto;
    position: relative;
    z-index: 1;
}

.hero-image .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: shine-move 2.5s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine-move {
    0%   { left: -100%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        margin-top: 20px;
    }
    .services-grid, .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}
