/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-bottom: 3px solid #c4ff00;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #c4ff00;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #c4ff00;
    color: #000000;
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, #333333 0%, #2a2a2a 100%);
    padding: 20px 0;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #444444;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.search-input::placeholder {
    color: #888888;
}

.search-btn {
    background: #c4ff00;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #a8d600;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(196, 255, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.badge-text {
    background: linear-gradient(135deg, #ff6b35 0%, #c4ff00 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 255, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.hero-highlight {
    background: linear-gradient(135deg, #c4ff00 0%, #88cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.cta-primary {
    background: linear-gradient(135deg, #c4ff00 0%, #88cc00 100%);
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(196, 255, 0, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 255, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.floating-card {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    max-width: 300px;
    width: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    text-align: center;
    margin-bottom: 20px;
}

.live-indicator {
    background: #ff4444;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.match-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.team-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.team-logo-preview {
    width: 40px;
    height: 40px;
    background: #c4ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vs-preview {
    font-weight: bold;
    color: #c4ff00;
    font-size: 1.2rem;
}

.quality-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #c4ff00 100%);
    color: #000;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c4ff00 0%, #88cc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(196, 255, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.alert-box {
    background: linear-gradient(135deg, rgba(196, 255, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(196, 255, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.highlight {
    background: #c4ff00;
    color: #000000;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.match-card {
    background: linear-gradient(145deg, rgba(42, 42, 42, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 1px solid rgba(68, 68, 68, 0.5);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 255, 0, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.match-card:hover {
    border-color: rgba(196, 255, 0, 0.8);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(196, 255, 0, 0.2), 0 0 0 1px rgba(196, 255, 0, 0.1);
}

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

.match-card.live {
    border-color: rgba(255, 68, 68, 0.8);
    box-shadow: 0 8px 32px rgba(255, 68, 68, 0.3), 0 0 0 1px rgba(255, 68, 68, 0.2);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 68, 68, 0.3), 0 0 0 1px rgba(255, 68, 68, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(255, 68, 68, 0.4), 0 0 0 2px rgba(255, 68, 68, 0.3);
    }
}

.match-time {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #333333;
    color: #c4ff00;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #444444;
}

.team-name {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.vs {
    font-size: 24px;
    font-weight: bold;
    color: #c4ff00;
    margin: 0 20px;
}

.match-info {
    text-align: center;
    font-size: 12px;
    color: #888888;
    margin-bottom: 15px;
    background: #333333;
    padding: 8px;
    border-radius: 6px;
}

.status {
    text-align: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.live-status {
    background: #ff4444;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.finished-status {
    background: #666666;
    color: #ffffff;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .match-card {
        padding: 20px;
    }
    
    .floating-card {
        max-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .search-box {
        margin: 0 15px;
    }
    
    .floating-card {
        max-width: 200px;
        padding: 15px;
    }
}

/* About Section */
.about-section {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.about-section h2 {
    color: #c4ff00;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.about-section h3 {
    color: #ff6b35;
    font-size: 20px;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.about-section h4 {
    color: #c4ff00;
    font-size: 16px;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.about-intro {
    text-align: center;
    margin-bottom: 40px;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.8;
    background: linear-gradient(135deg, rgba(196, 255, 0, 0.1), rgba(255, 107, 53, 0.1));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #c4ff00;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.feature-card h3 {
    color: #ff6b35;
    margin-bottom: 15px;
    font-size: 18px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
}

.why-choose {
    margin: 20px 0;
}

.why-choose p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.sports-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.category {
    background: rgba(196, 255, 0, 0.05);
    border: 1px solid rgba(196, 255, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.category ul {
    list-style: none;
    padding-left: 0;
}

.category li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.category li:last-child {
    border-bottom: none;
}

.tech-features {
    margin: 20px 0;
}

.tech-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.tech-list li {
    background: rgba(42, 42, 42, 0.7);
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #c4ff00;
    font-size: 14px;
}

.entertainment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.tag {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.cta-section {
    background: linear-gradient(135deg, rgba(196, 255, 0, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0 20px 0;
    text-align: center;
    border: 2px solid rgba(196, 255, 0, 0.3);
}

.cta-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.final-cta {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-content strong, .about-section strong {
    color: #c4ff00;
}

/* Responsividade para About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 25px 20px;
        margin: 20px 0;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .sports-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-list {
        grid-template-columns: 1fr;
    }
    
    .entertainment-options {
        justify-content: center;
    }
    
    .highlight-text {
        font-size: 16px;
        padding: 15px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-top: 3px solid #c4ff00;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .teams {
        flex-direction: column;
        gap: 15px;
    }
    
    .vs {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .about-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .search-box {
        margin: 0 15px;
    }
    
    .match-card {
        padding: 15px;
    }
    
    .team-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}


/* Channels Page Styles */
.channels-section {
    padding: 40px 0;
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.channel-card {
    background: rgba(42, 42, 42, 0.9);
    border: 1px solid #444444;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    border-color: #c4ff00;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(196, 255, 0, 0.2);
}

.channel-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(42, 42, 42, 0.9) 100%);
}

.channel-card.premium::before {
    content: "PREMIUM";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.channel-card.free {
    border-color: #00ff88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(42, 42, 42, 0.9) 100%);
}

.channel-card.free::before {
    content: "GRÁTIS";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #00ff88;
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
}

.channel-logo {
    width: 100px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    border-radius: 8px;
    overflow: hidden;
}

.channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.channel-name {
    font-size: 20px;
    font-weight: bold;
    color: #c4ff00;
    margin-bottom: 10px;
}

.channel-desc {
    color: #888888;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.channel-btn {
    background: linear-gradient(135deg, #c4ff00 0%, #88cc00 100%);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.channel-btn:hover {
    background: linear-gradient(135deg, #a8d600 0%, #6ba000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 255, 0, 0.4);
}

.about-channels {
    background: rgba(42, 42, 42, 0.5);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.about-channels h2 {
    color: #c4ff00;
    font-size: 28px;
    margin-bottom: 20px;
}

.about-channels p {
    font-size: 16px;
    line-height: 1.8;
    color: #cccccc;
}

/* Responsive adjustments for channels */
@media (max-width: 768px) {
    .channel-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .channel-card {
        padding: 20px;
    }
    
    .about-channels {
        padding: 25px;
    }
    
    .about-channels h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .channel-grid {
        grid-template-columns: 1fr;
    }
    
    .channel-card {
        padding: 15px;
    }
    
    .channel-logo {
        width: 80px;
        height: 50px;
    }
    
    .channel-name {
        font-size: 18px;
    }
}

