/* CSS Document */

:root {
    --banner-height: 60px;
	--dark-bg: #262626;
	--accent-green: #2ecc71; /* Dein Profit-Grün */
	--light-gray: #f8f9fa;
	--white: #ffffff;
	--text-muted: #888;
	--border-color: #eeeeee;
	--hr-grey: #333333;
}

html, body{
	font-family: -applete-system, BlinkMacSystemFont,'Segoe UI','Roboto', 'Droid Sans','Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
	margin:0;
	padding:0;
	background-color:#efefef;
	font-size: 14px;

}
body { background-color: #f0f2f5;  }

h1{
	font-size: 1.8em;
	margin-block-start: 0.8em;
	margin-block-end: 1.4em;
	font-weight: 600;
	margin-left: 0.5em;
	line-height: 1.2em;
}

h2{
	font-size: 1.6em;
	margin-block-start: 1em;
	margin-block-end: 1em;
	font-weight: 600;
}
a{
	text-decoration: none;
}

ul{
	list-style: none;
	margin:0;
	padding:0;
}

.main{
	max-width: 1360px;
	margin:0 auto;
}
.main-cont{
	display:flex;
	margin:10px auto;
	border-radius: 4px;
	overflow: hidden;
	padding:25px 0px;
}
.main-cont-m{
	flex-grow:1;
}

.top-nav{
	display:flex;
	align-items: center;
}
.top-nav li{
	color:#fff;
	margin:0px 6px;
}
.top-nav li a{
	padding:8px 10px;
	color:#fff;
	transition: all 0.2s;
	border-radius: 8px;
}
.top-nav li a:hover{
	background-color:var(--hr-grey);
}



/* ++++ APP BANNER +++ */
.app-banner {
    height: var(--banner-height);
    background: var(--dark-bg); /* Dein dunkler Header-Ton */
    color: white;
    width: 100%;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    transition: margin-top 0.4s ease-in-out; /* Das weiche Rausscrollen */
    border-bottom: 2px solid var(--hr-grey);
    display: flex;
    align-items: center;
}

.banner-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.app-icon {
    background: var(--accent-green);
    color: var(--dark-bg);
    font-weight: 900;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
}

.banner-text { flex-grow: 1; line-height: 1.2; }
.banner-text strong { display: block; font-size: 0.9rem; }
.banner-text small { font-size: 0.7rem; color: #888; }

.download-btn {
    background: var(--accent-green);
    color: var(--dark-bg);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 20px;
    margin-right: 15px;
}

.close-banner {
    background: none;
    border: none;
    color: #555;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Klasse zum Ausblenden */
.banner-hidden {
    margin-top: calc(var(--banner-height) * -1);
}




/* ++++ AI WELCOME BOX ++++ */


    .ai-trust-box {
        background: #ffffff; /* Heller Kontrast zum dunklen Rest */
        border-radius: 16px;
        margin-bottom: 35px;
        padding: 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Weicher Schatten */
		box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        border: 1px solid #e0e0e0;
        position: relative;
        overflow: hidden;
    }

    /* Der "AI-Glow" im Hintergrund (ganz dezent) */
    .ai-trust-box::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, rgba(255,255,255,0) 70%);
        pointer-events: none;
    }

    .trust-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .trust-title h2 {
        margin: 0;
        color: #1a1a1a;
        font-size: 1.4rem;
        font-weight: 800;
		margin-block-start: 10px;
    }

    .ai-badge {
        background: #f0fff4;
        color: #27ae60;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.65rem;
        font-weight: 900;
        border: 1px solid #c6f6d5;
        letter-spacing: 0.5px;
    }

    .trust-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .trust-text {
        color: #555;
        font-size: 0.9rem;
        line-height: 1.5;
        padding-right: 20px;
    }

    /* Stats-Kacheln in der Box */
    .trust-stats {
        display: flex;
        gap: 15px;
    }

    .stat-card {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 12px;
        flex: 1;
        text-align: center;
        border: 1px solid #eee;
    }

    .stat-card .label {
        display: block;
        font-size: 0.65rem;
        color: #888;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .stat-card .value {
        font-size: 1.3rem;
        font-weight: 800;
        color: #1a1a1a;
    }

    .stat-card .value.plus {
        color: #2ecc71; /* Grüner Profit-Wert */
    }

    .trust-footer {
        margin-top: 20px;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        color: #999;
    }

    .live-dot {
        width: 8px;
        height: 8px;
        background: #2ecc71;
        border-radius: 50%;
        margin-right: 8px;
        animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.5; }
        100% { transform: scale(1); opacity: 1; }
    }

    @media (max-width: 600px) {
        .trust-body { grid-template-columns: 1fr; }
    }


