.sidebar {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.widget {
    margin-bottom: 3rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #00A676;
}

.sidebar-stories {
    list-style: none;
}

.sidebar-story {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.sidebar-story:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.story-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #00A676;
}

.story-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex-grow: 1;
}

.story-title {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    color: white;
}

.story-meta {
    font-size: 0.8rem;
    color: #888;
}

.story-views {
    color: #ffc107;
}

/* Recent Matches & Upcoming Fixtures - COMBINED */
.matches-list,
.fixtures-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.match-item,
.fixture-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #00A676;
    transition: all 0.3s ease;
}

.match-item:hover,
.fixture-item:hover {
    background: rgba(0, 166, 118, 0.1);
    transform: translateX(3px);
}

.match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.match-teams .team {
    flex: 1;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-teams .team:first-child {
    text-align: left;
    padding-right: 10px;
}

.match-teams .team:last-child {
    text-align: right;
    padding-left: 10px;
}

.match-teams .score {
    flex: 0 0 auto;
    background: #00A676;
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 50px;
    text-align: center;
    margin: 0 0.5rem;
}

.match-meta {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    justify-content: space-between;
}

.fixture-teams {
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fixture-date {
    font-size: 0.85rem;
    color: #00A676;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.fixture-league {
    font-size: 0.8rem;
    color: #888;
}

.no-matches,
.no-fixtures {
    text-align: center;
    padding: 20px;
    color: #888;
    font-style: italic;
}

.no-fixtures .small {
    font-size: 0.9rem;
    margin-top: 10px;
    color: #aaa;
}

.fixture-item.big-match {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.fixture-item.big-match .fixture-league {
    color: #ffd700;
    font-weight: 600;
}

/* Newsletter */
.newsletter-widget {
    background: rgba(0, 166, 118, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 166, 118, 0.3);
}

.newsletter-widget p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #ddd;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.newsletter-form input {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00A676;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: #00A676;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #008f63;
}

/* Media Partners */
.media-partners-widget {
    background: rgba(0, 166, 118, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 166, 118, 0.1);
}

.media-partners-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.media-partner-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    text-decoration: none;
    color: #ddd;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.media-partner-link:hover {
    background: rgba(0, 166, 118, 0.1);
    border-color: #00A676;
    color: white;
    transform: translateX(5px);
}

.partner-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.partner-icon {
    color: #00A676;
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.media-partner-link:hover .partner-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive */
@media (min-width: 1024px) {
    .sidebar {
        position: sticky;
        top: 100px;
        align-self: start;
        margin-top: 0;
    }
}

@media (max-width: 1200px) {
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .sidebar {
        padding: 1.5rem;
        margin-top: 2rem;
        position: static;
        width: 100%;
        border-radius: 0;
    }
    
    .widget {
        margin-bottom: 2rem;
    }
    
    .widget-title {
        font-size: 1.3rem;
    }
    
    .story-link {
        gap: 0.8rem;
    }
    
    .story-image {
        width: 50px;
        height: 50px;
    }
    
    .story-title {
        font-size: 0.9rem;
    }
    
    .match-teams .team {
        font-size: 0.85rem;
    }
    
    .match-teams .score {
        font-size: 0.85rem;
        padding: 0.15rem 0.6rem;
        min-width: 45px;
    }
    
    .fixture-teams {
        font-size: 0.9rem;
    }
}