:root { --action-color: #ff6b00; --header-bg: #1c1e32; --site-bg: #f4f5f7; --text-main: #333333;
--text-light: #ffffff; --bn-bg:           #07090f;
--bn-bg-2:         #0c0f1a;
--bn-bg-3:         #111827;
--bn-surface:      #151c2e;
--bn-surface-2:    #1a2236;
--bn-border:       rgba(255,255,255,.09);
--bn-border-g:     rgba(245,158,11,.24);
--bn-gold:         #f59e0b;
--bn-gold-2:       #d97706;
--bn-gold-light:   #fcd34d;
--bn-green:        #10b981;
--bn-red:          #ef4444;
--bn-text:         #e2e8f0;
--bn-muted:        #94a3b8;
--bn-dim:          #cbd5e1;
--bn-white:        #ffffff;
--bn-r:            18px;
--bn-r-lg:         22px;
--bn-shadow:       0 12px 40px rgba(0,0,0,.35);
--bn-shadow-g:     0 8px 40px rgba(245,158,11,.18);
--ease:            .24s ease;
--bn-px:           14px; --bn-dark-2:       #1e2433;
} @media (min-width: 600px)  { :root { --bn-px: 20px; } }
@media (min-width: 1024px) { :root { --bn-px: 40px; } } * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: var(--text-main);
line-height: 1.6; background: #07090f;
background-attachment: fixed;
background-size: cover;
}
#angebote {
scroll-margin-top: 110px;
}
h2 {
color: var(--header-bg);
margin-bottom: 1.5rem;
border-left: 5px solid var(--action-color);
padding-left: 10px;
}
main {
max-width: auto;
margin: 0px auto;
padding: 0 0px;
} .site-header {
background-color: #07090f;
border-bottom: 5px solid var(--action-color);
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
} .site-logo .custom-logo,
.site-logo img {
max-height: 50px;
width: auto;
display: block;
transition: transform 0.3s ease;
}
.site-logo .custom-logo:hover,
.site-logo img:hover {
transform: scale(1.03);
} .hauptnavigation {
display: block;
position: static;
}
.hauptnavigation .nav-list {
display: flex;
align-items: center;
gap: 30px;
list-style: none;
margin: 0;
padding: 0;
}
.hauptnavigation .nav-list > li {
position: relative;
display: flex;
align-items: center;
}
.hauptnavigation .nav-list > li > a {
color: #e5e5e6;
font-size: 0.95rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.8px;
text-decoration: none;
position: relative;
padding: 8px 2px;
transition: color 0.3s ease;
} .hauptnavigation .nav-list > li > a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: 2px;
left: 2px;
background-color: var(--action-color);
transition: width 0.3s ease;
}
.hauptnavigation .nav-list > li > a:hover {
color: var(--action-color);
}
.hauptnavigation .nav-list > li > a:hover::after {
width: calc(100% - 4px);
} .submenu-toggle {
background: none;
border: none;
cursor: pointer;
color: #e5e5e6;
padding: 4px 6px;
margin-left: 2px;
display: inline-flex;
align-items: center;
justify-content: center;
line-height: 0;
}
.submenu-toggle:hover {
color: var(--action-color);
}
.submenu-toggle::after {
content: '';
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 6px solid currentColor;
display: block;
transition: transform 0.2s ease;
}
.hauptnavigation li.submenu-open > .submenu-toggle::after {
transform: rotate(180deg);
} .hauptnavigation .sub-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
min-width: 240px;
margin: 12px 0 0;
padding: 10px;
list-style: none;
background: #151922;
border: 1px solid #2a3143;
border-radius: 10px;
box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
z-index: 998;
}
.hauptnavigation li.submenu-open > .sub-menu {
display: block;
animation: einblenden 0.2s ease;
}
.hauptnavigation .sub-menu li a {
display: block;
padding: 10px 14px;
font-size: 0.88rem;
font-weight: 500;
text-transform: none;
letter-spacing: 0.2px;
color: #e5e5e6;
text-decoration: none;
border-radius: 8px;
transition: background-color 0.2s ease, color 0.2s ease;
}
.hauptnavigation .sub-menu li a:hover {
background: rgba(243, 156, 18, 0.1);
color: var(--action-color);
} .menu-toggle {
display: none;
flex-direction: column;
justify-content: space-between;
height: 20px;
width: 30px;
padding: 0;
background: transparent;
border: none;
cursor: pointer;
z-index: 200;
}
.menu-toggle .strich {
display: block;
width: 100%;
height: 3px;
background-color: #e5e5e6;
border-radius: 2px;
transition: all 0.3s ease-in-out;
}
.menu-toggle:hover .strich {
background-color: var(--action-color);
} @media (max-width: 900px) {
.menu-toggle {
display: flex;
}
.site-logo .custom-logo,
.site-logo img {
max-height: 45px;
}
.hauptnavigation {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background-color: #07090f;
border-top: 1px solid #131929;
border-bottom: 3px solid var(--action-color);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
max-height: calc(100vh - 100%);
overflow-y: auto;
}
.hauptnavigation.ist-offen {
display: block;
animation: einblenden 0.3s ease;
}
.hauptnavigation .nav-list {
flex-direction: column;
align-items: stretch;
gap: 0;
}
.hauptnavigation .nav-list > li {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
width: 100%;
border-bottom: 1px solid #131929;
}
.hauptnavigation .nav-list > li > a {
flex: 1 1 auto;
padding: 16px 20px;
font-size: 1.05rem;
font-weight: 600;
text-transform: none;
letter-spacing: 0.2px;
color: #ffffff;
}
.hauptnavigation .nav-list > li > a::after {
display: none;
}
.hauptnavigation .submenu-toggle {
padding: 16px 20px;
color: #ffffff;
} .hauptnavigation .sub-menu {
display: none;
position: static;
flex: 1 1 100%;
width: 100%;
margin: 0;
padding: 4px 0 10px 20px;
background: rgba(255, 255, 255, 0.03);
border: none;
border-radius: 0;
box-shadow: none;
}
.hauptnavigation li.submenu-open > .sub-menu {
display: block;
animation: none;
}
.hauptnavigation .sub-menu li a {
padding: 12px 10px;
font-size: 0.95rem;
color: #e5e5e6;
}
}
@keyframes einblenden {
from { opacity: 0; transform: translateY(-10px); }
to { opacity: 1; transform: translateY(0); }
} .quick-nav-bereich {
margin-top: -50px; 
margin-bottom: -10px;
position: relative;
z-index: 10;
}
.quick-nav-container {
max-width: 1000px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
display: grid;
grid-template-columns: repeat(4, 1fr);
overflow: hidden;
}
.quick-nav-item {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 25px 15px;
text-decoration: none;
border-right: 1px solid #f0f0f0;
transition: all 0.3s ease;
background-color: #ffffff;
}
.quick-nav-item:last-child { border-right: none; }
.quick-nav-item:hover {
background-color: #fafafa;
box-shadow: inset 0 -4px 0 var(--action-color); 
}
@keyframes floatIcon {
0%   { transform: translateY(0px); }
50%  { transform: translateY(-8px); }
100% { transform: translateY(0px); }
}
.qn-icon {
font-size: 2.2rem;
margin-bottom: 10px;
display: inline-block;
animation: floatIcon 3s ease-in-out infinite; 
transition: transform 0.3s ease;
}
.quick-nav-item:nth-child(1) .qn-icon { animation-delay: 0s; }
.quick-nav-item:nth-child(2) .qn-icon { animation-delay: 0.7s; }
.quick-nav-item:nth-child(3) .qn-icon { animation-delay: 1.4s; }
.quick-nav-item:nth-child(4) .qn-icon { animation-delay: 2.1s; }
.quick-nav-item:hover .qn-icon {
animation-play-state: paused; 
transform: scale(1.2) translateY(-5px); 
}
.qn-text {
font-weight: 900;
font-size: 1.05rem;
text-transform: uppercase;
color: var(--header-bg);
line-height: 1.2;
}
.qn-text small {
display: block;
font-size: 0.75rem;
color: #888888;
font-weight: 400;
margin-top: 4px;
text-transform: none;
} .casino-tabelle {
display: flex;
flex-direction: column;
gap: 20px; 
margin-top: 30px;
}
.casino-zeile {
position: relative;
display: grid;
grid-template-columns: 1.5fr 2fr 1.5fr 1fr 1.5fr; 
align-items: center;
background: #ffffff;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
border-left: 5px solid var(--action-color);
transition: transform 0.2s ease, box-shadow 0.2s ease;
gap: 20px;
margin-bottom: 0 !important;
}
.casino-zeile:hover {
transform: translateY(-3px);
box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.casino-info {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.casino-logo img {
width: 160px; height: 160px; object-fit: contain; border-radius: 8px;
display: block;
border: 1px solid #eee;
padding: 8px; background: #ffffff;
box-sizing: border-box; margin: 0 auto; }
.casino-info h3 {
display: none; margin: 0;
color: #777;
font-size: 1rem;
text-align: center;
}
.casino-bonus, .casino-bewertung {
text-align: center;
padding: 0 15px;
}
.bonus-label {
display: block;
font-size: 0.9rem;
color: #666;
text-transform: uppercase;
margin-bottom: 5px;
}
.casino-bonus strong {
font-size: 1.4rem;
color: var(--action-color);
}
.casino-bewertung .rating-zahl {
display: block;
font-size: 1.8rem;
font-weight: bold;
color: var(--header-bg);
} .casino-features {
padding: 0 15px;
border-left: 1px solid #eee;
border-right: 1px solid #eee;
}
.casino-features ul {
list-style: none;
padding: 0;
margin: 0;
}
.casino-features li {
position: relative;
padding-left: 22px;
margin-bottom: 6px;
font-size: 0.9rem;
color: #444;
line-height: 1.3;
}
.casino-features li::before {
content: "✓";
position: absolute;
left: 0;
top: 0;
color: #28a745;
font-weight: bold;
} .btn-action {
display: inline-flex;
justify-content: center;
align-items: center; background: linear-gradient(135deg, #2a2d4a 0%, var(--header-bg) 100%);
color: #ffffff !important;
padding: 12px 30px; 
text-decoration: none;
border-radius: 50px; 
font-weight: 800; font-size: 0.95rem; 
text-transform: uppercase;
letter-spacing: 0.8px; -webkit-text-stroke: 0;
text-shadow: none; 
transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(28, 30, 50, 0.15), inset 0 -2px 0 rgba(0,0,0,0.2);
border: none;
position: relative;
overflow: hidden;
cursor: pointer;
text-align: center;
} .btn-action:hover {
background: linear-gradient(135deg, #35395c 0%, #232640 100%);
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(28, 30, 50, 0.25), inset 0 -2px 0 rgba(0,0,0,0.2);
color: #ffffff;
} .btn-action:active {
transform: translateY(1px);
box-shadow: 0 2px 10px rgba(28, 30, 50, 0.2), inset 0 -1px 0 rgba(0,0,0,0.2);
} .btn-action::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 50%;
height: 100%;
background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
transform: skewX(-25deg);
animation: premiumShine 5s infinite;
}
@keyframes premiumShine {
0%   { left: -100%; }
15%  { left: 200%; }
100% { left: 200%; }
} .top-badge {
position: absolute;
top: -15px;
left: -15px;
background-color: #ffd700;
color: #333;
padding: 5px 20px;
border-radius: 20px;
font-size: 0.9rem;
font-weight: 900;
text-transform: uppercase;
box-shadow: 0 4px 10px rgba(0,0,0,0.2);
border: 2px solid #fff;
z-index: 10;
} .casino-wrapper {
background: #ffffff;
border-radius: 12px;
margin-bottom: 40px;
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.casino-details { border-top: 1px solid #f0f0f0; }
.casino-details summary {
padding: 15px 25px;
list-style: none;
cursor: pointer;
font-weight: bold;
font-size: 0.9rem;
color: #666;
display: flex;
justify-content: center;
align-items: center;
transition: background 0.3s;
}
.casino-details summary:hover {
background: #fafafa;
color: var(--action-color);
}
.casino-details summary span::after {
content: ' ▼';
font-size: 0.7rem;
margin-left: 10px;
}
.casino-details[open] summary span::after { content: ' ▲'; }
.details-content {
padding: 25px;
background: #fdfdfd;
display: grid;
grid-template-columns: 1fr 1fr; 
gap: 30px;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
}
.payment-icons {
display: flex;
flex-wrap: wrap;
gap: 12px; 
align-items: center; 
margin-top: 10px;
}
.payment-icons img {
height: 16px; 
max-width: 65px; 
object-fit: contain; 
transition: transform 0.3s ease; 
}
.payment-icons img:hover { transform: scale(1.1); } .license-icons {
display: flex;
flex-wrap: wrap;
gap: 15px; 
align-items: center; 
margin-top: 12px;
}
.license-icons img {
height: 30px; max-width: 90px; 
object-fit: contain; 
transition: transform 0.3s ease; 
}
.license-icons img:hover { 
transform: scale(1.08); 
}
.bonus-specs {
list-style: none;
margin-bottom: 20px;
padding: 0;
}
.bonus-specs li {
font-size: 0.9rem;
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px dashed #eee;
}
.pro-con-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
}
.pro-con-container h5 {
font-size: 0.85rem;
text-transform: uppercase;
margin-bottom: 10px;
color: #888;
}
.pro-list ul, .con-list ul {
list-style: none;
padding: 0;
}
.pro-list li, .con-list li {
font-size: 0.85rem;
margin-bottom: 5px;
padding-left: 20px;
position: relative;
}
.pro-list li::before {
content: '✔';
position: absolute;
left: 0;
color: #27ae60;
font-weight: bold;
}
.con-list li::before {
content: '✖';
position: absolute;
left: 0;
color: #e74c3c;
} .kategorie-titel {
text-align: center;
margin: 60px 0 15px;
font-size: 2.2rem;
color: var(--header-bg);
border-left: none; padding-left: 0;
position: relative;
} .kategorie-titel::after {
content: '';
display: block;
width: 50px;
height: 4px;
background: var(--action-color);
margin: 15px auto 0;
border-radius: 2px;
}
.alle-ansehen-wrapper {
text-align: center;
margin-top: 10px;
margin-bottom: 80px; 
}
.btn-alle {
display: inline-block;
padding: 15px 35px;
background-color: var(--header-bg); 
color: #ffffff !important;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-alle:hover {
background-color: var(--action-color); 
transform: translateY(-2px);
}
.star-rating {
--percent: calc(var(--rating) / 5 * 100%);
display: inline-block;
font-size: 1.8rem; 
font-family: Arial, sans-serif;
line-height: 1;
margin-bottom: 5px;
}
.star-rating::before {
content: '★★★★★';
letter-spacing: 2px;
background: linear-gradient(90deg, #ffd700 var(--percent), #e0e0e0 var(--percent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
} .newsletter-bereich {
margin-bottom: 60px;
border-radius: 12px;
overflow: hidden; 
box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.newsletter-grid {
display: grid;
grid-template-columns: 1fr 1fr; 
background-color: var(--header-bg); 
}
.newsletter-bild img {
width: 100%;
height: 100%;
object-fit: cover; 
display: block;
}
.newsletter-formular {
padding: 40px 50px;
color: #ffffff;
}
.newsletter-formular h2 {
color: #ffffff;
border-left: none;
padding-left: 0;
margin-bottom: 25px;
font-size: 1.6rem;
}
.btn-google {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
background-color: #ffffff;
color: #333333;
text-decoration: none;
padding: 12px;
border-radius: 4px;
font-weight: bold;
margin-bottom: 25px;
transition: background 0.3s;
}
.btn-google img { width: 20px; }
.btn-google:hover { background-color: #f1f1f1; }
.trenner {
text-align: center;
position: relative;
margin-bottom: 25px;
}
.trenner::before {
content: "";
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: rgba(255,255,255,0.2);
z-index: 1;
}
.trenner span {
background-color: var(--header-bg);
padding: 0 15px;
position: relative;
z-index: 2;
color: #aaaaaa;
font-size: 0.9rem;
}
.newsletter-formular label {
display: block;
font-size: 0.85rem;
margin-bottom: 8px;
color: #ffffff;
}
.newsletter-formular input[type="email"] {
width: 100%;
padding: 12px;
border: none;
border-radius: 4px;
margin-bottom: 20px;
font-size: 1rem;
font-family: inherit;
}
.checkbox-group {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 15px;
}
.checkbox-group input[type="checkbox"] {
margin-top: 4px; 
cursor: pointer;
}
.checkbox-group label {
font-size: 0.75rem;
line-height: 1.4;
color: #dddddd;
margin-bottom: 0;
cursor: pointer;
}
.checkbox-group label a {
color: #ffffff;
text-decoration: underline;
}
.checkbox-group label a:hover { color: var(--action-color); }
.w-100 { width: 100%; margin-top: 15px; }
.login-link {
text-align: center;
margin-top: 25px;
font-size: 0.85rem;
color: #aaaaaa;
}
.login-link a { color: #ffffff; text-decoration: underline; }
.login-link a:hover { color: var(--action-color); }
.newsletter-submit {
width: 100%; 
display: block;
border: none;
cursor: pointer;
font-family: inherit;
font-size: 1.1rem;
padding: 15px; 
margin-top: 20px;
}
.newsletter-submit:hover {
background-color: #e66000; 
transform: translateY(-2px);
} .seo-section { margin: 60px 0; }
.seo-container { max-width: 100%; margin: 0; padding: 0; }
.seo-grid {
display: grid;
grid-template-columns: 1fr 1fr; 
background: #ffffff;
border-radius: 12px;
overflow: hidden; 
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
0 4px 15px rgba(230, 96, 0, 0.05);
}
.seo-grid.reverse { grid-template-columns: 1fr 1fr; }
.seo-image {
width: 100%;
height: 100%;
min-height: 400px; 
}
.seo-image img {
width: 100%;
height: 100%;
object-fit: cover; 
display: block;
border-radius: 0; 
}
.seo-text {
padding: 50px;
display: flex;
flex-direction: column;
justify-content: center;
}
.seo-text h2 {
color: var(--header-bg);
margin-bottom: 20px;
font-size: 1.8rem;
position: relative;
border-left: none;
padding-left: 0;
}
.seo-text h2::after {
content: '';
display: block;
width: 50px;
height: 3px;
background: var(--action-color);
margin-top: 10px;
}
.seo-text p {
margin-bottom: 15px;
color: #555;
font-size: 1.05rem;
}  .single-container,
.ueber-container,
.kontakt-container {
max-width: 1300px !important; padding: 0 !important; width: 100% !important;
box-sizing: border-box !important;
} .single-content-bereich { background-color: var(--site-bg); }
.content-text {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
font-size: 1.1rem;
line-height: 1.8;
}
.content-text h2, .content-text h3 { color: var(--header-bg); margin-top: 30px; margin-bottom: 15px; }
.content-text p { margin-bottom: 20px; color: #444; }
.content-sidebar { position: relative; }
.sidebar-box {
background: #ffffff;
padding: 30px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
position: sticky;
top: 120px; 
}
.bonus-specs li strong { color: var(--header-bg); } .ueber-content-bereich { padding: 60px 0; }
.ueber-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.ueber-hero-box {
background: #ffffff;
padding: 60px 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
0 4px 15px rgba(230, 96, 0, 0.05); 
text-align: center;
margin-bottom: 50px;
}
.ueber-hero-box h1 {
color: var(--header-bg);
font-size: 2.8rem;
margin-bottom: 20px;
font-weight: 900;
border-left: none; 
padding-left: 0;
}
.ueber-hero-box h1 span { color: var(--action-color); }
.ueber-hero-box p {
color: #555;
font-size: 1.15rem;
line-height: 1.8;
max-width: 800px;
margin: 0 auto;
}
.ueber-box {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
0 4px 15px rgba(230, 96, 0, 0.05); 
margin-bottom: 40px;
}
.ueber-box h2 {
color: var(--header-bg);
margin-bottom: 25px;
font-size: 1.8rem;
position: relative;
border-left: none; 
padding-left: 0;
}
.ueber-box h2::after {
content: '';
display: block;
width: 40px;
height: 3px;
background: var(--action-color);
margin-top: 8px;
}
.ueber-box p { color: #555; line-height: 1.8; font-size: 1.05rem; margin-bottom: 20px; }
.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wert-card {
background: #ffffff;
padding: 40px 30px;
border-radius: 12px;
text-align: center;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08);
border-top: 4px solid transparent;
transition: all 0.3s ease;
}
.wert-card:hover {
transform: translateY(-10px);
border-top-color: var(--action-color);
box-shadow: 0 15px 35px rgba(230, 96, 0, 0.1);
}
.wert-icon { font-size: 3.5rem; margin-bottom: 20px; line-height: 1; }
.wert-card h4 { color: var(--header-bg); margin-bottom: 15px; font-size: 1.3rem; }
.wert-card p { color: #666; line-height: 1.6; font-size: 0.95rem; } .kontakt-content-bereich { padding: 60px 0; }
.kontakt-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.kontakt-info-box, .kontakt-form-box {
background: #ffffff;
padding: 40px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
0 4px 15px rgba(230, 96, 0, 0.05);
}
.kontakt-info-box h2, .kontakt-form-box h2 {
color: var(--header-bg);
margin-bottom: 25px;
font-size: 1.6rem;
position: relative;
}
.kontakt-info-box h2::after, .kontakt-form-box h2::after {
content: ''; display: block; width: 40px; height: 3px; background: var(--action-color); margin-top: 8px;
}
.kontakt-info-box p { color: #555; line-height: 1.7; margin-bottom: 25px; }
.info-details { display: flex; flex-direction: column; gap: 20px; }
.info-item { background: #f8f9fa; padding: 15px; border-radius: 8px; border-left: 4px solid var(--header-bg); }
.info-item strong { display: block; color: var(--header-bg); margin-bottom: 5px; }
.info-item span { color: #444; font-size: 0.95rem; }
.kontakt-form-box input[type="text"],
.kontakt-form-box input[type="email"],
.kontakt-form-box textarea {
width: 100%; padding: 12px 15px; margin-bottom: 20px; border: 1px solid #ddd;
border-radius: 6px; background: #fdfdfd; font-size: 1rem; transition: all 0.3s; box-sizing: border-box;
}
.kontakt-form-box input:focus, .kontakt-form-box textarea:focus {
border-color: var(--action-color); outline: none; box-shadow: 0 0 8px rgba(230, 96, 0, 0.15);
}
.kontakt-form-box input[type="submit"], .kontakt-form-box button {
background: var(--action-color); color: #fff; border: none; padding: 15px 30px;
font-size: 1.1rem; font-weight: bold; border-radius: 6px; cursor: pointer; transition: background 0.3s; width: 100%;
}
.kontakt-form-box input[type="submit"]:hover, .kontakt-form-box button:hover { background: #cc5500; } .site-footer {
background-color: #07090f; 
color: #ffffff;
padding: 60px 20px 20px;
text-align: center;
border-top: 4px solid var(--action-color); 
margin-top: 60px;
}
.footer-warning {
background: #111827; 
border: 1px solid rgba(255, 255, 255, 0.08); 
border-radius: 12px;
padding: 35px 20px;
max-width: 800px;
margin: 0 auto 40px auto;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.trust-badges {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
flex-wrap: wrap;
margin-bottom: 25px;
}
.age-limit {
background: #e74c3c;
color: #fff;
font-weight: bold;
width: 45px;
height: 45px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}
.trust-badge {
background: transparent;
color: #ffffff;
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 10px 20px;
border-radius: 8px;
font-size: 0.9rem;
text-decoration: none;
transition: all 0.3s ease;
}
.trust-badge:hover {
border-color: var(--action-color);
color: var(--action-color);
background: rgba(230, 96, 0, 0.05); 
}
.footer-warning p { color: #ffffff; font-size: 0.95rem; margin-bottom: 10px; }
.help-link { color: var(--action-color); font-weight: bold; text-decoration: none; font-size: 1.05rem; transition: color 0.3s; }
.help-link:hover { color: #fff; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 35px; flex-wrap: wrap; }
.footer-links a { color: #aaa; text-decoration: none; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1.5px; transition: color 0.3s; }
.footer-links a:hover { color: #ffffff; }
.footer-copyright { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 25px; }
.footer-copyright p { color: #444; font-size: 0.85rem; margin: 0; }  .sortier-wrapper {
display: flex;
justify-content: center; margin-top: 25px;
margin-bottom: 45px;
}
.sort-form {
display: flex;
align-items: center;
gap: 15px;
background: #ffffff;
padding: 12px 30px;
border-radius: 50px; box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08); border: 1px solid rgba(0,0,0,0.03);
}
.sort-form label {
color: var(--text-main);
font-size: 0.95rem;
}
.sort-form select {
padding: 10px 20px;
border: 2px solid #f0f0f0;
border-radius: 30px; background: #fdfdfd;
font-size: 1rem;
color: var(--header-bg);
font-weight: bold;
cursor: pointer;
outline: none;
font-family: inherit;
transition: all 0.3s ease;
} .sort-form select:focus, 
.sort-form select:hover {
border-color: var(--action-color);
background: #ffffff;
} .casino-number {
position: absolute;
top: -15px;
left: -15px;
background-color: var(--action-color);
color: #ffffff;
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 1.3rem;
font-weight: 900;
box-shadow: 0 4px 10px rgba(230, 96, 0, 0.3);
border: 3px solid #ffffff;
z-index: 10;
} .titel-box {
background: #ffffff;
padding: 35px 20px;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(26, 37, 75, 0.08), 
0 4px 15px rgba(230, 96, 0, 0.05); 
text-align: center;
margin-top: 50px;
margin-bottom: 25px; }
.titel-box .kategorie-titel {
margin-top: 0; margin-bottom: 15px; } .insider-tabs {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.tab-btn {
padding: 12px 25px;
border: none;
background: #e0e0e0;
color: #333;
font-weight: bold;
cursor: pointer;
border-radius: 5px;
transition: all 0.3s ease;
}
.tab-btn.active {
background: var(--header-bg); color: #fff;
box-shadow: 0 4px 10px rgba(28, 30, 50, 0.3);
}
.tab-btn:hover {
background: var(--action-color); color: #fff;
}
.tab-content {
background: #fff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
} @media (max-width: 768px) {
.insider-tabs {
flex-direction: column; gap: 5px;
padding: 0 15px; }
.tab-btn {
width: 100%;
padding: 15px;
}
} .insider-header-wrap {
text-align: center;
margin-bottom: 50px;
padding: 0 15px;
}
.insider-supertitle {
color: var(--action-color);
font-size: 0.9rem;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 4px;
margin-bottom: 10px;
display: block;
}
.insider-maintitle {
font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
color: var(--header-bg); margin: 0;
text-transform: uppercase;
letter-spacing: -1px;
}
.insider-maintitle span { background: linear-gradient(90deg, #ff8c00, var(--action-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
display: inline-block;
}
.insider-subtitle {
color: #666;
font-size: 1.15rem;
max-width: 650px;
margin: 15px auto 0;
line-height: 1.6;
}  .insider-tabs {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 50px;
flex-wrap: wrap;
}
.tab-btn {
padding: 15px 30px;
border: none;
background: #e0e0e0;
color: #555;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
border-radius: 50px; transition: all 0.3s ease;
box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}
.tab-btn.active {
background: var(--header-bg);
color: #fff;
box-shadow: 0 8px 20px rgba(28, 30, 50, 0.3);
transform: translateY(-2px);
}
.tab-btn:hover:not(.active) {
background: #d0d0d0;
color: #333;
} .tab-content {
background: transparent !important; padding: 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
} .voucher-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 35px;
padding-top: 20px; }
.voucher-card {
background: linear-gradient(145deg, #1c1e32 0%, #0f101c 100%); color: #fff;
padding: 40px 30px 30px;
border-radius: 16px;
position: relative;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
border: 1px solid rgba(255, 255, 255, 0.05);
border-top: 4px solid var(--action-color); text-align: center;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.voucher-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(255, 107, 0, 0.15); border-color: rgba(255, 107, 0, 0.3);
} .voucher-badge {
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(90deg, #ff8c00, var(--action-color));
color: #fff;
padding: 6px 20px;
border-radius: 30px;
font-size: 0.75rem;
font-weight: 900;
letter-spacing: 1.5px;
text-transform: uppercase;
box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
z-index: 2;
} .voucher-logo-wrap {
height: 100px; 
display: flex; 
align-items: center; 
justify-content: center; 
margin-bottom: 20px;
background: #fff; 
padding: 15px;
border-radius: 12px;
box-shadow: inset 0 0 15px rgba(0,0,0,0.08); }
.voucher-title {
margin: 0; 
color: #fff; 
font-size: 1.3rem;
}
.voucher-desc {
margin: 15px 0; 
font-size: 1.15rem; 
min-height: 45px; 
color: #ddd;
font-weight: bold;
} .voucher-code-box {
background: rgba(0, 0, 0, 0.4); color: var(--action-color);
padding: 15px;
border-radius: 8px;
font-size: 1.4rem;
font-weight: 800;
letter-spacing: 2px;
font-family: monospace; margin: 25px 0;
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
display: block;
width: 100%;
box-sizing: border-box;
}
.btn-voucher {
background: var(--action-color);
color: #fff !important;
padding: 15px 25px;
border-radius: 8px; text-decoration: none;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1px;
display: block;
margin-top: 10px;
width: 100%;
box-sizing: border-box;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}
.btn-voucher:hover {
background: #e66000;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
} @media (max-width: 768px) {
.insider-tabs { flex-direction: column; gap: 10px; padding: 0 15px; }
.tab-btn { width: 100%; }
} .titel-box {
background: linear-gradient(145deg, #151922 0%, #0d1015 100%) !important;
padding: 40px 30px !important;
border-radius: 16px !important;
box-shadow: 0 20px 40px rgba(0,0,0,0.3) !important;
border: 1px solid #2a3143 !important; 
text-align: center;
margin-top: 60px !important;
margin-bottom: 30px !important;
position: relative;
overflow: hidden;
} .titel-box::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 0%, rgba(243, 156, 18, 0.1), transparent 60%);
pointer-events: none;
}
.titel-box .kategorie-titel {
color: #ffffff !important; 
font-size: 2.4rem !important;
font-weight: 800 !important;
letter-spacing: 0.5px;
margin-bottom: 15px !important;
position: relative;
z-index: 2;
}
.titel-box p {
color: #b3bccb !important; 
font-size: 1.1rem !important;
position: relative;
z-index: 2;
} .titel-box .kategorie-titel::after {
background: var(--action-color) !important;
width: 60px !important;
height: 4px !important;
box-shadow: 0 0 12px rgba(255, 107, 0, 0.6) !important; 
margin: 20px auto 0 !important;
} @media (max-width: 768px) {
.titel-box {
padding: 30px 20px !important;
margin-top: 40px !important;
}
.titel-box .kategorie-titel {
font-size: 1.8rem !important;
}
.titel-box p {
font-size: 0.95rem !important;
}
}
.impressum-block h3 {
margin-top: 30px;
margin-bottom: 15px;
color: var(--header-bg);
}
.impressum-block p {
margin-bottom: 15px;
} .footer-grid {
display: grid;
grid-template-columns: 1fr; gap: 40px;
max-width: 1200px;
margin: 40px auto 20px auto;
padding: 0 20px;
text-align: left; } @media (min-width: 768px) {
.footer-grid {
grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
.footer-grid {
grid-template-columns: repeat(4, 1fr); }
}
.footer-col {
display: flex;
flex-direction: column;
} .footer-col h4 {
color: #ffffff;
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 18px;
letter-spacing: 0.5px;
border-bottom: 2px solid #f39c12; padding-bottom: 6px;
display: inline-block;
} .footer-col a {
color: #b3bccb;
text-decoration: none;
font-size: 0.95rem;
margin-bottom: 10px;
transition: color 0.2s ease, transform 0.2s ease;
display: inline-block;
} .footer-col a:hover {
color: #f39c12;
transform: translateX(4px);
}
.ratgeber-hub-container {
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
box-sizing: border-box;
} .ratgeber-grid {
display: grid;
grid-template-columns: 1fr;
gap: 20px;
margin-top: 30px;
width: 100%;
box-sizing: border-box;
}
@media (min-width: 900px) {
.ratgeber-grid {
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
}
}
.ratgeber-card {
background: #1e2433;
border: 1px solid #2f374a;
border-radius: 12px;
overflow: hidden;
text-decoration: none;
transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
display: flex;
flex-direction: column;
width: 100%;
box-sizing: border-box;
}
.ratgeber-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(243, 156, 18, 0.15);
border-color: #f39c12;
}
.ratgeber-inhalt {
padding: 30px;
display: flex;
flex-direction: column;
width: 100%;
box-sizing: border-box;
height: 100%; }
.ratgeber-inhalt h3 {
color: #ffffff;
font-size: 1.3rem;
margin-bottom: 15px;
line-height: 1.4;
}
.ratgeber-inhalt p {
color: #b3bccb;
font-size: 1rem;
line-height: 1.6;
margin-bottom: 25px;
}
.ratgeber-link {
color: #f39c12;
font-weight: 600;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-top: auto;
} @media (max-width: 768px) { .header-container {
padding: 10px 15px;
}
.site-logo .custom-logo,
.site-logo img {
max-width: 180px !important; height: auto !important;
max-height: 50px !important;
object-fit: contain;
display: block;
} .menu-toggle {
margin-top: 5px;
} .single-container,
.ueber-container,
.kontakt-container {
width: 100% !important;
max-width: 100% !important; padding-left: 10px !important; 
padding-right: 10px !important; 
box-sizing: border-box !important; margin-left: auto !important;
margin-right: auto !important;
} .sortier-wrapper {
margin-top: 15px;
margin-bottom: 30px;
padding: 0 10px;
}
.sort-form {
flex-direction: column;
padding: 15px;
border-radius: 12px;
width: 100%;
max-width: 100%;
background: #ffffff !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
box-sizing: border-box;
}
.sort-form label {
width: 100%;
text-align: center;
margin-bottom: 10px;
font-size: 0.9rem;
}
.sort-form select {
width: 100%;
border-radius: 8px; 
padding: 12px;
font-size: 1rem;
text-align: center;
} .titel-box {
padding: 20px 15px;
margin-top: 30px;
margin-bottom: 20px;
}
h2, .kategorie-titel {
border-left: none !important; padding-left: 0;
font-size: 1.5rem;
text-align: center;
} .casino-zeile { 
display: flex; 
flex-direction: column; 
text-align: center; 
gap: 15px; 
padding: 40px 20px 20px 20px !important; border-left: none !important; border-top: 4px solid var(--action-color) !important; margin-top: 25px; 
border-radius: 12px;
} .casino-number, .top-badge {
position: absolute !important;
top: -20px !important;
left: 50% !important;
transform: translateX(-50%) !important;
z-index: 10;
margin: 0 !important;
}
.casino-number {
width: 45px !important;
height: 45px !important;
}
.top-badge {
font-size: 0.8rem; 
padding: 6px 15px;
white-space: nowrap;
}
.casino-info, .casino-features, .casino-bonus, .casino-bewertung { 
width: 100%; 
border-bottom: 1px solid #eee; 
padding-bottom: 15px; 
border-left: none; 
border-right: none; 
margin: 0; 
}
.casino-features { 
text-align: left; 
display: flex; 
justify-content: center; 
}
.casino-features ul { 
display: inline-block; 
} .btn-action { 
width: 100%; padding: 16px 20px !important; 
font-size: 1rem !important;
box-sizing: border-box;
border-radius: 12px !important; } .hero-bereich { padding: 40px 15px; margin-bottom: 25px; }
.hero-inhalt h1 { font-size: 1.5rem; margin-bottom: 15px; }
.hero-inhalt p { font-size: 0.95rem; line-height: 1.4; margin-bottom: 20px; }
.btn-hero { padding: 12px 25px; font-size: 0.95rem; width: 100%; box-sizing: border-box;} .quick-nav-bereich { margin-top: -40px; margin-bottom: -10px; }
.quick-nav-container { grid-template-columns: 1fr 1fr; }
.quick-nav-item:nth-child(1), .quick-nav-item:nth-child(2) { border-bottom: 1px solid #f0f0f0; }
.quick-nav-item:nth-child(2) { border-right: none; }
.quick-nav-item { padding: 20px 10px; }
.qn-icon { font-size: 1.8rem; }
.qn-text { font-size: 0.9rem; } .newsletter-grid { grid-template-columns: 1fr; }
.newsletter-bild img { height: 250px; }
.newsletter-formular { padding: 25px 20px; }
.newsletter-submit { font-size: 1rem; padding: 15px; } .seo-grid, .seo-grid.reverse { grid-template-columns: 1fr; }
.seo-image { min-height: 250px; }
.seo-text { padding: 30px 20px; }
.seo-grid.reverse .seo-image { order: -1; }
.single-container { grid-template-columns: 1fr !important; gap: 30px !important; }
.content-text { padding: 25px; }
.werte-grid { grid-template-columns: 1fr; }
.ueber-hero-box { padding: 40px 20px; }
.ueber-hero-box h1 { font-size: 2rem; }
.ueber-box { padding: 30px 20px; }
.kontakt-grid { grid-template-columns: 1fr; gap: 30px; }
.kontakt-info-box, .kontakt-form-box { padding: 25px; }
.details-content { grid-template-columns: 1fr; }
.pro-con-container { grid-template-columns: 1fr; } .page-hero-box h1,
.ueber-hero-box h1, 
.ueber-box h1, 
.content-text h1,
.ratgeber-hub-container h1,
.page-content-box h1 { font-size: clamp(1.2rem, 5.2vw, 1.7rem) !important; line-height: 1.3 !important;
letter-spacing: -0.3px !important; white-space: normal !important; word-wrap: break-word !important;
overflow-wrap: break-word !important;
word-break: break-word !important; -webkit-hyphens: auto !important;
-ms-hyphens: auto !important;
hyphens: auto !important;
} .page-content-box h2,
.ueber-box h2,
.content-text h2,
.page-content-box h1 + h2 {
font-size: clamp(1.1rem, 4.8vw, 1.4rem) !important;
line-height: 1.4 !important;
word-wrap: break-word !important;
overflow-wrap: break-word !important;
-webkit-hyphens: auto !important;
hyphens: auto !important;
} body {
overflow-x: clip;
}  .single-hero-bereich {
padding: 40px 15px !important; width: 100% !important;
box-sizing: border-box !important;
} .single-hero-bereich .single-container {
display: flex !important;
flex-direction: column !important;
align-items: center !important;
text-align: center !important;
gap: 25px !important;
width: 100% !important;
padding: 0 !important; box-sizing: border-box !important;
}
.hero-title-area {
width: 100% !important;
display: flex !important;
flex-direction: column !important;
align-items: center !important;
text-align: center !important;
}
.hero-title-area img {
margin: 0 auto 20px auto !important;
display: block !important;
} .hero-quick-facts {
min-width: 0 !important;
width: 100% !important;
max-width: 100% !important;
padding: 30px 20px !important;
box-sizing: border-box !important;
}
.sidebar-box {
position: static !important;
width: 100% !important;
padding: 25px 20px !important;
box-sizing: border-box !important;
}
.single-wrapper {
width: 100%;
background: #07090f;
padding-bottom: 70px;
max-width: 100%; overflow-x: clip; }   .table-responsive {
width: 100%;
max-width: 100%;
overflow-x: auto !important; overflow-y: visible !important; -webkit-overflow-scrolling: touch; display: block;
box-sizing: border-box; background:
linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0)),
linear-gradient(to left,  rgba(255,255,255,0) 100% 0, rgba(255,255,255,0)) 100% 0;
background-size: 40px 100%;
background-repeat: no-repeat;
background-attachment: local, local;
} .single-article .table-responsive {
overflow-x: auto !important;
overflow-y: visible !important;
width: 100% !important;
max-width: 100% !important;
box-sizing: border-box !important;
} .vergleich-tabelle {
min-width: 540px; width: 100%;
border-collapse: collapse;
table-layout: fixed; } .vergleich-tabelle th:nth-child(1),
.vergleich-tabelle td:nth-child(1) { width: 30%; }
.vergleich-tabelle th:nth-child(2),
.vergleich-tabelle td:nth-child(2) { width: 35%; }
.vergleich-tabelle th:nth-child(3),
.vergleich-tabelle td:nth-child(3) { width: 35%; } .vergleich-tabelle th,
.vergleich-tabelle td {
padding: 12px 16px;
text-align: left;
font-size: 0.95rem;
line-height: 1.5;
vertical-align: middle;
word-break: break-word; box-sizing: border-box;
} .vergleich-tabelle thead tr {
background-color: var(--header-bg);
color: #ffffff;
}
.vergleich-tabelle thead th {
font-weight: 700;
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.5px;
white-space: nowrap; } .vergleich-tabelle tbody tr:nth-child(odd) {
background-color: #f8f9fa;
}
.vergleich-tabelle tbody tr:nth-child(even) {
background-color: #ffffff;
} .vergleich-tabelle tbody td:first-child {
color: var(--header-bg);
background-color: rgba(28, 30, 50, 0.04);
border-right: 2px solid #e9ecef;
} .vergleich-tabelle {
border: 1px solid #dee2e6;
border-radius: 8px;
overflow: hidden; } @media (max-width: 768px) {
.table-scroll-hint {
font-size: 0.8rem;
color: #888;
text-align: center;
margin-bottom: 8px;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
} .vergleich-tabelle th,
.vergleich-tabelle td {
padding: 10px 12px;
font-size: 0.88rem;
}
}  .single-container[style*="grid-template-columns"] {
grid-template-columns: 1fr !important; gap: 20px !important;
padding: 0 10px !important;
} .content-text {
padding: 20px 15px !important; width: 100% !important;
box-sizing: border-box !important;
overflow-wrap: break-word; } .pro-con-container,
div[style*="display: grid"][style*="grid-template-columns"] {
grid-template-columns: 1fr !important; gap: 15px !important;
width: 100% !important;
} .content-text table {
display: block !important;
width: 100% !important;
overflow-x: auto !important; -webkit-overflow-scrolling: touch;
}
.content-text table tr {
display: flex !important;
flex-direction: column !important; width: 100% !important;
border-bottom: 1px solid #eaeaea;
padding: 10px 0;
}
.content-text table td, 
.content-text table th {
display: block !important;
width: 100% !important;
padding: 6px 0 !important;
box-sizing: border-box !important;
text-align: left !important; } .content-text img {
max-width: 100% !important;
height: auto !important;
display: block;
margin: 15px auto;
} div[style*="border-top: 2px solid"] {
padding-left: 0 !important;
padding-right: 0 !important;
width: 100% !important;
box-sizing: border-box !important;
}
div[style*="border-top: 2px solid"] .btn-action {
width: 100% !important;
max-width: 100% !important;
display: block !important;
box-sizing: border-box !important;
box-shadow: 0 4px 15px rgba(28, 30, 50, 0.15) !important; } .content-text .payment-icons,
.content-text .license-icons {
display: flex !important;
flex-direction: row !important;
flex-wrap: wrap !important;
justify-content: center !important; gap: 15px !important;
width: 100% !important;
max-width: 100% !important;
margin-top: 15px !important;
margin-bottom: 15px !important;
} .content-text .payment-icons img {
width: auto !important;
max-width: 65px !important;
height: 16px !important; display: inline-block !important;
margin: 0 !important;
object-fit: contain !important;
}
.content-text .license-icons img {
width: auto !important;
max-width: 90px !important;
height: 30px !important; display: inline-block !important;
margin: 0 !important;
object-fit: contain !important;
} .voucher-grid {
grid-template-columns: 1fr !important; gap: 25px !important; width: 100% !important;
box-sizing: border-box !important;
}
.voucher-card {
width: 100% !important; max-width: 100% !important;
box-sizing: border-box !important;
padding: 35px 20px 25px !important; }
.voucher-code-box {
width: 100% !important;
box-sizing: border-box !important;
font-size: 1.25rem !important; } .flash-timer {
background: rgba(255, 107, 0, 0.1);
color: var(--action-color);
border: 1px dashed rgba(255, 107, 0, 0.4);
padding: 10px;
border-radius: 8px;
font-family: monospace; font-size: 1.2rem;
font-weight: bold;
margin-bottom: 20px;
box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
letter-spacing: 1px;
}
} #ez-toc-container {
background: linear-gradient(145deg, var(--bn-secondary) 0%, var(--bn-primary) 100%) !important;;
border: 1px solid #e2e8f0 !important;
border-left: 3px solid var(--action-color) !important;
border-radius: 6px !important;
padding: 16px 20px !important;
box-shadow: none !important;
width: 100% !important;
box-sizing: border-box !important;
margin: 24px 0 32px !important;
} #ez-toc-container .ez-toc-title-container {
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
margin-bottom: 12px !important;
padding-bottom: 0 !important;
border-bottom: none !important;
}
#ez-toc-container .ez-toc-title {
font-size: 1rem !important;
font-weight: 700 !important;
color: #ffffff !important;
margin: 0 !important;
text-transform: uppercase !important;
letter-spacing: 0.04em !important;
} #ez-toc-container .ez-toc-toggle {
margin-top: 0 !important;
opacity: 0.5 !important;
} #ez-toc-container nav {
border-top: 1px solid #e2e8f0 !important;
padding-top: 10px !important;
} #ez-toc-container ul.ez-toc-list {
padding-left: 0 !important;
margin: 0 !important;
} #ez-toc-container ul.ez-toc-list > li {
padding: 4px 0 !important;
border-bottom: none !important;
} #ez-toc-container ul.ez-toc-list li::before,
#ez-toc-container ol.ez-toc-list li::before {
display: none !important;
content: none !important;
background: none !important;
} #ez-toc-container ul.ez-toc-list li a {
color: #ffffff !important;
text-decoration: none !important;
font-size: 0.9rem !important;
line-height: 1.5 !important;
display: inline-block !important;
transition: color 0.2s ease !important;
} #ez-toc-container ul.ez-toc-list > li > a {
font-weight: 600 !important;
color: #ffffff !important;
} #ez-toc-container ul.ez-toc-list ul {
padding-left: 14px !important;
border-left: 2px solid #f1f5f9 !important;
margin: 2px 0 4px !important;
}
#ez-toc-container ul.ez-toc-list ul li {
padding: 2px 0 !important;
} #ez-toc-container ul.ez-toc-list li a:hover {
color: var(--action-color) !important;
} @media (max-width: 640px) {
#ez-toc-container {
padding: 14px 16px !important;
}
#ez-toc-container ul.ez-toc-list li a {
font-size: 0.85rem !important;
}
} @media (max-width: 768px) {
#ez-toc-container {
padding: 18px 15px !important; margin-top: 20px !important;
margin-bottom: 30px !important;
border-radius: 12px !important; }
#ez-toc-container .ez-toc-title {
font-size: 1.15rem !important; }
#ez-toc-container ul.ez-toc-list li {
padding: 10px 0 !important; }
#ez-toc-container ul.ez-toc-list li a {
font-size: 0.95rem !important; line-height: 1.5 !important;
}
} @media (max-width: 768px) { main,
.single-container,
.ueber-container,
.kontakt-container {
padding-left: 8px !important; 
padding-right: 8px !important; 
} .single-container[style*="grid-template-columns"] {
padding-left: 0 !important;
padding-right: 0 !important;
} .hero-bereich { 
padding: 40px 15px !important; 
} .single-hero-bereich {
padding-left: 8px !important; 
padding-right: 8px !important; 
} .casino-zeile {
padding: 35px 12px 15px 12px !important; 
} .content-text {
padding: 25px 15px !important; 
}
} .breadcrumb-nav {
max-width: 1200px;
margin: 0 auto 16px auto;
padding: 0 4px;
font-size: 0.9rem;
}
.breadcrumb-nav ol {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
}
.breadcrumb-nav li {
display: flex;
align-items: center;
gap: 6px;
color: #ffffff; margin-bottom: 0;
}
.breadcrumb-nav li:not(:last-child)::after {
content: '›';
color: #ffffff;
font-size: 1rem;
}
.breadcrumb-nav a {
color: #ffffff; text-decoration: none;
transition: color 0.2s ease;
font-weight: 500;
}
.breadcrumb-nav a:hover {
color: #f39c12; }
.breadcrumb-nav li:last-child {
color: #ffffff; font-weight: 600;
}
@media (max-width: 768px) {
.breadcrumb-nav {
font-size: 0.82rem;
}
} .affiliate-hinweis-bar {
width: 100%;
background: #1c1e32;
color: #fff;
padding: 10px 20px;
position: relative;
z-index: 9999;
box-sizing: border-box;
}
.affiliate-hinweis-bar.versteckt {
display: none;
} html.bn-hide-affiliate-hinweis .affiliate-hinweis-bar {
display: none;
}
.affiliate-hinweis-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
gap: 12px;
}
.affiliate-hinweis-icon {
flex-shrink: 0;
color: #ff6b00;
line-height: 1;
}
.affiliate-hinweis-text {
margin: 0;
font-size: 0.82rem;
line-height: 1.5;
color: rgba(255, 255, 255, 0.85);
flex: 1;
}
.affiliate-hinweis-text strong {
color: #fff;
}
.affiliate-hinweis-text a {
color: #ff6b00;
text-decoration: underline;
}
.affiliate-hinweis-text a:hover {
color: #fff;
}
.affiliate-badge {
display: inline-block;
background: #ff6b00;
color: #fff;
font-size: 0.7rem;
font-weight: 700;
padding: 1px 7px;
border-radius: 3px;
text-transform: uppercase;
letter-spacing: 0.4px;
vertical-align: middle;
}
.affiliate-hinweis-close {
flex-shrink: 0;
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.3);
color: rgba(255, 255, 255, 0.7);
border-radius: 50%;
width: 26px;
height: 26px;
cursor: pointer;
font-size: 0.8rem;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
padding: 0;
}
.affiliate-hinweis-close:hover {
background: rgba(255, 255, 255, 0.15);
color: #fff;
border-color: rgba(255, 255, 255, 0.6);
} @media (max-width: 600px) {
.affiliate-hinweis-bar {
padding: 10px 15px;
}
.affiliate-hinweis-text {
font-size: 0.76rem;
}
.affiliate-hinweis-icon {
display: none; }
} .casino-cta-wrapper {
display: inline-flex;
flex-direction: column;
align-items: center;
gap: 3px;
}
.affiliate-label {
font-size: 9px;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #999;
line-height: 1;
}  .single-article {
max-width: 100%;
box-sizing: border-box;
} .single-article .table-responsive,
.single-article .wp-block-table,
.single-article figure {
width: 100%;
max-width: 100%;
overflow-x: visible;
display: block;
box-sizing: border-box;
} .bn-table-wrapper {
width: 100%;
max-width: 100%;
overflow-x: auto !important;
-webkit-overflow-scrolling: touch;
display: block;
box-sizing: border-box;
} .single-article table {
max-width: none; width: max-content; }.insider-lounge-page {
background: var(--bn-bg);
color: var(--bn-text);
} .il-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
width: 100%;
} .il-breadcrumb-wrap {
background: var(--bn-bg);
padding: 1.5rem 0 0;
}
.il-breadcrumb-wrap a,
.il-breadcrumb-wrap span,
.il-breadcrumb-wrap * {
color: var(--bn-muted);
font-size: 0.8rem;
text-decoration: none;
transition: color 0.2s ease;
}
.il-breadcrumb-wrap a:hover {
color: var(--bn-gold);
} .il-hero {
background-image:
linear-gradient(
to bottom,
var(--bn-bg) 0%,
rgba(7, 9, 15, 0.25) 20%, rgba(7, 9, 15, 0.5) 85%,
var(--bn-bg-2) 100%
),
var(--il-hero-image);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
border-bottom: 1px solid var(--bn-border);
color: var(--bn-white); min-height: 55vh;
padding: 6rem 1rem 4rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.il-hero__badge {
display: inline-block;
background: rgba(245,158,11,.12);
border: 1px solid rgba(245,158,11,.35);
border-radius: 50px;
color: var(--bn-gold);
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.09em;
margin-bottom: 1.2rem;
padding: 0.3rem 1rem;
text-transform: uppercase;
}
.il-hero__title {
font-size: clamp(2.2rem, 6vw, 4rem);
font-weight: 900;
margin: 0 0 1rem;
background: linear-gradient(90deg, var(--bn-gold-light), var(--bn-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.il-hero__subtitle {
color: var(--bn-text);
font-size: 1.05rem;
line-height: 1.7;
margin: 0 auto;
max-width: 580px;
} .il-hero__trust-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 12px;
margin-top: 2.5rem;
}
.il-hero__trust-badge {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.08);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
padding: 8px 16px;
border-radius: 100px;
font-size: 0.8rem;
color: var(--bn-muted);
display: flex;
align-items: center;
gap: 8px;
}
.il-hero__trust-badge strong {
color: var(--bn-gold);
} .il-hero__scroll {
margin-top: 3.5rem;
color: var(--bn-muted);
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
text-decoration: none;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
transition: color 0.3s ease;
}
.il-hero__scroll:hover {
color: var(--bn-gold);
}
.il-hero__scroll span {
font-size: 1.4rem;
animation: bn-bounce 2s infinite;
}
@keyframes bn-bounce {
0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
40% { transform: translateY(-8px); }
60% { transform: translateY(-4px); }
} .il-filter-bar {
background: var(--bn-bg-2);
border-bottom: 1px solid var(--bn-border);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 200;
}
.il-filter__group {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
justify-content: center;
}
.il-filter__btn {
background: var(--bn-surface);
border: 1.5px solid var(--bn-border);
border-radius: 50px;
color: var(--bn-text);
cursor: pointer;
font-size: 0.78rem;
font-weight: 600;
padding: 0.4rem 1rem;
transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
white-space: nowrap;
}
.il-filter__btn:hover {
background: var(--bn-bg-3);
border-color: var(--bn-gold);
color: var(--bn-white);
}
.il-filter__btn.is-active {
background: var(--bn-gold);
border-color: var(--bn-gold);
color: #000000;
} .il-deals {
background: var(--bn-bg);
padding: 3rem 0 4rem;
}
.il-grid {
display: grid;
gap: 1.5rem;
grid-template-columns: 1fr;
}
@media (min-width: 620px) {
.il-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
.il-grid { grid-template-columns: repeat(3, 1fr); }
} .il-card {
background: var(--bn-bg-3);
border: 1px solid var(--bn-border);
border-radius: 14px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
display: flex;
flex-direction: column;
overflow: hidden;
position: relative;
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.il-card:hover {
border-color: var(--bn-gold);
box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
transform: translateY(-4px);
}
.il-card.is-hidden {
display: none;
} .il-card__badge {
font-size: 0.65rem;
font-weight: 800;
letter-spacing: 0.07em;
padding: 0.4rem 1rem;
text-transform: uppercase;
background: var(--bn-surface);
color: var(--bn-text);
}
.il-badge--freispiele       { background: rgba(16,185,129,.1); color: #4ade80; border-bottom: 1px solid rgba(16,185,129,.2); }
.il-badge--cashback         { background: rgba(56,189,248,.1); color: #38bdf8; border-bottom: 1px solid rgba(56,189,248,.2); }
.il-badge--willkommensbonus { background: rgba(245,158,11,.1); color: var(--bn-gold); border-bottom: 1px solid rgba(245,158,11,.2); }
.il-badge--reload           { background: rgba(168,85,247,.1); color: #c084fc; border-bottom: 1px solid rgba(168,85,247,.2); }
.il-badge--no_deposit       { background: rgba(239,68,68,.1);  color: #f87171; border-bottom: 1px solid rgba(239,68,68,.2); }
.il-badge--exklusiv         { background: rgba(245,158,11,.15); color: var(--bn-gold-light); border-bottom: 1px solid rgba(245,158,11,.3); } .il-card__casino {
align-items: center;
border-bottom: 1px solid var(--bn-border);
display: flex;
gap: 0.75rem;
padding: 1rem 1.15rem;
background: rgba(255,255,255,0.02);
}
.il-card__casino-logo {
height: 34px;
max-width: 80px;
object-fit: contain;
width: auto;
}
.il-card__casino-fallback {
color: var(--bn-white);
font-size: 0.88rem;
font-weight: 700;
}
.il-card__casino-link {
color: var(--bn-gold);
font-size: 0.72rem;
font-weight: 700;
margin-left: auto;
text-decoration: none;
white-space: nowrap;
}
.il-card__casino-link:hover {
text-decoration: underline;
} .il-card__body {
flex: 1;
padding: 1.25rem 1.15rem 1rem;
}
.il-card__title {
color: var(--bn-white);
font-size: 1.05rem;
font-weight: 800;
line-height: 1.35;
margin: 0 0 0.5rem;
}
.il-card__title-link {
color: inherit;
text-decoration: none;
}
.il-card__title-link:hover,
.il-card__title-link:focus-visible {
color: var(--bn-gold);
text-decoration: underline;
text-underline-offset: 0.18em;
}
.il-card__description {
color: var(--bn-muted);
font-size: 0.85rem;
line-height: 1.6;
margin: 0;
} .il-card__code-wrap {
border-top: 1px dashed var(--bn-border);
padding: 1rem 1.15rem;
}
.il-card__code-label {
color: var(--bn-muted);
display: block;
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.07em;
margin-bottom: 0.5rem;
text-transform: uppercase;
}
.il-code-reveal {
align-items: center;
background: var(--bn-bg-2);
border: 1px dashed var(--bn-border-g);
border-radius: 8px;
display: flex;
gap: 0.5rem;
padding: 0.5rem 0.75rem;
}
.il-code-reveal__blurred {
color: var(--bn-muted);
flex: 1;
font-family: 'Courier New', monospace;
font-size: 1.05rem;
letter-spacing: 0.18em;
user-select: none;
}
.il-code-reveal__code {
color: var(--bn-gold);
display: none;
flex: 1;
font-family: 'Courier New', monospace;
font-size: 1.05rem;
font-weight: 800;
letter-spacing: 0.12em;
}
.il-code-reveal.is-revealed .il-code-reveal__blurred { display: none; }
.il-code-reveal.is-revealed .il-code-reveal__code    { display: block; }
.il-code-reveal__btn {
align-items: center;
background: var(--bn-gold);
border: none;
border-radius: 6px;
color: #000000;
cursor: pointer;
display: flex;
font-size: 0.72rem;
font-weight: 800;
gap: 0.4rem;
padding: 0.4rem 0.8rem;
transition: background 0.2s ease;
white-space: nowrap;
}
.il-code-reveal__btn:hover    { background: var(--bn-gold-light); }
.il-code-reveal__btn.is-copied { background: var(--bn-green); color: #fff; } .il-card__expiry {
color: var(--bn-muted);
font-size: 0.78rem;
padding: 0.5rem 1.15rem;
}
.il-card__expiry strong { color: var(--bn-text); }
.il-expiry--urgent {
background: rgba(239, 68, 68, 0.1);
color: #fca5a5;
font-weight: 600;
}
.il-expiry--urgent strong { color: #fecaca; } .il-card__cta {
padding: 0.75rem 1.15rem 1.25rem;
}
.il-btn {
border: none;
border-radius: 8px;
cursor: pointer;
display: block;
font-size: 0.9rem;
font-weight: 800;
padding: 0.85rem 1rem;
text-align: center;
text-decoration: none;
transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
width: 100%;
}
.il-btn--primary {
background: linear-gradient(135deg, var(--bn-gold) 0%, var(--bn-gold-2) 100%);
color: #000000;
box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}
.il-btn--primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}
.il-btn--secondary {
background: var(--bn-surface);
color: var(--bn-white);
border: 1px solid var(--bn-border);
}
.il-btn--secondary:hover {
border-color: var(--bn-gold);
color: var(--bn-gold);
} .il-empty {
background: var(--bn-bg-3);
border: 1px solid var(--bn-border);
border-radius: 14px;
color: var(--bn-text);
font-size: 1rem;
padding: 3rem 2rem;
text-align: center;
} .il-disclaimer {
background: var(--bn-bg-2);
border-top: 1px solid var(--bn-border);
color: var(--bn-muted);
font-size: 0.8rem;
line-height: 1.65;
padding: 2rem 0;
text-align: center;
}
.il-disclaimer strong { color: var(--bn-white); }
.il-disclaimer a { color: var(--bn-gold); text-decoration: none; font-weight: 600; }
.il-disclaimer a:hover { text-decoration: underline; } .il-card__no-code {
align-items: center;
background: rgba(16, 185, 129, 0.05);
border-top: 1px solid rgba(16, 185, 129, 0.15);
color: #34d399;
display: flex;
font-size: 0.78rem;
font-weight: 600;
gap: 0.6rem;
padding: 0.75rem 1.15rem;
}
.il-card__no-code::before {
align-items: center;
background: #10b981;
border-radius: 50%;
color: #000000;
content: '✓';
display: flex;
flex-shrink: 0;
font-size: 0.65rem;
font-weight: 900;
height: 17px;
justify-content: center;
line-height: 1;
width: 17px;
} .il-section-heading {
border-bottom: 2px solid var(--bn-border);
color: var(--bn-white);
font-size: clamp(1.1rem, 2vw, 1.3rem);
font-weight: 800;
margin: 0 0 1.5rem;
padding-bottom: 0.75rem;
}
.il-section-heading span {
color: var(--bn-gold);
font-weight: 900;
} .il-intro {
background: var(--bn-bg-2);
border-bottom: 1px solid var(--bn-border);
padding: 2.5rem 0;
}
.il-intro__content {
margin: 0 auto;
max-width: 860px;
text-align: center;
}
.il-intro__heading {
color: var(--bn-white);
font-size: clamp(1.2rem, 2.5vw, 1.6rem);
font-weight: 800;
margin: 0 0 1rem;
line-height: 1.3;
}
.il-intro__text {
color: var(--bn-text);
font-size: 0.95rem;
line-height: 1.75;
margin: 0 0 2rem;
} .il-intro__steps {
display: flex;
flex-direction: column;
gap: 0.85rem;
list-style: none;
margin: 0 auto;
max-width: 820px;
padding: 0;
}
@media (min-width: 620px) {
.il-intro__steps {
flex-direction: row;
gap: 1rem;
justify-content: center;
}
}
.il-intro__step {
align-items: center;
background: var(--bn-bg-3);
border: 1px solid var(--bn-border);
border-radius: 10px;
display: flex;
flex: 1;
gap: 1rem;
padding: 1rem;
text-align: left;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.il-intro__step:hover {
border-color: var(--bn-gold);
box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}
.il-step__num {
align-items: center;
background: var(--bn-gold);
border-radius: 50%;
color: #000000;
display: flex;
flex-shrink: 0;
font-size: 0.85rem;
font-weight: 900;
height: 32px;
justify-content: center;
width: 32px;
}
.il-step__label {
color: var(--bn-white);
display: block;
font-size: 0.85rem;
font-weight: 800;
line-height: 1.3;
margin-bottom: 0.2rem;
}
.il-step__desc {
color: var(--bn-muted);
display: block;
font-size: 0.76rem;
line-height: 1.4;
} .il-faq {
background: var(--bn-bg);
border-top: 1px solid var(--bn-border);
padding: 3.5rem 0;
}
.il-faq__heading {
color: var(--bn-white);
font-size: clamp(1.25rem, 2.5vw, 1.65rem);
font-weight: 800;
margin: 0 0 2rem;
text-align: center;
}
.il-faq__list {
display: flex;
flex-direction: column;
gap: 0.75rem;
margin: 0 auto;
max-width: 780px;
} .il-faq__item {
background: var(--bn-bg-3);
border: 1px solid var(--bn-border);
border-radius: 10px;
overflow: hidden;
transition: border-color 0.2s ease;
}
.il-faq__item[open] {
border-color: var(--bn-gold);
}
.il-faq__question {
color: var(--bn-white);
cursor: pointer;
font-size: 0.95rem;
font-weight: 700;
line-height: 1.45;
list-style: none;
padding: 1.2rem 3.2rem 1.2rem 1.25rem;
position: relative;
transition: background 0.15s ease;
user-select: none;
}
.il-faq__question::-webkit-details-marker { display: none; }
.il-faq__question:hover { background: var(--bn-surface); }
.il-faq__question::after {
color: var(--bn-gold);
content: '+';
font-size: 1.4rem;
font-weight: 300;
line-height: 1;
position: absolute;
right: 1.25rem;
top: 50%;
transform: translateY(-50%);
transition: transform 0.2s ease, content 0.2s ease;
}
.il-faq__item[open] .il-faq__question::after {
content: '−';
} .il-faq__answer {
border-top: 1px solid var(--bn-border);
color: var(--bn-text);
font-size: 0.9rem;
line-height: 1.7;
padding: 1.1rem 1.25rem 1.25rem;
}
.il-faq__answer p          { margin: 0; }
.il-faq__answer p + p      { margin-top: 0.5rem; }
.il-faq__answer strong     { color: var(--bn-white); } .il-card__ad-label {
color: var(--bn-muted);
display: block;
font-size: 0.62rem;
font-weight: 700;
letter-spacing: 0.09em;
margin-bottom: 0.4rem;
text-align: center;
text-transform: uppercase;
} .insider-deal-page {
background: var(--bn-bg, #07090f);
color: var(--bn-text, #e2e8f0);
min-height: 60vh;
}
.il-deal-detail__hero {
background:
radial-gradient(circle at 20% 0%, rgba(245, 158, 11, 0.14), transparent 42%),
linear-gradient(180deg, var(--bn-bg-2, #0c0f1a), var(--bn-bg, #07090f));
border-bottom: 1px solid var(--bn-border, rgba(255,255,255,.07));
padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
}
.il-deal-detail__hero-inner {
max-width: 920px;
}
.il-deal-detail__status-row {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
.il-deal-detail__type,
.il-deal-detail__status {
border-radius: 999px;
display: inline-flex;
font-size: 0.72rem;
font-weight: 800;
letter-spacing: 0.06em;
padding: 0.45rem 0.85rem;
text-transform: uppercase;
}
.il-deal-detail__status.is-active {
background: rgba(16, 185, 129, 0.12);
border: 1px solid rgba(16, 185, 129, 0.28);
color: #6ee7b7;
}
.il-deal-detail__status.is-expired {
background: rgba(239, 68, 68, 0.12);
border: 1px solid rgba(239, 68, 68, 0.28);
color: #fca5a5;
}
.il-deal-detail__title {
color: var(--bn-white, #fff);
font-size: clamp(2rem, 6vw, 3.75rem);
line-height: 1.08;
margin: 0;
max-width: 18ch;
}
.il-deal-detail__lead {
color: var(--bn-text, #e2e8f0);
font-size: clamp(1rem, 2vw, 1.2rem);
line-height: 1.75;
margin: 1.5rem 0 0;
max-width: 760px;
}
.il-deal-detail__layout {
display: grid;
grid-template-columns: minmax(0, 1fr);
padding-bottom: 5rem;
padding-top: clamp(2rem, 5vw, 4rem);
}
.il-deal-detail__main {
margin: 0 auto;
max-width: 860px;
width: 100%;
}
.il-deal-detail__image {
background: var(--bn-bg-3, #111827);
border: 1px solid var(--bn-border, rgba(255,255,255,.07));
border-radius: 16px;
margin: 0 0 2rem;
overflow: hidden;
}
.il-deal-detail__image img {
display: block;
height: auto;
margin: 0;
width: 100%;
}
.il-deal-notice {
border: 1px solid;
border-radius: 12px;
line-height: 1.65;
margin-bottom: 1.5rem;
padding: 1rem 1.15rem;
}
.il-deal-notice strong {
display: block;
margin-bottom: 0.2rem;
}
.il-deal-notice--expired {
background: rgba(239, 68, 68, 0.08);
border-color: rgba(239, 68, 68, 0.28);
color: #fecaca;
}
.il-deal-notice--urgent {
background: rgba(245, 158, 11, 0.09);
border-color: rgba(245, 158, 11, 0.3);
color: #fde68a;
}
.il-deal-facts,
.il-deal-code,
.il-deal-content,
.il-deal-casino,
.il-deal-reviewer {
background: var(--bn-bg-3, #111827);
border: 1px solid var(--bn-border, rgba(255,255,255,.07));
border-radius: 14px;
margin-bottom: 1.5rem;
padding: clamp(1.2rem, 3vw, 1.75rem);
}
.il-deal-facts h2,
.il-deal-code h2,
.il-deal-casino h2,
.il-deal-content h2,
.il-deal-content h3 {
color: var(--bn-white, #fff);
}
.il-deal-facts h2,
.il-deal-code h2,
.il-deal-casino h2 {
font-size: 1.2rem;
margin: 0 0 1rem;
}
.il-deal-facts__list {
display: grid;
gap: 0;
margin: 0;
}
.il-deal-facts__list > div {
align-items: baseline;
border-top: 1px solid var(--bn-border, rgba(255,255,255,.07));
display: grid;
gap: 0.75rem;
grid-template-columns: minmax(110px, 0.45fr) minmax(0, 1fr);
padding: 0.85rem 0;
}
.il-deal-facts__list > div:first-child {
border-top: 0;
padding-top: 0;
}
.il-deal-facts__list > div:last-child {
padding-bottom: 0;
}
.il-deal-facts dt {
color: var(--bn-muted, #94a3b8);
font-size: 0.78rem;
font-weight: 700;
text-transform: uppercase;
}
.il-deal-facts dd {
color: var(--bn-white, #fff);
font-weight: 700;
margin: 0;
}
.il-deal-code .il-code-reveal {
max-width: 520px;
}
.il-deal-content {
color: var(--bn-text, #e2e8f0);
line-height: 1.75;
}
.il-deal-content > :first-child { margin-top: 0; }
.il-deal-content > :last-child { margin-bottom: 0; }
.il-deal-content a { color: var(--bn-gold, #f59e0b); }
.il-deal-content img { height: auto; max-width: 100%; }
.il-deal-casino {
align-items: center;
display: grid;
gap: 1.25rem;
}
.il-deal-casino__identity {
align-items: center;
display: flex;
gap: 1rem;
min-width: 0;
}
.il-deal-casino__identity img {
background: #fff;
border-radius: 8px;
height: 54px;
object-fit: contain;
padding: 0.35rem;
width: 120px;
}
.il-deal-casino__eyebrow {
color: var(--bn-muted, #94a3b8);
font-size: 0.7rem;
font-weight: 700;
letter-spacing: 0.07em;
margin: 0 0 0.25rem;
text-transform: uppercase;
}
.il-deal-casino h2 {
margin: 0;
}
.il-deal-cta {
margin: 1.75rem 0;
}
.il-deal-cta:empty {
display: none;
}
.il-deal-reviewer {
align-items: baseline;
display: flex;
flex-wrap: wrap;
gap: 0.45rem 0.75rem;
}
.il-deal-reviewer__label {
color: var(--bn-muted, #94a3b8);
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.il-deal-reviewer__name {
color: var(--bn-gold, #f59e0b);
font-weight: 800;
text-decoration: none;
}
.il-deal-reviewer__name:hover,
.il-deal-reviewer__name:focus-visible {
text-decoration: underline;
}
.il-deal-reviewer__role {
color: var(--bn-text, #e2e8f0);
font-size: 0.85rem;
}
.il-deal-back {
border-top: 1px solid var(--bn-border, rgba(255,255,255,.07));
margin-top: 2rem;
padding-top: 1.5rem;
}
.il-deal-back a {
color: var(--bn-gold, #f59e0b);
font-weight: 700;
text-decoration: none;
}
.il-deal-back a:hover,
.il-deal-back a:focus-visible {
text-decoration: underline;
}
@media (min-width: 720px) {
.il-deal-casino {
grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
}
}
@media (max-width: 560px) {
.il-deal-facts__list > div {
grid-template-columns: 1fr;
gap: 0.25rem;
}
.il-deal-casino__identity {
align-items: flex-start;
flex-direction: column;
}
.il-deal-code .il-code-reveal {
align-items: stretch;
flex-direction: column;
}
.il-deal-code .il-code-reveal__btn {
justify-content: center;
width: 100%;
}
}