/* ++++ OPTIMIZE BOX ++++ */

.optimizer-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 35px;
    border: 1px solid #ffeeba; /* Dezentes Warn-Gelb */
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
}

.optimizer-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Die grafische Komponente: Kreis-Chart mit Puls */
.profit-loss-chart {
    position: relative;
    flex-shrink: 0;
}

.chart-circle {
    width: 85px;
    height: 85px;
    background: #fff;
    border: 4px solid #f39c12; /* Orange-Gelb für "Achtung" */
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.loss-value {
    font-size: 1.2rem;
    font-weight: 900;
    color: #e67e22;
}

.loss-label {
    font-size: 0.55rem;
    font-weight: 800;
    color: #888;
}

/* Der pulsierende Ring hinter dem Kreis */
.pulse-ring {
    position: absolute;
    top: 0; left: 0;
    width: 85px; height: 85px;
    border: 4px solid #f39c12;
    border-radius: 50%;
    animation: pulse-orange 2s infinite;
    z-index: 1;
}

@keyframes pulse-orange {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.optimizer-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.optimizer-text p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 12px;
}

.setup-link {
    display: inline-block;
    color: #2ecc71;
    font-weight: 800;
    font-size: 0.8rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.setup-link:hover {
    border-bottom-color: #2ecc71;
    letter-spacing: 0.5px;
}





/* ++++ MATCH CARD ++++ */

/* Die Match-Card */
.match-card {
	background: var(--white);
	border-radius: 14px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.05);
	/*max-width: 680px;*/
	margin: 0 0 20px 0;
	overflow: hidden;
	border: 1px solid var(--border-color);
	text-decoration:none;
	 transition: transform 0.2s;
}

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

a:has(.match-card) {
  text-decoration: none;
}

/* Header: Liga & Zeit */
.card-header {
	background: var(--dark-bg);
	color: white;
	padding: 12px 18px;
	display: flex;
	justify-content: space-between;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

/* Team Sektion */
.card-body { padding: 24px 18px; }

.teams-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	text-align: center;
}

.team { flex: 1; font-weight: 700; font-size: 1.1rem; color: #222; }
.team-logo-container{
	height:58px;width:58px;background-color:#f7f7f7;border-radius: 25%;margin-inline: auto;align-content: center; margin-block-end: 8px;text-align: center;
}
.team-logo-container img{
	width:42px;height:42px;margin-block-start: 4px;
}
.vs-circle {
	width: 35px;
	height: 35px;
	background: var(--light-gray);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: #999;
	font-weight: bold;
	margin: 0 10px;
}

/* Quoten-Matrix */
.odds-matrix { display: flex; flex-direction: column; gap: 8px; }

/* Kopfzeile der Matrix (Bookies) */
.matrix-labels {
	display: grid;
	grid-template-columns: 30px 1fr 1fr 1fr;
	gap: 8px;
	margin-bottom: 5px;
	padding-left: 5px;
}

.bookie-label {
	font-size: 0.65rem;
	color: var(--text-muted);
	text-align: center;
	font-weight: 600;
	text-transform: uppercase;
}

/* Reihe für 1, X, 2 */
.odds-row {
	display: grid;
	grid-template-columns: 30px 1fr 1fr 1fr;
	gap: 8px;
	align-items: center;
}

.row-type {
	font-size: 0.8rem;
	font-weight: 700;
	color: #bbb;
	text-align: center;
}

.odd-box {
	background: #fdfdfd;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	padding: 10px 5px;
	text-align: center;
	font-weight: 600;
	font-size: 0.95rem;
	color: #444;
	transition: all 0.2s ease;
}

/* DER KI-VALUE HIGHLIGHT */
.is-value {
	background: rgba(46, 204, 113, 0.08); /* Sanftes Grün-Transparent */
	border: 2px solid var(--accent-green);
	color: var(--accent-green);
	position: relative;
}

.is-value::after {
	content: "VALUE " attr(data-edge);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-green);
	color: white;
	font-size: 0.5rem;
	padding: 1px 5px;
	border-radius: 3px;
	letter-spacing: 0.5px;
	z-index:2;
}

/* Badge für Pinnacle (Benchmark) */
.odd-box.fair-odd { color: #888; font-weight: 400; background: #fafafa; }

/*
.is-value-top {
border: 2px solid #2ecc71;
box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0% { transform: scale(1); }
	50% { transform: scale(1.02); }
	100% { transform: scale(1); }
}*/
	
	
	
	.is-value-top {
    position: relative;
    background: rgba(46, 204, 113, 0.1) !important; /* Ganz zartes Grün im Hintergrund */
    border: 2px solid var(--accent-green) !important;
    color: var(--accent-green) !important;
    font-weight: 800;
    z-index: 3;
    /* Hier kommt der Glow-Effekt */
    animation: professional-pulse 2.5s infinite ease-in-out;
}

/* Der pulsierende Glow-Effekt (Nur der Schatten/Rahmen glüht) */
@keyframes professional-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
    50% {
        box-shadow: 0 0 15px 5px rgba(46, 204, 113, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }
}

/* Optional: Ein kleines animiertes "Live"-Licht über der Quote */
/*.is-value-top::before {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-green);
}*/

	
	/* Das schwebende Schild (Badge) */
.is-value-top::after {
    content: 'TOP VALUE ' attr(data-edge);
    position: absolute;
    top: -12px; /* Positioniert es genau auf dem oberen Rand */
    left: 50%;
    transform: translateX(-50%); /* Zentriert das Schild exakt */
    background: var(--accent-green);
    color: var(--dark-bg); /* Dunkler Text auf Grün für maximalen Kontrast */
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    z-index: 2;
    /* Optional: Das Schild kann mitpulsieren */
    animation: badge-bounce 1s infinite ease-in-out;
	z-index: 100;
}

/* Subtiles Schweben des Schildes */
@keyframes badge-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-2px); }
}

