/* Modal and Overlay Components */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.age-modal {
    text-align: center;
}

.age-modal h2 {
    color: #d20515;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.age-modal p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    display: none !important;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* Button Styles */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #d20515;
    color: white;
}

.btn-primary:hover {
    background: #a50414;
    transform: translateY(-1px);
}

.btn-secondary {
    background: #6b7280;
    color: white;
}

.btn-secondary:hover {
    background: #4b5563;
}

.btn-link {
    background: transparent;
    color: #d20515;
    border: 1px solid #d20515;
}

.btn-link:hover {
    background: #d20515;
    color: white;
}

/* Loading and Animation States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ccc;
    border-top: 2px solid #d20515;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide Up Animation */
.slide-up {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Notification/Alert Components */
.alert {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d20515, #f56565);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.tooltip::before {
    content: '';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.tooltip:hover::after,
.tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Badge Component */
.badge {
    display: inline-block;
    padding: 4px 8px;
    background: #d20515;
    color: white;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: #16a34a;
}

.badge-warning {
    background: #ea580c;
}

.badge-info {
    background: #0369a1;
}

.badge-secondary {
    background: #6b7280;
}

/* Card Components */
.card-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-interactive {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.card-interactive:hover {
    border-color: #d20515;
}

/* Responsive Utilities */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .modal-content {
        padding: 15px;
    }
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.search-box input:focus,
.main-nav a:focus {
    outline: 2px solid #d20515;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .news-card {
        border: 2px solid #333;
    }
    
    .btn-primary {
        border: 2px solid #000;
    }
    
    .widget {
        border: 1px solid #333;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Champions League Specific Styles */
.champions-league-header {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #1e40af) !important;
    color: white;
}

.big-match-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border: 2px solid #3b82f6;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.match-header-big {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.tournament {
    background: #1e40af;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.match-date {
    font-weight: bold;
    color: #1e40af;
    font-size: 1.1rem;
}

.teams-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.team-showcase {
    text-align: center;
}

.team-logo-big {
    font-size: 4rem;
    margin-bottom: 15px;
}

.team-showcase h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e40af;
}

.team-form {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.form-badge {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.form-badge.win {
    background: #16a34a;
}

.form-badge.draw {
    background: #f59e0b;
}

.form-badge.loss {
    background: #dc2626;
}

.vs-section {
    text-align: center;
}

.vs-text {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 15px;
}

.main-odds {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.odds-box {
    background: white;
    border: 2px solid #3b82f6;
    border-radius: 10px;
    padding: 10px 15px;
    text-align: center;
    min-width: 60px;
    transition: transform 0.3s ease;
}

.odds-box:hover {
    transform: scale(1.05);
}

.odds-label {
    display: block;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 5px;
}

.odds-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e40af;
}

.match-analysis {
    background: white;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

.match-analysis h4 {
    color: #1e40af;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.match-analysis p {
    line-height: 1.6;
    color: #374151;
    margin-bottom: 20px;
}

.tip-highlight {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-left: 4px solid #16a34a;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tip-highlight strong {
    color: #16a34a;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.additional-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.additional-tips .tip-item {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.match-day-group {
    margin-bottom: 25px;
}

.match-day-title {
    color: #1e40af;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e2e8f0;
}

.match-card-small {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.match-card-small:hover {
    transform: translateY(-2px);
}

.match-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.tournament-badge {
    background: #1e40af;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.match-time {
    font-weight: bold;
    color: #374151;
}

.teams-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.team-small {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.odds-small {
    display: flex;
    gap: 8px;
}

.odds-small span {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #1e40af;
    min-width: 35px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.odds-small span:hover {
    background: #e5e7eb;
}

.match-tip-small {
    font-size: 0.85rem;
    color: #059669;
    background: #ecfdf5;
    padding: 8px;
    border-radius: 5px;
    border-left: 3px solid #16a34a;
}

.title-favorites {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.favorite-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: background-color 0.3s ease;
}

.favorite-item:hover {
    background: #f1f5f9;
}

.team-info {
    flex: 1;
}

.team-info strong {
    display: block;
    color: #333;
    font-size: 0.8rem;
}

.team-desc {
    font-size: 0.6rem;
    color: #666;
    margin-top: 2px;
}

.title-odds-value {
    background: #1e40af;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.next-goal-bets {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.next-goal-bets h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #374151;
}

.goal-bet {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.8rem;
}

.goal-bet span {
    color: #1e40af;
    font-weight: bold;
}

.prediction-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.prediction-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid #3b82f6;
    transition: transform 0.3s ease;
}

.prediction-item:hover {
    transform: translateX(5px);
}

.prediction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.confidence {
    background: #16a34a;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.prediction-tip {
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 5px;
}

.prediction-odds {
    color: #16a34a;
    font-weight: bold;
    margin-bottom: 8px;
}

.prediction-reason {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Mobile responsiveness for Champions League */
@media (max-width: 768px) {
    .teams-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .team-logo-big {
        font-size: 3rem;
    }
    
    .main-odds {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .additional-tips {
        grid-template-columns: 1fr;
    }
    
    .teams-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .odds-small {
        justify-content: center;
    }
    
    .big-match-card {
        padding: 20px;
    }
    
    .match-analysis {
        padding: 20px;
    }
}

/* Additional Component Styles for New Pages */

/* Live Results Components */
.live-ticker {
    max-height: 300px;
    overflow-y: auto;
}

.ticker-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9rem;
}

.ticker-time {
    background: #16a34a;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    min-width: 35px;
    text-align: center;
}

.ticker-text {
    flex: 1;
}

.live-betting {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.live-bet-item {
    background: white;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
}

.bet-match {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.bet-market {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.bet-odds {
    display: flex;
    gap: 10px;
}

.bet-odds span {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.league-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.league-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.league-link:hover {
    background: #e5e7eb;
}

.live-count {
    background: #16a34a;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Betting Tips Components */
.betting-calculator {
    background: #f0f9ff;
    border: 1px solid #93c5fd;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.calc-input label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.calc-input input {
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
}

.calc-result {
    background: white;
    border-radius: 6px;
    padding: 15px;
    border: 1px solid #e5e7eb;
}

.result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.result-row:last-child {
    margin-bottom: 0;
    font-weight: bold;
    color: #16a34a;
}

.bookmaker-ranking {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bookmaker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.bookmaker-info {
    flex: 1;
}

.bookmaker-info strong {
    display: block;
    margin-bottom: 3px;
}

.rating {
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.bonus {
    background: #16a34a;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.bookmaker-score {
    background: #0369a1;
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.odds-comparison {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.odds-match {
    margin-bottom: 15px;
}

.match-name {
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.odds-table {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.odds-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 5px;
    padding: 5px;
    background: white;
    border-radius: 4px;
    font-size: 0.8rem;
}

.odds-row.best {
    background: #dcfce7;
    font-weight: bold;
}

.bookmaker {
    font-weight: 500;
}

.odds {
    text-align: center;
    font-weight: bold;
    color: #0369a1;
}

.newsletter {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
}

.newsletter-benefits ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.newsletter-benefits li {
    padding: 3px 0;
    font-size: 0.9rem;
}

/* Predictions Components */
.tomorrow-preview {
    background: #f0f9ff;
    border: 1px solid #93c5fd;
}

.tomorrow-matches {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tomorrow-match {
    background: white;
    border-radius: 6px;
    padding: 12px;
}

.match-info .teams {
    font-weight: bold;
    margin-bottom: 3px;
}

.match-info .league {
    font-size: 0.8rem;
    color: #666;
}

.preview-tip {
    font-size: 0.9rem;
    color: #059669;
    margin-top: 8px;
}

.expert-insights {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.insights-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.insight-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.insight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.insight-text strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.insight-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.prediction-history {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.history-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
}

.history-item.won {
    border-left: 3px solid #16a34a;
}

.history-item.lost {
    border-left: 3px solid #dc2626;
}

.result-icon {
    font-size: 1.1rem;
}

.history-details {
    flex: 1;
}

.history-match {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.history-tip {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 2px;
}

.history-result {
    font-size: 0.8rem;
    font-weight: bold;
}

.history-item.won .history-result {
    color: #16a34a;
}

.history-item.lost .history-result {
    color: #dc2626;
}

.history-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.history-stat .stat-value {
    font-weight: bold;
    color: #16a34a;
}

.betting-trends {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.trends-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.trend-value {
    font-weight: bold;
    color: #16a34a;
}

/* Contact Components */
.faq-widget {
    background: #f0f9ff;
    border: 1px solid #93c5fd;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 6px;
    padding: 15px;
}

.faq-question {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.faq-answer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.team-widget {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.team-member {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 6px;
}

.member-avatar {
    font-size: 2rem;
    flex-shrink: 0;
}

.member-info strong {
    display: block;
    margin-bottom: 3px;
}

.member-info span {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.member-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hours-widget {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    background: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.day {
    font-weight: 500;
}

.time {
    color: #16a34a;
    font-weight: bold;
}

.hours-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Privacy Components */
.quick-links {
    background: #f0f9ff;
    border: 1px solid #93c5fd;
}

.quick-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.quick-link:hover {
    background: #e5e7eb;
}

.link-icon {
    font-size: 1.1rem;
}

.data-overview {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.data-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-category {
    background: white;
    border-radius: 6px;
    padding: 12px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.category-icon {
    font-size: 1.1rem;
}

.category-name {
    font-weight: bold;
    color: #333;
}

.category-purpose {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3px;
}

.category-retention {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 500;
}

.privacy-contact {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.privacy-tools {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-item {
    background: white;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.tool-item h4 {
    margin-bottom: 8px;
    color: #333;
}

.tool-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Legal Components */
.legal-links {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
}

.legal-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.legal-link:hover {
    background: #e5e7eb;
}

.gambling-help {
    background: #fef2f2;
    border: 2px solid #fca5a5;
}

.help-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-item {
    background: white;
    border-radius: 6px;
    padding: 12px;
}

.help-item h4 {
    color: #dc2626;
    margin-bottom: 5px;
}

.help-item p {
    margin-bottom: 3px;
}

.help-note {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.gambling-warning-small {
    background: #dc2626;
    color: white;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    text-align: center;
}

.gambling-warning-small p {
    margin: 0;
    font-size: 0.9rem;
}

.legal-updates {
    background: #f0f9ff;
    border: 1px solid #93c5fd;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.update-item {
    background: white;
    border-radius: 6px;
    padding: 12px;
}

.update-date {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 3px;
}

.update-title {
    font-weight: bold;
    margin-bottom: 3px;
    color: #333;
}

.update-desc {
    font-size: 0.9rem;
    color: #666;
}

.legal-contact {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
}

.compliance-info {
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.compliance-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: white;
    border-radius: 4px;
    font-size: 0.9rem;
}

.compliance-icon {
    font-size: 1.1rem;
}

.compliance-text {
    font-weight: 500;
}

/* Performance Chart */
.performance-chart {
    margin-top: 20px;
}

.chart-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 150px;
    padding: 20px 0;
    border-bottom: 2px solid #e5e7eb;
    gap: 5px;
}

.chart-bar {
    background: #16a34a;
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.chart-bar.negative {
    background: #dc2626;
}

.bar-value {
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: auto;
}

.bar-day {
    color: #666;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    bottom: -25px;
}

/* Strategy Cards */
.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.strategy-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0369a1;
}

.strategy-card h3 {
    color: #0369a1;
    margin-bottom: 15px;
}

.strategy-tips {
    margin-top: 15px;
}

.strategy-tips ul {
    list-style: none;
    padding: 0;
}

.strategy-tips li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
}

.strategy-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Cookie Settings Modal */
.cookie-settings-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.cookie-setting {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0369a1;
}

.cookie-setting p {
    margin: 8px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #d20515;
    border-color: #d20515;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: -2px;
    left: 2px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* Mobile Responsiveness for New Components */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .help-contacts {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-types {
        gap: 15px;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .teams-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .predictions-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategy-cards {
        grid-template-columns: 1fr;
    }
    
    .chart-container {
        height: 120px;
    }
    
    .fixture-card {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .fixture-teams {
        justify-content: center;
    }
    
    .fixture-odds {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .performance-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .odds-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2px;
    }
    
    .team-main .team-logo-main {
        font-size: 2rem;
    }
    
    .odds-main {
        padding: 10px 15px;
    }
    
    .odds-value-main {
        font-size: 2rem;
    }
}