/* Homepage Specific Styles */

.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-outline:hover {
    background: #22c55e;
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.section {
    padding: 60px 20px;
}

.section-alt {
    background: #f8fafc;
}

.dark .section-alt {
    background: #1e293b;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: #0f172a;
}

.dark .section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dark .card {
    background: #2d3748;
    color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.prediction-card .card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-daily {
    background: #3b82f6;
    color: white;
}

.badge-weekly {
    background: #8b5cf6;
    color: white;
}

.badge-monthly {
    background: #ec4899;
    color: white;
}

.badge-period {
    background: #64748b;
    color: white;
}

.match-name {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.dark .match-name {
    color: white;
}

.match-details p {
    margin: 8px 0;
    color: #475569;
}

.dark .match-details p {
    color: #cbd5e1;
}

.odds-value {
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

.promo-card {
    text-align: center;
}

.promo-header {
    margin-bottom: 15px;
}

.bookmaker-name {
    color: #0f172a;
    font-size: 1.3rem;
}

.bookmaker-logo {
    max-height: 40px;
    object-fit: contain;
}

.promo-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.promo-description {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.promo-code-box {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.promo-code-label {
    font-weight: 600;
    color: #475569;
}

.promo-code {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 1px;
}

.copy-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.copy-btn:hover {
    background: #16a34a;
}

.agent-card {
    text-align: center;
}

.agent-name {
    color: #0f172a;
    margin-bottom: 10px;
}

.dark .agent-name {
    color: white;
}

.agent-description {
    color: #64748b;
    margin-bottom: 20px;
}

.agent-note {
    margin-top: 10px;
    color: #94a3b8;
    font-size: 0.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 25px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

.dark .feature-card h3 {
    color: white;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-footer {
    text-align: center;
    margin-top: 20px;
}

.no-data {
    text-align: center;
    padding: 40px;
    background: #f1f5f9;
    border-radius: 12px;
    grid-column: 1 / -1;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
}
/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar {
    background: #0f172a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dark .navbar {
    background: #020617;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.navbar-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Menu */
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
    display: block;
}

.nav-item > a:hover {
    background: rgba(255,255,255,0.1);
}

.nav-item.active > a {
    background: #22c55e;
    color: white;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 8px 0;
    display: none;
    z-index: 1001;
}

.dark .dropdown-menu {
    background: #1e293b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.dark .dropdown-menu a {
    color: #e2e8f0;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
}

.dark .dropdown-menu a:hover {
    background: #334155;
}

/* Right Side Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Dark Mode Toggle */
.dark-toggle {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    width: 50px;
    height: 26px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 4px;
    transition: background 0.3s;
}

.dark-toggle .dark-icon,
.dark-toggle .light-icon {
    font-size: 1rem;
    transition: opacity 0.3s;
    position: absolute;
}

.dark-toggle .dark-icon {
    left: 6px;
    opacity: 1;
}

.dark-toggle .light-icon {
    right: 6px;
    opacity: 0;
}

.dark .dark-toggle {
    background: #334155;
    border-color: #475569;
}

.dark .dark-toggle .dark-icon {
    opacity: 0;
}

.dark .dark-toggle .light-icon {
    opacity: 1;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-button {
    background: transparent;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s;
}

.user-menu-button:hover {
    background: rgba(255,255,255,0.1);
}

.user-avatar {
    font-size: 1.2rem;
}

.username {
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    padding: 8px 0;
    display: none;
    z-index: 1001;
}

.dark .user-dropdown {
    background: #1e293b;
}

.user-menu:hover .user-dropdown {
    display: block;
}

.user-dropdown a {
    padding: 10px 20px;
    display: block;
    color: #0f172a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.dark .user-dropdown a {
    color: #e2e8f0;
}

.user-dropdown a:hover {
    background: #f1f5f9;
}

.dark .user-dropdown a:hover {
    background: #334155;
}

.dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 0;
}

.dark .dropdown-divider {
    background: #334155;
}

/* Login/Register Buttons */
.btn-login {
    color: white;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-login:hover {
    background: rgba(255,255,255,0.1);
}

.btn-register {
    background: #22c55e;
    color: white;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-register:hover {
    background: #16a34a;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: fixed;
    top: 24px;
    right: 20px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background: #22c55e;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #0f172a;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    padding: 20px;
    overflow-y: auto;
}

.dark .mobile-menu {
    background: #020617;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: block;
    padding: 12px 15px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.1);
}

.mobile-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 15px 0;
    font-size: 0.8rem;
    color: #94a3b8;
    padding-left: 15px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.mobile-login {
    background: transparent;
    border: 2px solid #22c55e;
    color: #22c55e;
    text-align: center;
}

.mobile-register {
    background: #22c55e;
    color: white;
    text-align: center;
}

/* Flash Message Container */
.flash-message-container {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.success-box, .error-box, .warning-box, .info-box {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.success-box {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.error-box {
    background: #fee2e2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

.warning-box {
    background: #fef3c7;
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.info-box {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

/* Main Content Wrapper */
.main-wrapper {
    min-height: calc(100vh - 70px - 300px); /* Adjust based on footer height */
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-actions {
        margin-right: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .username {
        display: none;
    }
    
    .btn-login, .btn-register {
        padding: 4px 10px;
        font-size: 0.9rem;
    }
}
/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: #0f172a;
    color: #e2e8f0;
    margin-top: auto;
    padding: 60px 0 0;
    border-top: 1px solid #1e293b;
}

.dark .footer {
    background: #020617;
    border-top-color: #334155;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Columns */
.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column h3 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #22c55e;
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: #22c55e;
    transform: translateY(-3px);
}

.social-icon {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateX(5px);
}

/* WhatsApp Support Items */
.support-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.support-item:hover {
    background: rgba(255,255,255,0.1);
}

.support-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.support-details {
    flex: 1;
}

.support-type {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.support-number {
    display: inline-block;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 4px;
    word-break: break-all;
}

.support-number:hover {
    text-decoration: underline;
}

.support-desc {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
}

.support-note {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid #1e293b;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #22c55e;
}

.separator {
    color: #475569;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .support-item {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .separator {
        display: none;
    }
}
/* ============================================
   AUTHENTICATION PAGES STYLES
   ============================================ */

.auth-section {
    min-height: calc(100vh - 70px - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dark .auth-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.auth-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.auth-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    animation: slideUp 0.5s ease;
}

.dark .auth-card {
    background: #1e293b;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.dark .auth-header h2 {
    color: white;
}

.auth-subtitle {
    color: #64748b;
    font-size: 0.95rem;
}

.dark .auth-subtitle {
    color: #94a3b8;
}

/* Alert Messages */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.alert-error {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #b91c1c;
}

.dark .alert-error {
    background: rgba(239, 68, 68, 0.2);
    color: #fecaca;
}

.alert-success {
    background: #dcfce7;
    border-left: 4px solid #22c55e;
    color: #166534;
}

.alert-icon {
    font-size: 1.2rem;
}

.alert-message {
    flex: 1;
    font-size: 0.95rem;
}

/* Form Styles */
.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.dark .form-label {
    color: #cbd5e1;
}

.label-icon {
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background: white;
    color: #0f172a;
}

.dark .form-input {
    background: #334155;
    border-color: #475569;
    color: white;
}

.form-input:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.dark .form-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* Password Field with Toggle */
.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #64748b;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.password-toggle:hover {
    color: #22c55e;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #475569;
    font-size: 0.95rem;
}

.dark .checkbox-label {
    color: #94a3b8;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #22c55e;
}

.checkbox-text {
    user-select: none;
}

.forgot-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    text-decoration: none;
}

.btn-block {
    width: 100%;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-primary {
    background: #22c55e;
    color: white;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.dark .auth-footer {
    border-top-color: #334155;
}

.auth-text {
    color: #64748b;
    font-size: 0.95rem;
}

.auth-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.auth-link:hover {
    text-decoration: underline;
}

/* Demo Credentials (Development Only) */
.demo-credentials {
    margin-top: 30px;
    padding: 16px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px dashed #94a3b8;
}

.dark .demo-credentials {
    background: #0f172a;
    border-color: #475569;
}

.demo-title {
    text-align: center;
    font-weight: 600;
    color: #475569;
    margin-bottom: 12px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark .demo-title {
    color: #94a3b8;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.demo-item {
    background: white;
    padding: 10px;
    border-radius: 6px;
    font-size: 0.85rem;
}

.dark .demo-item {
    background: #1e293b;
}

.demo-label {
    display: block;
    color: #64748b;
    margin-bottom: 4px;
}

.demo-value {
    display: block;
    color: #0f172a;
    font-weight: 500;
    font-family: monospace;
}

.dark .demo-value {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-header h2 {
        font-size: 1.8rem;
    }
    
    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .demo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 20px 15px;
    }
    
    .auth-card {
        padding: 25px 15px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
/* ============================================
   REGISTRATION PAGE SPECIFIC STYLES
   ============================================ */

.register-card {
    max-width: 520px;
}

.input-hint {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.8rem;
}

.dark .input-hint {
    color: #94a3b8;
}

/* Password Strength Meter */
.password-strength {
    margin-top: 10px;
}

.strength-bars {
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}

.strength-bar {
    height: 4px;
    flex: 1;
    background: #e2e8f0;
    border-radius: 2px;
    transition: background 0.3s;
}

.dark .strength-bar {
    background: #475569;
}

.strength-text {
    font-size: 0.85rem;
    color: #64748b;
}

/* Password Match Indicator */
.password-match {
    margin-top: 5px;
    font-size: 0.85rem;
}

.match-success {
    color: #22c55e;
}

.match-error {
    color: #ef4444;
}

/* Terms Group */
.terms-group {
    margin: 20px 0;
}

.terms-link {
    color: #22c55e;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Register Benefits */
.register-benefits {
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
}

.dark .register-benefits {
    background: #0f172a;
}

.register-benefits h4 {
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 1rem;
}

.dark .register-benefits h4 {
    color: white;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #334155;
    font-size: 0.95rem;
    border-bottom: 1px dashed #e2e8f0;
}

.dark .benefits-list li {
    color: #cbd5e1;
    border-bottom-color: #334155;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefit-icon {
    color: #22c55e;
    font-size: 1.1rem;
}

/* Disabled button state */
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 480px) {
    .register-benefits {
        padding: 15px;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
    }
}
/* ============================================
   DASHBOARD STYLES
   ============================================ */

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 40px 20px;
}

.dashboard-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.welcome-message h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.welcome-date {
    color: #94a3b8;
    font-size: 1rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.live-btn {
    background: #ef4444;
    color: white;
}

.live-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.notif-btn {
    background: #3b82f6;
    color: white;
}

.notif-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.logout-btn {
    background: #64748b;
    color: white;
}

.logout-btn:hover {
    background: #475569;
    transform: translateY(-2px);
}

.action-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Dashboard Main */
.dashboard-main {
    padding: 40px 20px;
    background: #f8fafc;
    min-height: calc(100vh - 70px - 300px);
}

.dark .dashboard-main {
    background: #0f172a;
}

.dashboard-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.dark .stat-card {
    background: #1e293b;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    background: #f1f5f9;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .stat-icon {
    background: #334155;
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.dark .stat-value {
    color: white;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
}

/* Dashboard Cards */
.dashboard-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 25px;
}

.dark .dashboard-card {
    background: #1e293b;
}

.card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark .card-header {
    border-bottom-color: #334155;
}

.card-header h3 {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 600;
}

.dark .card-header h3 {
    color: white;
}

.view-all {
    color: #22c55e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.view-all:hover {
    color: #16a34a;
    text-decoration: underline;
}

.card-content {
    padding: 20px;
}

/* Tip Items */
.tip-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dark .tip-item {
    border-bottom-color: #334155;
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-info h4 {
    color: #0f172a;
    font-size: 1rem;
    margin-bottom: 5px;
}

.dark .tip-info h4 {
    color: white;
}

.tip-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tip-league {
    color: #64748b;
    font-size: 0.85rem;
}

.tip-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.tip-badge.live {
    background: #ef4444;
    color: white;
}

.tip-badge.prematch {
    background: #3b82f6;
    color: white;
}

.tip-details {
    text-align: right;
}

.tip-prediction {
    display: block;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 3px;
}

.dark .tip-prediction {
    color: white;
}

.tip-odds {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Quick Links Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.dark .quick-link {
    background: #0f172a;
}

.quick-link:hover {
    background: #22c55e;
    transform: translateX(5px);
}

.quick-link:hover .quick-name {
    color: white;
}

.quick-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.quick-name {
    color: #334155;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.dark .quick-name {
    color: #cbd5e1;
}

/* Notifications List */
.notifications-list {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.dark .notification-item {
    border-bottom-color: #334155;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item.unread {
    background: #f0fdf4;
    margin: 0 -20px;
    padding: 12px 20px;
}

.dark .notification-item.unread {
    background: #14532d;
}

.notif-icon {
    font-size: 1.2rem;
}

.notif-content {
    flex: 1;
}

.notif-title {
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.dark .notif-title {
    color: white;
}

.notif-message {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.notif-time {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* Activity List */
.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.dark .activity-item {
    border-bottom-color: #334155;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.activity-details {
    flex: 1;
}

.activity-text {
    color: #334155;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.dark .activity-text {
    color: #cbd5e1;
}

.activity-time {
    color: #94a3b8;
    font-size: 0.75rem;
}

/* No Data */
.no-data {
    text-align: center;
    color: #94a3b8;
    padding: 20px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-actions {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-details {
        text-align: center;
    }
    
    .tip-meta {
        justify-content: center;
    }
}
/* ============================================
   LIVE TIPS PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tips Section */
.tips-section {
    padding: 40px 20px;
    background: #f8fafc;
    min-height: calc(100vh - 70px - 300px);
}

.dark .tips-section {
    background: #0f172a;
}

.tips-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

/* Tip Card */
.tip-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.dark .tip-card {
    background: #1e293b;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Live Card Specific */
.live-card {
    border-left: 4px solid #ef4444;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        border-left-color: #ef4444;
    }
    50% {
        border-left-color: #f87171;
    }
    100% {
        border-left-color: #ef4444;
    }
}

/* Card Header */
.tip-card-header {
    padding: 15px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dark .tip-card-header {
    background: #0f172a;
    border-bottom-color: #334155;
}

.tip-status {
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-status {
    color: #ef4444;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.tip-time {
    color: #64748b;
    font-size: 0.8rem;
}

/* Card Body */
.tip-card-body {
    padding: 20px;
    flex: 1;
}

.tip-match {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 15px;
    font-weight: 600;
}

.dark .tip-match {
    color: white;
}

.tip-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.tip-detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: #0f172a;
}

.dark .detail-value {
    color: white;
}

.detail-value.highlight {
    color: #22c55e;
    font-weight: 600;
}

.odds-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22c55e;
}

.result-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.result-badge.win {
    background: #22c55e;
    color: white;
}

.result-badge.lose {
    background: #ef4444;
    color: white;
}

.result-badge.pending {
    background: #f59e0b;
    color: white;
}

.tip-match-time {
    font-size: 0.9rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.dark .tip-match-time {
    border-top-color: #334155;
}

/* Card Footer */
.tip-card-footer {
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
}

.dark .tip-card-footer {
    background: #0f172a;
    border-top-color: #334155;
}

.btn-share, .btn-view {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-share {
    background: #3b82f6;
    color: white;
}

.btn-share:hover {
    background: #2563eb;
}

.btn-view {
    background: #22c55e;
    color: white;
}

.btn-view:hover {
    background: #16a34a;
}

.btn-icon {
    font-size: 1rem;
}

/* No Tips Message */
.no-tips-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dark .no-tips-message {
    background: #1e293b;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-tips-message h3 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.dark .no-tips-message h3 {
    color: white;
}

.no-tips-message p {
    color: #64748b;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.message-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 16px;
    background: white;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.dark .page-link {
    background: #1e293b;
    color: white;
    border-color: #334155;
}

.page-link:hover {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.page-link.active {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.page-link.prev, .page-link.next {
    font-weight: 500;
}

/* Info Box */
.info-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.dark .info-box {
    background: #1e3a8a;
    border-left-color: #60a5fa;
}

.info-icon {
    font-size: 2rem;
}

.info-content h4 {
    color: #1e40af;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.dark .info-content h4 {
    color: #bfdbfe;
}

.info-content p {
    color: #1e40af;
    opacity: 0.9;
    line-height: 1.6;
    font-size: 0.95rem;
}

.dark .info-content p {
    color: #e2e8f0;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .message-actions {
        flex-direction: column;
    }
    
    .info-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .tip-card-footer {
        flex-direction: column;
    }
    
    .pagination {
        gap: 4px;
    }
    
    .page-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}
/* ============================================
   DAILY TIPS PAGE SPECIFIC STYLES
   ============================================ */

/* Date Display */
.date-display {
    margin-bottom: 30px;
    text-align: center;
}

.date-card {
    background: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.dark .date-card {
    background: #1e293b;
    border-color: #334155;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1.2;
}

.date-full {
    color: #64748b;
    font-size: 0.9rem;
}

/* Daily Card Specific */
.daily-card {
    border-left: 4px solid #3b82f6;
}

.tip-category {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #3b82f6;
}

.category-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.daily-dot {
    background: #3b82f6;
    animation: none; /* No pulse for daily */
}

/* Tip Result Banner */
.tip-result-banner {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.tip-result-banner.win {
    background: #dcfce7;
    color: #166534;
}

.dark .tip-result-banner.win {
    background: #14532d;
    color: #bbf7d0;
}

.tip-result-banner.lose {
    background: #fee2e2;
    color: #b91c1c;
}

.dark .tip-result-banner.lose {
    background: #7f1d1d;
    color: #fecaca;
}

.result-icon {
    font-size: 1.2rem;
}

.result-text {
    font-size: 0.9rem;
}

/* Save Button */
.btn-save {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: #8b5cf6;
    color: white;
    transition: all 0.2s;
}

.btn-save:hover {
    background: #7c3aed;
}

/* Stats Summary */
.stats-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dark .stats-summary {
    background: #1e293b;
}

.stat-summary-item {
    text-align: center;
    padding: 10px;
    border-right: 1px solid #e2e8f0;
}

.dark .stat-summary-item {
    border-right-color: #334155;
}

.stat-summary-item:last-child {
    border-right: none;
}

.stat-summary-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.dark .stat-summary-value {
    color: white;
}

.stat-summary-label {
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-summary {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-summary-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
    }
    
    .dark .stat-summary-item {
        border-bottom-color: #334155;
    }
    
    .stat-summary-item:nth-child(odd) {
        border-right: 1px solid #e2e8f0;
    }
    
    .dark .stat-summary-item:nth-child(odd) {
        border-right-color: #334155;
    }
    
    .stat-summary-item:last-child,
    .stat-summary-item:nth-last-child(2) {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .date-card {
        padding: 12px 20px;
    }
    
    .date-day {
        font-size: 1.2rem;
    }
    
    .stats-summary {
        grid-template-columns: 1fr;
    }
    
    .stat-summary-item {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 10px;
    }
    
    .stat-summary-item:last-child {
        border-bottom: none;
    }
}
/* ============================================
   WEEKLY TIPS PAGE SPECIFIC STYLES
   ============================================ */

/* Week Display */
.week-display {
    margin-bottom: 30px;
    text-align: center;
}

.week-card {
    background: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.dark .week-card {
    background: #1e293b;
    border-color: #334155;
}

.week-range {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #8b5cf6;
    line-height: 1.2;
}

.week-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Weekly Card Specific */
.weekly-card {
    border-left: 4px solid #8b5cf6;
}

.weekly-dot {
    background: #8b5cf6;
}

/* Confidence Bar */
.confidence-bar {
    width: 80px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.dark .confidence-bar {
    background: #334155;
}

.confidence-level {
    height: 100%;
    background: #8b5cf6;
    border-radius: 3px;
}

.confidence-text {
    font-size: 0.85rem;
    color: #8b5cf6;
    font-weight: 600;
}

/* Analysis Section */
.tip-analysis {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed #e2e8f0;
}

.dark .tip-analysis {
    border-top-color: #334155;
}

.analysis-details {
    cursor: pointer;
}

.analysis-summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b5cf6;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
}

.analysis-summary::-webkit-details-marker {
    display: none;
}

.summary-icon {
    font-size: 1rem;
}

.analysis-content {
    margin-top: 10px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
}

.dark .analysis-content {
    background: #0f172a;
    color: #cbd5e1;
}

.analysis-points {
    margin-top: 10px;
    padding-left: 20px;
}

.analysis-points li {
    margin-bottom: 5px;
    color: #22c55e;
}

/* Remind Button */
.btn-remind {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: #f59e0b;
    color: white;
    transition: all 0.2s;
}

.btn-remind:hover {
    background: #d97706;
}

/* Performance Section */
.performance-section {
    margin: 40px 0;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dark .performance-section {
    background: #1e293b;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: #0f172a;
    font-size: 1.3rem;
}

.dark .section-subtitle {
    color: white;
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.performance-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    transition: transform 0.2s;
}

.dark .performance-card {
    background: #0f172a;
}

.performance-card:hover {
    transform: translateY(-3px);
}

.performance-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
}

.dark .performance-icon {
    background: #1e293b;
}

.win-icon {
    color: #22c55e;
}

.loss-icon {
    color: #ef4444;
}

.rate-icon {
    color: #8b5cf6;
}

.performance-content {
    flex: 1;
}

.performance-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
}

.dark .performance-value {
    color: white;
}

.performance-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Featured Tip */
.featured-tip {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-tip::before {
    content: '⭐';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(20deg);
}

.featured-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-match {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.featured-prediction,
.featured-odds {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.featured-pred-label,
.featured-odds-label {
    opacity: 0.9;
    margin-right: 10px;
}

.featured-pred-value {
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 20px;
}

.featured-odds-value {
    font-weight: 700;
    font-size: 1.3rem;
}

.btn-featured {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: white;
    color: #8b5cf6;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-featured:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-match {
        font-size: 1.3rem;
    }
    
    .week-range {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-tip {
        padding: 20px;
    }
    
    .featured-match {
        font-size: 1.1rem;
    }
    
    .featured-prediction,
    .featured-odds {
        font-size: 0.9rem;
    }
}
/* ============================================
   MONTHLY TIPS PAGE SPECIFIC STYLES
   ============================================ */

/* Month Display */
.month-display {
    margin-bottom: 30px;
    text-align: center;
}

.month-card {
    background: white;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

.dark .month-card {
    background: #1e293b;
    border-color: #334155;
}

.month-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ec4899;
    line-height: 1.2;
}

.month-label {
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Monthly Card Specific */
.monthly-card {
    border-left: 4px solid #ec4899;
}

.monthly-dot {
    background: #ec4899;
}

.monthly-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.dark .monthly-section {
    background: linear-gradient(135deg, #831843 0%, #6b21a5 100%);
}

/* Strategy Badge */
.strategy-badge {
    background: #ec4899;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Long-term Analysis */
.long-term-analysis {
    margin-top: 15px;
    padding: 15px;
    background: #fdf2f8;
    border-radius: 8px;
    border: 1px solid #fbcfe8;
}

.dark .long-term-analysis {
    background: #831843;
    border-color: #9d174d;
}

.analysis-title {
    font-size: 0.95rem;
    color: #be185d;
    margin-bottom: 8px;
    font-weight: 600;
}

.dark .analysis-title {
    color: #fbcfe8;
}

.analysis-text {
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 12px;
    line-height: 1.5;
}

.dark .analysis-text {
    color: #fce7f3;
}

.analysis-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.analysis-stat {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    color: #9d174d;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.dark .stat-label {
    color: #f9a8d4;
}

.stat-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: #be185d;
}

.dark .stat-value {
    color: #fbcfe8;
}

.form-good {
    color: #22c55e;
}

.value-positive {
    color: #22c55e;
}

/* Key Insights */
.key-insights {
    margin-top: 15px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #fbcfe8;
}

.dark .insight-item {
    border-bottom-color: #9d174d;
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-icon {
    font-size: 1rem;
    min-width: 20px;
}

.insight-text {
    font-size: 0.85rem;
    color: #334155;
}

.dark .insight-text {
    color: #fce7f3;
}

/* Strategy Button */
.btn-strategy {
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: #ec4899;
    color: white;
    transition: all 0.2s;
}

.btn-strategy:hover {
    background: #db2777;
}

/* Monthly Dashboard */
.monthly-dashboard {
    margin: 50px 0 30px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.1);
    border: 1px solid #fbcfe8;
}

.dark .monthly-dashboard {
    background: #1e293b;
    border-color: #9d174d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.dashboard-title {
    text-align: center;
    margin-bottom: 25px;
    color: #be185d;
    font-size: 1.5rem;
    font-weight: 600;
}

.dark .dashboard-title {
    color: #fbcfe8;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.dashboard-card {
    background: #fdf2f8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.2s;
    border: 1px solid #fbcfe8;
}

.dark .dashboard-card {
    background: #831843;
    border-color: #9d174d;
}

.dashboard-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    color: #ec4899;
}

.dark .card-icon {
    background: #1e293b;
}

.card-content {
    flex: 1;
}

.card-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #be185d;
    line-height: 1.2;
}

.dark .card-value {
    color: #fbcfe8;
}

.card-label {
    color: #9d174d;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dark .card-label {
    color: #f9a8d4;
}

.trend-up {
    color: #22c55e;
}

.trend-down {
    color: #ef4444;
}

.roi-positive {
    color: #22c55e;
}

.roi-negative {
    color: #ef4444;
}

/* Strategies Section */
.strategies-section {
    margin: 40px 0;
}

.strategies-title {
    text-align: center;
    margin-bottom: 25px;
    color: #be185d;
    font-size: 1.3rem;
}

.dark .strategies-title {
    color: #fbcfe8;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.strategy-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(236, 72, 153, 0.1);
    border: 1px solid #fbcfe8;
    transition: transform 0.2s;
}

.dark .strategy-card {
    background: #1e293b;
    border-color: #9d174d;
}

.strategy-card:hover {
    transform: translateY(-3px);
}

.strategy-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ec4899;
}

.strategy-card h4 {
    color: #be185d;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.dark .strategy-card h4 {
    color: #fbcfe8;
}

.strategy-card p {
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dark .strategy-card p {
    color: #fce7f3;
}

/* Monthly Info Box */
.monthly-info {
    background: #fdf2f8;
    border-left-color: #ec4899;
}

.dark .monthly-info {
    background: #831843;
    border-left-color: #f9a8d4;
}

.monthly-info .info-content h4 {
    color: #be185d;
}

.dark .monthly-info .info-content h4 {
    color: #fbcfe8;
}

.monthly-info .info-content p {
    color: #9d174d;
}

.dark .monthly-info .info-content p {
    color: #fce7f3;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .month-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .analysis-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .monthly-dashboard {
        padding: 20px;
    }
}
/* ============================================
   LIVE CENTER STYLES
   ============================================ */

.live-header {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

/* Live Tabs */
.live-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    border: none;
    background: white;
    color: #0f172a;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 1rem;
}

.dark .tab-button {
    background: #1e293b;
    color: white;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.tab-button.active {
    background: #22c55e;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Matches Grid */
.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.match-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    border-left: 4px solid #ef4444;
}

.dark .match-card {
    background: #1e293b;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.dark .match-header {
    border-bottom-color: #334155;
}

.match-league {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.match-status.live-status {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ef4444;
    font-weight: 600;
    font-size: 0.8rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.match-teams {
    margin-bottom: 15px;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.team-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 1rem;
}

.dark .team-name {
    color: white;
}

.team-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.match-vs {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    margin: 5px 0;
    font-weight: 600;
}

.match-footer {
    text-align: center;
}

.btn-match-details {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f5f9;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dark .btn-match-details {
    background: #334155;
    color: white;
}

.btn-match-details:hover {
    background: #22c55e;
    color: white;
}

/* Streams Grid */
.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stream-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.dark .stream-card {
    background: #1e293b;
}

.stream-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stream-thumbnail {
    height: 140px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stream-live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

.stream-info {
    padding: 15px;
}

.stream-match {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0f172a;
}

.dark .stream-match {
    color: white;
}

.stream-league {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 10px;
}

.btn-stream {
    display: inline-block;
    padding: 6px 12px;
    background: #22c55e;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.btn-stream:hover {
    background: #16a34a;
}

/* Statistics Grid */
.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.dark .stat-card {
    background: #1e293b;
}

.stat-match-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #0f172a;
    text-align: center;
}

.dark .stat-match-title {
    color: white;
}

.stat-possession {
    margin-bottom: 15px;
}

.possession-bar {
    display: flex;
    height: 30px;
    background: #e2e8f0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 5px;
}

.dark .possession-bar {
    background: #334155;
}

.possession-home {
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.possession-away {
    background: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.possession-label {
    font-size: 0.7rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px dotted #e2e8f0;
}

.dark .stat-row {
    border-bottom-color: #334155;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: #0f172a;
}

.dark .stat-value {
    color: white;
}

/* API Notice */
.api-notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.dark .api-notice {
    background: #854d0e;
    border-left-color: #fbbf24;
}

.notice-icon {
    font-size: 2rem;
}

.notice-content h4 {
    color: #92400e;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.dark .notice-content h4 {
    color: #fef3c7;
}

.notice-content p {
    color: #92400e;
    opacity: 0.9;
    line-height: 1.5;
    font-size: 0.95rem;
}

.dark .notice-content p {
    color: #fef9c3;
}

/* Refresh Status */
.refresh-status {
    text-align: center;
    color: #64748b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.refresh-icon {
    font-size: 1rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .live-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        text-align: center;
    }
    
    .matches-grid,
    .streams-grid,
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .api-notice {
        flex-direction: column;
        text-align: center;
    }
}
/* ============================================
   FOOTER STYLES (IMPROVED)
   ============================================ */

.footer {
    background: #0f172a;
    color: #e2e8f0;
    margin-top: auto;
    padding: 60px 0 0;
    border-top: 1px solid #1e293b;
    font-family: 'Inter', sans-serif;
}

.dark .footer {
    background: #020617;
    border-top-color: #334155;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.8fr;
    gap: 40px;
}

/* Footer Columns */
.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-column h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-column h4 {
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #22c55e;
    transition: width 0.3s;
}

.footer-column:hover h4::after {
    width: 60px;
}

.footer-about {
    line-height: 1.7;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: #22c55e;
    transform: translateY(-4px);
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.social-icon {
    font-size: 1.1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #22c55e;
    transform: translateX(6px);
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.2s, left 0.2s;
    color: #22c55e;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

/* WhatsApp Support Items */
.support-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.03);
    padding: 14px;
    border-radius: 10px;
    transition: all 0.25s;
    border: 1px solid transparent;
}

.support-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

.support-icon {
    font-size: 1.6rem;
    min-width: 32px;
    line-height: 1;
}

.support-details {
    flex: 1;
}

.support-type {
    display: block;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.support-number {
    display: inline-block;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 4px;
    word-break: break-all;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s;
}

.support-number:hover {
    border-bottom-color: #22c55e;
}

.support-desc {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
}

.support-note {
    margin-top: 15px;
    color: #64748b;
    font-size: 0.8rem;
    text-align: center;
    font-style: italic;
    padding-top: 10px;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.copyright-version {
    background: rgba(255,255,255,0.05);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 5px;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    padding: 4px 0;
}

.footer-bottom-links a:hover {
    color: #22c55e;
}

.separator {
    color: #475569;
    font-weight: 300;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-about {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .support-item {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }
    
    .separator {
        display: none;
    }
    
    .support-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .support-icon {
        margin-bottom: 5px;
    }
}