/* Die Box selbst (Pulsierender Rahmen) */
/*.is-value-top {
    position: relative;
    border: 2px solid var(--accent-green) !important;
    background: rgba(46, 204, 113, 0.05) !important;
    animation: professional-pulse 2.5s infinite ease-in-out;
}*/






/* ***** MATCH DETAILS LIST **** */

/* --- 1. GRUNDSTRUKTUR & CONTAINER --- */
.analysis-grid {
    display: block;
    width: 100%;
    margin-top: 25px;
}

.odds-table {
    width: 100%;
    border-radius: 12px;
    overflow: visible; /* Wichtig für das 🏆 Badge */
    border-collapse: separate; 
    border-spacing: 0; /* KEINE Lücken zwischen den Spalten */
    background: transparent;
    user-select: none;
}

.odds-table thead { 
    background: var(--dark-bg); 
    color: white; 
}

.odds-table th {
    padding: 20px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.odds-table td {
    text-align: center;
    background: white;
    padding: 15px;
    vertical-align: middle;
    transition: background 0.2s ease;
    border-bottom: 1px solid #f2f2f2;
}

/* Fixierte Spaltenbreiten */
.odds-table th:first-child, .odds-table td:first-child { text-align: left; width: 180px; padding-left: 30px; }
.odds-table th:last-child, .odds-table td:last-child { width: 140px; padding-right: 30px; }

/* --- 2. VALUE & MASTER-PICK ZELLEN (Identische Rahmenstärke) --- */
.val-cell {
    font-weight: 800;
    font-size: 1.15rem;
    color: #333;
    position: relative;
    width: 120px;
}

/* DER FIX: Outline statt Box-Shadow verhindert das optische "Aufschwemmen" */
.is-value, 
.is-master-pick {
    outline: 2px solid #2ecc71 !important;
    outline-offset: -2px; /* Zieht den Rahmen exakt nach innen */
    position: relative;
	
}

.is-value {
    background-color: rgba(46, 204, 113, 0.05) !important;
    z-index: 3;
}
.is-master-pick {
    background-color: rgba(46, 204, 113, 0.15) !important;
    z-index: 1; /* Master liegt über eventuellen Nachbar-Outlines */
}

/* 1. DIE QUOTE IN VALUE- & MASTER-ZELLEN GRÜN FÄRBEN */
.is-value .price, 
.is-master-pick .price {
    color: var(--accent-green) !important; /* Ein sattes, gut lesbares KI-Grün */
    transition: color 0.2s ease;
}
/* 2. HOVER-EFFEKT: Wenn man die Zeile hovert, wird das Grün noch intensiver */
/*.bookie-row:hover .is-value .price,
.bookie-row:hover .is-master-pick .price {
    color: #27ae60 !important;
}*/


/* Das Badge für den Master-Pick */
.is-master-pick::before {
    content: 'KI-EMPFEHLUNG ' attr(data-edge);
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: #2ecc71;
    color: white;
    font-size: 0.55rem;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 900;
    z-index: 20; 
	animation: badge-bounce 1s infinite ease-in-out;
	
	 /* Farben & Design */
    background: var(--accent-green);
    color: var(--dark-bg);
    /*border: 1.5px solid #f39c12; /* #2ecc71  Dnner, giftgrner Rand fr Kontrast zu Wei */
    border-radius: 10px; /* Pille-Form */
    
    /* Schriftdetails */
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 12px;
    white-space: nowrap;
    letter-spacing: 0.3px;
    
    /* Der Effekt: Kombinierter Schatten fr Sichtbarkeit auf jedem Grund */
    /*box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),      
        0 0 12px rgba(46, 204, 113, 0.5);  */
    
    z-index: 30;
   /* animation: master-smart-bounce 2.2s infinite ease-in-out;*/
	
}
/* Die smarte Animation: Dezent, aber unbersehbar */
@keyframes master-smart-bounce {
    0% { 
        transform: translateX(-50%) translateY(0) scale(1); 
        box-shadow: 0 4px 8px rgba(0,0,0,0.15), 0 0 8px rgba(46,204,113,0.3);
    }
    50% { 
        transform: translateX(-50%) translateY(-4px) scale(1.08); /* Sanfter Hopser */
        box-shadow: 0 8px 15px rgba(0,0,0,0.2), 0 0 18px rgba(46,204,113,0.6);
        border-color: #27ae60; /* Rand wird beim Hpfen dunkler grn */
    }
    100% { 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
}


/* --- 3. REIHEN-STYLING (Master-Reihe & Hover) --- */
.bookie-row { cursor: pointer; }

/* Markierung für die Master-Reihe (der grüne Balken links) */
.is-master-row td:first-child {
    border-left: 5px solid #2ecc71 !important;
}

/* Dezenter Hintergrund für die ganze Master-Reihe (Statischer Glow) */
.is-master-row td {
    background-color: rgba(46, 204, 113, 0.03);
}



/* Hover-Effekte auf Zeilenebene */
.bookie-row:hover td {
    /*background-color: #fafafa !important;*/
	/*background-color: rgba(46, 204, 113, 0.08) !important; *//* Dein KI-Grün-Hauch */
	background-color: rgba(46, 204, 113, 0.12) !important;
    transition: background 0.2s ease;
}

.bookie-row:hover .btn-bet {
    /*background: var(--accent-green) !important;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);*/
	background: var(--accent-green) !important;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

/* --- 4. BUTTONS, HINTS & FOOTER --- */
.btn-bet {
    background: #2c3e50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    transition: 0.2s;
}

.netto-hint {
    display: block;
    font-size: 0.65rem;
    color: #999;
    font-weight: 400;
    margin-top: 4px;
}

.action-cell {
    text-align: right;
    padding-right: 30px;
}

/* 1. DIE REFERENZ-ZEILE (Der mathematische Anker) */
.row-ai-fair td {
    background: #f8fafc !important; /* Sehr helles, kühles Blau-Grau */
    border-bottom: 2px solid #e2e8f0 !important; /* Etwas stärkere Linie als Trenner */
    color: #64748b !important; /* Dezentes Schiefergrau für die Zahlen */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: default; /* Zeigt, dass man hier nicht klicken kann */
    padding: 12px 15px !important; /* Etwas schmaler als die Bookie-Rows */
}

/* 2. DAS KI-LABEL (Das Gehirn-Icon) */
.row-ai-fair td:first-child {
    color: #475569 !important;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-left: 5px solid #cbd5e1 !important; /* Grauer Balken statt Grün */
}

/* 3. HOVER-STOPP (Wichtig!) */
/* Wir verhindern, dass die KI-Zeile grün wird oder den Zeiger ändert */
.row-ai-fair:hover td {
    background: #f8fafc !important;
    transform: none !important;
    box-shadow: none !important;
}












.master-signal-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 30px;
}
.card-glow {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: #2ecc71;
    box-shadow: 2px 0 15px rgba(46, 204, 113, 0.3);
}

.card-glow {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: #2ecc71;
    box-shadow: 2px 0 15px rgba(46, 204, 113, 0.3);
}

.card-inner {
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Linke Seite */
.ai-status {
    font-size: 0.65rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #2ecc71;
    animation: blinker 2s infinite;
}

@keyframes blinker { 50% { opacity: 0.3; } }

/* Mittelsektion: Fokus auf den Tipp */
.match-logic {
    text-align: center;
    flex: 1;
}

.teams-mini-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.mini-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.8;
}

.vs-text {
    font-size: 0.6rem;
    font-weight: 900;
    color: #cbd5e1;
    text-transform: uppercase;
}

.bet-target {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.1;
}

.bookie-info {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 5px;
}

/* Metriken Links */
.ai-meta { min-width: 100px; }
.ai-status { font-size: 0.6rem; font-weight: 800; color: #94a3b8; margin-bottom: 8px; }

/* Action Rechts */
.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-value { font-size: 2.2rem; font-weight: 900; color: #1e293b; }

.btn-master-bet {
    background: #1e293b;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.8rem;
}


.master-signal-card.shimmer-static {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(46, 204, 113, 0.15);
    animation: static-shimmer 4s infinite ease-in-out;
}

@keyframes static-shimmer {
    0%, 100% { box-shadow: 0 8px 22px rgba(46, 204, 113, 0.15); }
    50% { box-shadow: 0 13px 34px rgba(46, 204, 113, 0.25); }
}

.card-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    gap: 15px;
}

/* Links: Statistik-Sektion */
.ai-meta { min-width: 100px; text-align: left; }
.ai-status { font-size: 0.65rem; font-weight: 900; color: #2ecc71; margin-bottom: 6px; display: flex; align-items: center; letter-spacing: 1px; }
.data-stat { border-left: 2px solid #f1f5f9; padding-left: 12px; margin-left: 4px; }
.stat-val { display: block; font-size: 0.9rem; font-weight: 900; color: #1e293b; line-height: 1; }
.stat-lbl { font-size: 0.5rem; color: #94a3b8; font-weight: 700; letter-spacing: 0.5px; }

/* Mitte: Match */
.match-logic { text-align: center; flex: 1; }
.teams-mini-row { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 5px; }
.mini-logo { width: 24px; height: 24px; object-fit: contain; }
.bet-target { margin: 0; font-size: 1.8rem; font-weight: 900; color: #1e293b; line-height: 1; text-transform: uppercase; }
.bookie-info { font-size: 0.8rem; color: #64748b; margin-top: 8px; }

/* Rechts: Edge & Action */
.action-hub { text-align: right; }
.edge-badge {
    display: inline-block;
    background: #f0fff4;
    color: #22c55e;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid #dcfce7;
    margin-bottom: 12px;
}

.price-display { display: flex; align-items: center; gap: 15px; justify-content: flex-end; }
.price-value { font-size: 2.6rem; font-weight: 900; color: #1e293b; letter-spacing: -1px; }

.btn-master-bet {
    background: #1e293b;
    color: white;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    transition: all 0.2s;
}
.btn-master-bet:hover { background: #2ecc71; transform: translateY(-2px); }






/* ***** NO MASTER PICK **** /

/* Spezieller Style fr das inaktive Panel */
.master-signal-card.no-pick-active .card-glow {
    display: none; /* Leuchten entfernen */
}


.no-pick-active .ai-status {
    color: #888;
}

.no-pick-active .vs-text {
    opacity: 1;
}

.no-pick-active .data-stat .stat-val {
    color: #888;
}

.no-pick-active {
    border: 1px dashed var(--border-color) !important;
    background: #fff !important;
    box-shadow: none !important;
}

.pulse-dot-grey {
    height: 8px; width: 8px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    animation: snapshot-pulse-grey 2s infinite;
}

@keyframes snapshot-pulse-grey {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

.no-pick-active .stat-val {
    color: var(--text-muted) !important;
}






/* ++++++ GAME LIVE ++++*/



.live-badge {
    background: #e74c3c;
    color: white;
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    animation: pulse-opacity 1.5s infinite;
}

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

.status-title {
    color: var(--dark-bg);
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.status-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.odds-snapshot-cont{
	border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.odds-snapshot-flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
}

.snapshot-col .label {
    display: block;
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.snapshot-col .value {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark-bg);
}




.live-match-snapshot {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin: 25px 0;
}

/* Badge */
.snapshot-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: #fff5f5;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #feb2b2;*/
    margin-bottom: 35px;
}


/* Match Core */
.snapshot-match-core {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.snapshot-team { display: flex; flex-direction: column; align-items: center; width: 180px; }
.team-logo-img { width: 90px; height: 90px; object-fit: contain; margin-bottom: 12px; }
.team-name-text { font-weight: 800; font-size: 1.1rem; color: var(--dark-bg); }

.snapshot-center-meta { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.vs-divider { font-weight: 900; color: #eee; font-size: 1.5rem; line-height: 1; }

/* Timer unter VS */
.snapshot-timer { display: flex; flex-direction: column; align-items: center; }
.timer-val { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.timer-label { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); margin-top: 4px; }



.snapshot-footer { margin-top: 30px; font-size: 0.7rem; color: var(--text-muted); }



/* *** MACH END. **** */

.match-result-snapshot {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 25px 0;
}

/* Win/Loss Status */
.match-result-snapshot.is-win { border-color: var(--accent-green); background: #fdfdfd; }
.match-result-snapshot.is-loss { border-color: #e0e0e0; filter: grayscale(0.2); }

.snapshot-result-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.75rem;
    margin-bottom: 35px;
}

.is-win .snapshot-result-badge { background: #e8f8f0; color: var(--accent-green); }
.is-loss .snapshot-result-badge { background: #f4f4f4; color: #888; }

/* Scoreboard */
.final-score-display { display: flex; flex-direction: column; align-items: center; }
.score-val { font-size: 3.2rem; font-weight: 900; color: var(--dark-bg); letter-spacing: 5px; line-height: 1; }
.score-label { font-size: 0.6rem; font-weight: 800; color: var(--text-muted); margin-top: 10px; letter-spacing: 2px; }

/* Highlight Win Box */
.master-pick-summary.highlight-win {
    background: rgba(46, 204, 113, 0.1);
    border: 1.5px solid var(--accent-green);
}

.is-win .badge-ki { background: var(--accent-green); }
.is-loss .badge-ki { background: #888; }

















.ai-conclusion-box {
    background: #f9fbf9; /* Ganz zartes Grün-Weiß */
    border-left: 0px solid #2ecc71; /* Dein sattes Grün 4*/
    padding: 20px;
    margin-top: 25px;
    border-radius: 0 12px 12px 0;
	border-radius:12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	z-index: 10;
}

.conclusion-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(46, 204, 113, 0.3));
}

.conclusion-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
}

.conclusion-text strong {
    color: #27ae60;
}





/* ++++ FOOTER ++++ */
.foot-app-cont{
	display:flex;
}
.foot-app-cont a{
	opacity: 0.7;
	transition: all 0.2s ease;
}
.foot-app-cont a:hover{
	opacity: 0.9;
}


