 :root {

     --primary: #002D62;
     --primary-light: #004e92;
     --accent: #00B4D8;
     --action: #FF6B35;
     --action-hover: #e85d28;
     --bg-body: #F0F4F8;
     --bg-card: #FFFFFF;
     --text-main: #1e293b;
     --text-muted: #64748b;


     --radius-sm: 8px;
     --radius-md: 16px;
     --radius-lg: 24px;
     --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
     --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
     --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 }


 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: var(--font-main);
     background-color: var(--bg-body);
     color: var(--text-main);
     line-height: 1.5;
     padding-top: 80px;
     -webkit-font-smoothing: antialiased;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: var(--transition);
 }

 ul {
     list-style: none;
 }

 img {
     display: block;
     max-width: 100%;
     object-fit: cover;
 }

 button {
     font-family: inherit;
 }


 .container {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 1rem;
 }

 .section-header {
     margin-bottom: 2rem;
     display: flex;
     justify-content: space-between;
     align-items: flex-end;
     flex-wrap: wrap;
     gap: 1rem;
 }

 .section-title {
     font-size: 2rem;
     color: var(--primary);
     font-weight: 800;
     line-height: 1.1;
 }

 .hidden {
     display: none !important;
 }


 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.75rem 1.5rem;
     border-radius: 50px;
     font-weight: 600;
     cursor: pointer;
     border: none;
     transition: var(--transition);
     font-size: 0.95rem;
 }

 .btn-primary {
     background: linear-gradient(135deg, var(--action) 0%, var(--action-hover) 100%);
     color: white;
     box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
 }

 .btn-outline {
     background: transparent;
     border: 2px solid var(--primary) !important;
     color: var(--primary);
 }

 .btn-outline:hover {
     background: var(--primary);
     color: white !important;
 }

 .btn-nav {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: white;
     border: 1px solid #cbd5e1;
     color: var(--primary);
     font-size: 1.2rem;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: var(--transition);
 }

 .btn-nav:hover {
     background: var(--primary);
     color: white;
     border-color: var(--primary);
 }


 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 80px;
     background: rgba(255, 255, 255, 0.9);
     backdrop-filter: blur(12px);
     z-index: 1000;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: center;
 }

 .nav-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     font-size: 1.5rem;
     font-weight: 900;
     color: var(--primary);
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .logo span {
     color: var(--accent);
 }

 nav ul {
     display: flex;
     gap: 30px;
 }

 nav a {
     font-weight: 500;
     font-size: 0.9rem;
     color: var(--text-main);
     position: relative;
 }

 nav a:hover {
     color: var(--primary);
 }

 .auth-block {
     display: flex;
     gap: 10px;
     align-items: center;
 }

 @media (max-width: 900px) {
     nav {
         display: none;
     }

     .logo {
         font-size: 1.2rem;
     }
 }


 #hero {
     background: url('../img/hero.png') center center/cover no-repeat;
     color: white;
     padding: 100px 0 80px;
     border-radius: 0 0 40px 40px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 #hero h1 {
     font-size: clamp(2.5rem, 5vw, 4rem);
     font-weight: 800;
     margin-bottom: 1.5rem;
     line-height: 1.1;
 }

 #hero p {
     font-size: 1.1rem;
     opacity: 0.9;
     max-width: 600px;
     margin: 0 auto 2rem;
 }

 .hero-badge {
     display: inline-block;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(4px);
     padding: 5px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     margin-bottom: 20px;
     border: 1px solid rgba(255, 255, 255, 0.2);
 }


 #sports {
     padding: 80px 0;
 }

 .slider-container {
     position: relative;
     margin-top: 20px;
 }

 .slider-track {
     display: flex;
     gap: 20px;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     padding: 10px 5px 30px 5px;
     -webkit-overflow-scrolling: touch;
     scrollbar-width: none;
 }

 .slider-track::-webkit-scrollbar {
     display: none;
 }

 .slide {
     flex: 0 0 300px;
     height: 420px;
     border-radius: var(--radius-lg);
     position: relative;
     overflow: hidden;
     scroll-snap-align: center;
     cursor: pointer;
     transition: var(--transition);
     box-shadow: var(--shadow-sm);
 }

 .slide:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: var(--shadow-lg);
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: transform 0.6s ease;
 }

 .slide:hover .slide-bg {
     transform: scale(1.1);
 }

 .slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to top, rgba(0, 20, 50, 0.9) 0%, rgba(0, 20, 50, 0.4) 50%, transparent 100%);
     z-index: 1;
 }

 .slide-content {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 25px;
     z-index: 2;
     color: white;
 }

 .sport-icon {
     font-size: 2rem;
     margin-bottom: 10px;
     display: block;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .slide-title {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .slide-desc {
     font-size: 0.9rem;
     opacity: 0.8;
     margin-bottom: 15px;
 }

 .slide-cta {
     display: inline-block;
     background: var(--action);
     color: white;
     padding: 8px 16px;
     border-radius: 12px;
     font-size: 0.85rem;
     font-weight: 600;
 }

 @media (max-width: 600px) {
     .slide {
         flex: 0 0 85%;
         height: 380px;
     }
 }


 .info-section {
     background: white;
     padding: 80px 0;
 }

 .grid-3 {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .feature-card {
     background: var(--bg-body);
     padding: 30px;
     border-radius: var(--radius-md);
     border: 1px solid rgba(0, 0, 0, 0.05);
 }

 .feature-card h3 {
     color: var(--primary);
     margin-bottom: 10px;
 }

 .icon-feature {
     color: var(--action);
     margin-right: 10px;
     font-size: 1.2em;
     vertical-align: middle;
 }

 .feature-card:hover .icon-feature {
     transform: scale(1.1);
     transition: transform 0.3s ease;
 }

 .rg-banner {
     background: #FFF5F5;
     border-left: 4px solid #E53E3E;
     padding: 40px;
     border-radius: var(--radius-sm);
     margin: 60px auto;
 }

 .rg-banner h2 {
     color: #C53030;
     margin-bottom: 15px;
 }

 .footer {
     background: radial-gradient(circle at top left, #1f2937 0%, #020617 55%, #000 100%);
     color: #e5e7eb;
     border-top: 1px solid rgba(148, 163, 184, 0.25);
     font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     margin-top: 3rem;
 }

 .footer-inner {
     max-width: 1200px;
     margin: 0 auto;
     padding: 3rem 1.5rem 2.5rem;
 }

 .footer-grid {
     display: grid;
     grid-template-columns: 2fr 2fr 1.3fr;
     gap: 2.5rem;
 }

 .footer-col h4 {
     font-size: 1rem;
     font-weight: 600;
     margin: 0 0 0.75rem;
     color: #f9fafb;
 }

 .footer p {
     margin: 0 0 0.75rem;
     line-height: 1.6;
     color: #cbd5f5;
     font-size: 0.9rem;
 }

 .footer a {
     color: #60a5fa;
     text-decoration: none;
     font-weight: 500;
 }

 .footer a:hover {
     text-decoration: underline;
 }

 .footer hr {
     border: 0;
     border-top: 1px solid rgba(148, 163, 184, 0.25);
     margin: 2rem 0 1.75rem;
 }

 .footer-legal-links ul {
     list-style: none;
     padding: 0;
     margin: 0.25rem 0 0;
 }

 .footer-legal-links li {
     margin-bottom: 0.4rem;
 }

 .footer-legal-links a {
     font-size: 0.9rem;
     color: #e5e7eb;
     opacity: 0.8;
 }

 .footer-legal-links a:hover {
     opacity: 1;
     color: #93c5fd;
 }

 .footer-middle {
     font-size: 0.9rem;
 }

 .footer-bottom {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     flex-wrap: wrap;
     font-size: 0.85rem;
     color: #9ca3af;
 }

 .footer-bottom-left p {
     margin: 0.15rem 0;
 }

 .footer-bottom-right {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
 }

 .footer-tag {
     border: 1px solid rgba(148, 163, 184, 0.6);
     border-radius: 999px;
     padding: 0.25rem 0.7rem;
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.06em;
     color: #e5e7eb;
     background: rgba(15, 23, 42, 0.7);
 }

 @media (max-width: 900px) {
     .footer-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 640px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }

     .footer-inner {
         padding: 2.5rem 1.25rem 2rem;
     }

     .footer-bottom {
         flex-direction: column;
         align-items: flex-start;
     }
 }

 .modal-backdrop {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(15, 23, 42, 0.8);
     backdrop-filter: blur(5px);
     z-index: 2000;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
 }

 .modal-backdrop.active {
     opacity: 1;
     visibility: visible;
 }

 .modal {
     background: white;
     width: 90%;
     max-width: 480px;
     padding: 2.5rem;
     border-radius: var(--radius-lg);
     box-shadow: var(--shadow-lg);
     position: relative;
     transform: scale(0.95);
     transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .modal-backdrop.active .modal {
     transform: scale(1);
 }

 .modal-close {
     position: absolute;
     top: 20px;
     right: 20px;
     background: none;
     border: none;
     font-size: 1.5rem;
     color: #94a3b8;
     cursor: pointer;
 }

 .modal-close:hover {
     color: var(--primary);
 }

 .modal-lg {
     max-width: 900px !important;
     width: 95%;
 }

 .dashboard-header {
     margin-bottom: 2rem;
     border-bottom: 1px solid #e2e8f0;
     padding-bottom: 1rem;
 }

 .dashboard-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 20px;
     margin-bottom: 30px;
 }

 .dash-card {
     background: #f8fafc;
     border: 1px solid #e2e8f0;
     border-radius: 12px;
     padding: 20px;
     transition: var(--transition);
 }

 .dash-card:hover {
     border-color: var(--accent);
     box-shadow: var(--shadow-sm);
     background: white;
 }

 .dash-card h3 {
     font-size: 1.1rem;
     color: var(--primary);
     margin-bottom: 15px;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .stat-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
     font-size: 0.95rem;
     border-bottom: 1px dashed #e2e8f0;
     padding-bottom: 8px;
 }

 .stat-row:last-child {
     border-bottom: none;
     margin-bottom: 0;
 }

 .stat-label {
     color: var(--text-muted);
 }

 .stat-value {
     font-weight: 700;
     color: var(--text-main);
 }

 .stat-value.highlight {
     color: var(--action);
 }

 .stat-value.success {
     color: #10b981;
 }

 .dash-actions {
     margin-top: 20px;
     padding-top: 20px;
     border-top: 1px solid #e2e8f0;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .dash-disclaimer {
     font-size: 0.75rem;
     color: #94a3b8;
     margin-top: 10px;
     font-style: italic;
 }

 .form-group {
     margin-bottom: 1.2rem;
 }

 .form-label {
     display: block;
     margin-bottom: 6px;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .form-input {
     width: 100%;
     padding: 12px;
     border: 1px solid #cbd5e1;
     border-radius: 8px;
     font-size: 1rem;
 }

 .form-input:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(0, 45, 98, 0.1);
 }


 #cookie-banner {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: white;
     padding: 20px;
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
     z-index: 1500;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     align-items: center;
     gap: 20px;
     transform: translateY(100%);
     transition: transform 0.4s;
 }

 #cookie-banner.active {
     transform: translateY(0);
 }


 .bet-slip-header {
     background: var(--bg-body);
     margin: -2.5rem -2.5rem 2rem -2.5rem;
     padding: 2rem;
     border-radius: var(--radius-lg) var(--radius-lg) 0 0;
     text-align: center;
 }

 .legal-header {
     background: var(--primary);
     color: white;
     padding: 80px 0 60px;
     text-align: center;
     border-radius: 0 0 40px 40px;
     margin-bottom: 60px;
 }

 .legal-header h1 {
     font-size: 2.5rem;
     margin-bottom: 10px;
 }

 .legal-meta {
     opacity: 0.7;
     font-size: 0.9rem;
 }

 .legal-body {
     background: white;
     padding: 60px;
     border-radius: var(--radius-md);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     max-width: 800px; 
     margin: 0 auto 80px auto;
 }

 .legal-section {
     margin-bottom: 40px;
 }

 .legal-section h2 {
     color: var(--primary);
     font-size: 1.5rem;
     margin-bottom: 15px;
     border-bottom: 2px solid #f1f5f9;
     padding-bottom: 10px;
 }

 .legal-section h3 {
     font-size: 1.1rem;
     margin: 20px 0 10px;
     color: var(--text-main);
 }

 .legal-section p {
     margin-bottom: 15px;
     text-align: justify;
     color: #334155;
 }

 .legal-section ul {
     margin-bottom: 15px;
     padding-left: 20px;
 }

 .legal-section li {
     margin-bottom: 8px;
     color: #334155;
 }

 @media (max-width: 600px) {
     .legal-body {
         padding: 30px 20px;
     }

     .legal-header h1 {
         font-size: 1.8rem;
     }
 }

 .cookie-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 20px;
     margin-bottom: 20px;
     font-size: 0.9rem;
 }

 .cookie-table th,
 .cookie-table td {
     border: 1px solid #e2e8f0;
     padding: 12px;
     text-align: left;
     vertical-align: top;
 }

 .cookie-table th {
     background-color: #f8fafc;
     color: var(--primary);
     font-weight: 600;
 }

 .cookie-table tr:nth-child(even) {
     background-color: #fcfcfc;
 }

 @media (max-width: 600px) {
     .cookie-table {
         display: block;
         overflow-x: auto;
     }
 }

 .content-body {
     background: white;
     padding: 60px;
     border-radius: var(--radius-md);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     max-width: 900px;
     margin: 0 auto 80px auto;
 }

 .content-body .section {
     margin-bottom: 50px;
 }

 .content-body .section h2 {
     color: var(--primary);
     font-size: 1.6rem;
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .content-body .section p {
     margin-bottom: 15px;
     text-align: justify;
     color: #475569;
 }

 .content-body .section ul {
     margin-bottom: 20px;
     padding-left: 20px;
     list-style-type: disc;
     color: #475569;
 }

 .content-body .section li {
     margin-bottom: 10px;
 }

 .help-box {
     background: var(--warning-bg);
     border: 1px solid var(--warning-border);
     padding: 25px;
     border-radius: 12px;
     margin-bottom: 40px;
     display: flex;
     align-items: flex-start;
     gap: 20px;
 }

 .help-icon {
     font-size: 2rem;
     color: var(--warning-text);
 }

 .help-content h3 {
     color: var(--warning-text);
     margin-bottom: 10px;
 }

 .help-content p {
     color: #742a2a;
     font-size: 0.95rem;
     margin-bottom: 0;
 }

 .tools-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 30px;
 }

 .tool-card {
     background: #f8fafc;
     padding: 20px;
     border-radius: 12px;
     border: 1px solid #e2e8f0;
 }

 .tool-card h4 {
     color: var(--primary);
     margin-bottom: 10px;
 }

 .tool-card p {
     font-size: 0.9rem;
     margin-bottom: 0;
 }

 .contact-list {
     list-style: none !important;
     padding: 0 !important;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 20px;
 }

 .contact-item {
     background: white;
     border: 1px solid #e2e8f0;
     padding: 20px;
     border-radius: 12px;
     transition: 0.3s;
 }

 .contact-item:hover {
     border-color: var(--accent);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
 }

 .contact-item strong {
     display: block;
     color: var(--primary);
     font-size: 1.1rem;
     margin-bottom: 5px;
 }

 .contact-item a {
     color: var(--action);
     font-weight: 600;
     text-decoration: underline;
 }


 @media (max-width: 600px) {
     .content-body {
         padding: 30px 20px;
     }

     .help-box {
         flex-direction: column;
         gap: 10px;
     }
 }

 .impressum-grid {
     display: grid;
     grid-template-columns: 1fr 2fr;
     gap: 15px;
     margin-bottom: 20px;
 }

 .label {
     font-weight: 600;
     color: var(--text-muted);
 }

 .value {
     color: var(--text-main);
 }

 .disclaimer-text {
     font-size: 0.9rem;
     color: #475569;
     text-align: justify;
 }

 @media (max-width: 600px) {

     .impressum-grid {
         grid-template-columns: 1fr;
         gap: 5px;
         margin-bottom: 20px;
     }

     .label {
         margin-top: 10px;
     }
 }