/* 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;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    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;
}

.alert-box {
    background: rgba(196, 255, 0, 0.1);
    border: 1px solid #c4ff00;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.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: rgba(42, 42, 42, 0.9);
    border: 1px solid #444444;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.match-card:hover {
    border-color: #c4ff00;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(196, 255, 0, 0.2);
}

.match-card.live {
    border-color: #ff4444;
    box-shadow: 0 0 20px 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; }
}

/* 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: 24px;
    margin-bottom: 20px;
    text-align: center;
}

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

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

/* 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;
    }
}

