* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

:root {
    --primary-color: #c8a45c; /* Gold */
    --secondary-color: #a41e22; /* Red */
    --dark-bg: #1a1a2e;
    --light-text: #ffffff;
    --gray-text: #b3b3b3;
    --transition: all 0.3s ease;
}

body {
    background-color: #0c0c17;
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: 45px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn:hover {
    background: #d9b976;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
}

.btn.btn-secondary {
    background: var(--secondary-color);
    color: var(--light-text);
}

.btn.btn-secondary:hover {
    background: #c52a2e;
    box-shadow: 0 5px 15px rgba(164, 30, 34, 0.3);
}

/* Header Styles */
header {
    background-color: rgba(12, 12, 23, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 164, 92, 0.3);
}

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

.logo {
    max-width: 180px;
    max-height: 45px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links a {
    color: var(--light-text);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    text-transform: uppercase;
}

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

.nav-links .active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #151528;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: 5px;
    top: 100%;
    left: 0;
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.dropdown-content a {
    color: var(--light-text);
    padding: 12px 16px;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(200, 164, 92, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.auth-buttons .btn {
    margin-left: 10px;
    padding: 8px 15px;
    font-size: 14px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text);
    transition: var(--transition);
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
        url('fer-tour.webp') no-repeat center center;
    background-size: 45%;
    background-position: right;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(200, 164, 92, 0.2), transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: fadeIn 1s ease-out forwards;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--light-text);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray-text);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hero-features {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    text-align: center;
}

.feature {
    flex-basis: 23%;
    padding: 15px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(200, 164, 92, 0.3);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.feature h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    animation: pulse 2s infinite;
    z-index: 3;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.ferrari-promo {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(12, 12, 23, 0.9);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    max-width: 300px;
    text-align: center;
    z-index: 5;
    animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.ferrari-promo h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ferrari-promo p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Login & Registration Section Styles */
.login-registration-section {
    padding: 80px 0;
    background-color: #0c0c17;
    position: relative;
}

.login-registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.login-registration-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 800;
}

.login-registration-content {
    max-width: 900px;
    margin: 0 auto;
}

.login-registration-content p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.login-registration-content h3 {
    color: var(--light-text);
    font-size: 1.6rem;
    margin: 40px 0 15px;
    font-weight: 700;
}

.login-registration-content ul {
    list-style-type: none;
    margin-bottom: 25px;
}

.login-registration-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.login-registration-content ul li i {
    margin-top: 5px;
    margin-right: 10px;
}

.screenshot-container {
    display: flex;
    gap: 30px;
    margin: 50px 0;
}

.screenshot-item {
    flex: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 92, 0.3);
    transition: var(--transition);
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(200, 164, 92, 0.2);
    border-color: var(--primary-color);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    background-color: rgba(12, 12, 23, 0.9);
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-text);
    margin: 0;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Casino Review Section Styles */
.casino-review-section {
    padding: 80px 0;
    background-color: #0c0c17;
    color: var(--light-text);
}

/* Review Header */
.review-header {
    text-align: center;
    margin-bottom: 50px;
}

.review-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Unikaleres Rating-Design mit Hexagon */
.rating-hexagon {
    position: relative;
    width: 100px;
    height: 110px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: rotate(45deg);
}

.rating-hexagon:before,
.rating-hexagon:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.rating-hexagon:before {
    transform: rotate(60deg);
}

.rating-hexagon:after {
    transform: rotate(-60deg);
}

.rating-hexagon .rating-score {
    transform: rotate(-45deg);
    font-size: 2.2rem;
    font-weight: 800;
    color: #000;
    z-index: 1;
}

.rating-hexagon .rating-stars {
    transform: rotate(-45deg);
    color: #000;
    font-size: 1rem;
    margin-top: 5px;
    z-index: 1;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.rating-stars.large {
    font-size: 2.2rem;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
}

.rating-tagline {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Review Highlights */
.review-highlights {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.highlight-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(12, 12, 23, 0.5);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--primary-color);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-item h4 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-item p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Review Section Styling */
.review-section {
    margin-bottom: 70px;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(200, 164, 92, 0.2);
}

.review-section h3 {
    background: linear-gradient(90deg, var(--secondary-color), var(--dark-bg));
    color: #fff;
    padding: 20px 30px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.review-content {
    padding: 30px;
}

.review-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.review-content h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 30px 0 20px;
    font-weight: 700;
}

.review-content h5 {
    color: var(--light-text);
    font-size: 1.2rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.review-content ul {
    margin-bottom: 25px;
}

.review-content ul li {
    margin-bottom: 10px;
}

/* Player Testimonials */
.player-testimonial {
    background: rgba(12, 12, 23, 0.7);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 5px solid var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid var(--primary-color);
}

.testimonial-info h4 {
    margin: 0 0 5px;
    font-size: 1.2rem;
}

.player-rating {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.verification-badge {
    background-color: rgba(200, 164, 92, 0.2);
    color: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

blockquote {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--light-text);
    margin: 0;
}

/* Review Metrics */
.review-metrics {
    margin: 30px 0;
}

.metric-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.metric-name {
    width: 180px;
    font-weight: 600;
    font-size: 1rem;
}

.metric-bar {
    flex-grow: 1;
    height: 12px;
    background-color: rgba(200, 164, 92, 0.2);
    border-radius: 6px;
    overflow: hidden;
    margin: 0 15px;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 6px;
}

.metric-score {
    font-weight: 700;
    color: var(--primary-color);
    width: 50px;
    text-align: right;
}

/* Comparison Tables */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th {
    background-color: rgba(12, 12, 23, 0.9);
    color: var(--primary-color);
    text-align: left;
    padding: 15px;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr {
    background-color: rgba(26, 26, 46, 0.4);
    transition: var(--transition);
}

.comparison-table tbody tr:hover {
    background-color: rgba(26, 26, 46, 0.7);
}

.comparison-table tr.highlighted {
    background-color: rgba(200, 164, 92, 0.1);
    border-left: 3px solid var(--primary-color);
}

/* Premium Promo Card Styles */
.premium-promo-container {
    margin: 0 0 30px;
    width: 100%;
}

.premium-promo-card {
    background: linear-gradient(135deg, #1a1a2e, #0c0c17);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.exclusive-bonus-tag {
    position: absolute;
    top: 0;
    right: 30px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.promo-header {
    background: linear-gradient(90deg, var(--secondary-color), #7a171a);
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.promo-title {
    color: #c8a45c;
    font-size: 2.4rem;
    margin: 0 0 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-subtitle {
    color: #ffffff;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.promo-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-value {
    margin-bottom: 40px;
}

.value-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #c8a45c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 25px rgba(200, 164, 92, 0.6);
}

.value-number {
    color: #000;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
}

.value-text {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.feature-box {
    background-color: #1a1a2e;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    border: 1px solid #141428;
}

.feature-box i {
    font-size: 1.8rem;
    color: #c8a45c;
    margin-right: 15px;
}

.feature-content h5 {
    color: #ffffff;
    font-size: 1rem;
    margin: 0 0 5px;
    font-weight: 600;
}

.feature-content p {
    color: #b3b3b3;
    font-size: 0.9rem;
    margin: 0;
}

.promo-footer {
    background-color: #0c0c17;
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(200, 164, 92, 0.2);
}

.claim-button {
    display: inline-block;
    background-color: #c8a45c;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.claim-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 164, 92, 0.4);
}

.legal-text {
    font-size: 0.8rem;
    color: #b3b3b3;
    margin: 0;
}

/* Games Grid */
.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.game-card {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background-color: rgba(12, 12, 23, 0.7);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(200, 164, 92, 0.2);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.game-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.game-card h5 {
    margin: 15px 15px 5px;
    font-size: 1.1rem;
}

.game-card p {
    margin: 0 15px 15px;
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Bonus CTA Container */
.bonus-cta-container {
    text-align: center;
    margin-top: 30px;
}

.bonus-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bonus-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 164, 92, 0.3);
}

.bonus-terms {
    font-size: 0.8rem;
    color: var(--gray-text);
    margin: 0;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.payment-method-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a2e, #0c0c17);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(200, 164, 92, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 20px;
}

.payment-method-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.payment-method-card:hover::before {
    opacity: 1;
}

.method-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.method-examples {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}

.timing-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

.timing-badge.fastest {
    background-color: rgba(39, 174, 96, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.timing-badge.fast {
    background-color: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid rgba(241, 196, 15, 0.3);
}

.timing-badge.standard {
   background-color: rgba(52, 152, 219, 0.2);
   color: #3498db;
   border: 1px solid rgba(52, 152, 219, 0.3);
}

.method-note {
   color: var(--gray-text);
   font-size: 0.85rem;
   margin: auto 0 0;
   text-align: center;
   font-style: italic;
}

/* Withdrawal Info Container */
.withdrawal-info-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 30px;
   margin-bottom: 50px;
}

.info-box {
   background: rgba(26, 26, 46, 0.5);
   border-radius: 12px;
   padding: 25px;
   border: 1px solid rgba(200, 164, 92, 0.2);
}

.info-box h3 {
   color: var(--primary-color);
   font-size: 1.3rem;
   margin-bottom: 20px;
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 10px;
   background: none;
   padding: 0;
}

.info-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.info-list li {
   margin-bottom: 12px;
   padding-bottom: 12px;
   border-bottom: 1px solid rgba(200, 164, 92, 0.1);
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.info-list li:last-child {
   margin-bottom: 0;
   padding-bottom: 0;
   border-bottom: none;
}

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

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

/* Responsible Tools */
.responsible-tools {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 30px;
   margin-bottom: 60px;
}

.tool-item {
   background: rgba(26, 26, 46, 0.6);
   border-radius: 12px;
   padding: 25px;
   display: flex;
   align-items: flex-start;
   border: 1px solid rgba(200, 164, 92, 0.2);
   transition: all 0.3s ease;
}

.tool-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
   border-color: var(--primary-color);
}

.tool-icon {
   font-size: 2.2rem;
   color: var(--primary-color);
   margin-right: 20px;
   flex-shrink: 0;
}

.tool-content h4 {
   color: var(--light-text);
   font-size: 1.3rem;
   margin: 0 0 12px;
   font-weight: 600;
}

.tool-content p {
   color: var(--gray-text);
   font-size: 1rem;
   line-height: 1.6;
   margin: 0;
}

/* Self Assessment */
.responsible-self-assessment {
   background: rgba(26, 26, 46, 0.6);
   border-radius: 12px;
   padding: 25px;
   margin: 30px 0;
   border: 1px solid rgba(200, 164, 92, 0.2);
}

.assessment-list {
   list-style: disc;
   padding-left: 20px;
   margin: 20px 0;
}

.assessment-list li {
   margin-bottom: 10px;
   color: var(--light-text);
}

/* Expert Review */
.expert-review {
   background: rgba(26, 26, 46, 0.6);
   border-radius: 12px;
   padding: 25px;
   margin: 30px 0;
   border: 1px solid rgba(200, 164, 92, 0.2);
}

.expert-header {
   display: flex;
   align-items: center;
   margin-bottom: 20px;
}

.expert-avatar {
   width: 80px;
   height: 80px;
   border-radius: 50%;
   overflow: hidden;
   border: 3px solid var(--primary-color);
   margin-right: 20px;
   flex-shrink: 0;
}

.avatar-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.expert-credentials h5 {
   color: var(--primary-color);
   font-size: 1.3rem;
   margin: 0 0 5px;
   font-weight: 700;
}

.expert-position {
   color: var(--gray-text);
   font-size: 0.9rem;
   font-style: italic;
}

/* Certification Grid */
.certification-grid {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
   margin: 30px 0;
}

.certification-item {
   text-align: center;
   width: 120px;
}

.cert-img {
   width: 80px;
   height: 80px;
   object-fit: contain;
   margin-bottom: 10px;
   opacity: 0.8;
   transition: all 0.3s ease;
}

.certification-item:hover .cert-img {
   opacity: 1;
   transform: scale(1.1);
}

.cert-name {
   font-size: 0.8rem;
   color: var(--gray-text);
}

/* App Section Styles */
.app-image-container {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
   border: 2px solid var(--primary-color);
   margin-bottom: 30px;
}

.app-image {
   width: 100%;
   display: block;
   border-radius: 18px;
}

.device-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
   display: flex;
   align-items: flex-end;
   justify-content: center;
   padding-bottom: 20px;
}

.app-badge {
   background-color: var(--primary-color);
   color: #000;
   padding: 8px 15px;
   border-radius: 50px;
   font-weight: 700;
   font-size: 0.9rem;
   display: flex;
   align-items: center;
   gap: 8px;
   box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.app-badge i {
   font-size: 1.1rem;
}

.app-content {
   display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 30px;
   align-items: start;
}

.app-info {
   background-color: rgba(26, 26, 46, 0.5);
   border-radius: 12px;
   padding: 25px;
   border: 1px solid rgba(200, 164, 92, 0.2);
}

.app-intro {
   font-size: 1.1rem;
   line-height: 1.7;
   margin-bottom: 30px;
}

/* Installation Tabs */
.installation-tabs {
   margin-top: 25px;
}

.tab-buttons {
   display: flex;
   gap: 15px;
   margin-bottom: 25px;
}

.tab-btn {
   background-color: rgba(12, 12, 23, 0.7);
   color: var(--light-text);
   border: 1px solid rgba(200, 164, 92, 0.3);
   padding: 12px 25px;
   font-size: 1rem;
   font-weight: 600;
   border-radius: 8px;
   cursor: pointer;
   transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
   background-color: var(--primary-color);
   color: #000;
   border-color: var(--primary-color);
}

.tab-pane {
   display: none;
}

.tab-pane.active {
   display: block;
}

/* Installation Steps */
.installation-steps {
   display: flex;
   flex-direction: column;
   gap: 20px;
   margin-bottom: 25px;
}

.step {
   display: flex;
   align-items: flex-start;
   background-color: rgba(12, 12, 23, 0.7);
   border-radius: 10px;
   padding: 20px;
   border: 1px solid rgba(200, 164, 92, 0.2);
   transition: all 0.3s ease;
}

.step:hover {
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
   border-color: var(--primary-color);
}

.step-number {
   width: 40px;
   height: 40px;
   background-color: var(--primary-color);
   color: #000;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.2rem;
   margin-right: 15px;
   flex-shrink: 0;
}

.step-content h5 {
   color: var(--light-text);
   font-size: 1.1rem;
   margin: 0 0 8px;
   font-weight: 600;
}

.step-content p {
   color: var(--gray-text);
   font-size: 0.95rem;
   margin: 0;
}

/* FAQ Items */
.faq-item {
   background: rgba(26, 26, 46, 0.5);
   border-radius: 8px;
   margin-bottom: 15px;
   overflow: hidden;
   transition: all 0.3s ease;
   border: 1px solid rgba(200, 164, 92, 0.2);
}

.faq-item.active, 
.faq-item:hover {
   background: rgba(26, 26, 46, 0.8);
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   border-color: var(--primary-color);
}

.faq-question {
   padding: 18px 25px;
   cursor: pointer;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.faq-question h4 {
   font-size: 1.1rem;
   margin: 0;
   font-weight: 600;
   transition: all 0.3s ease;
}

.faq-item.active .faq-question h4,
.faq-question:hover h4 {
   color: var(--primary-color);
}

.toggle-icon {
   color: var(--primary-color);
   transform: rotate(0);
   transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
   transform: rotate(45deg);
}

.faq-answer {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   padding: 0 25px;
}

.faq-item.active .faq-answer {
   max-height: 500px;
   padding: 0 25px 20px;
}

/* Review Conclusion */
.review-conclusion {
   background: rgba(26, 26, 46, 0.7);
   border-radius: 10px;
   padding: 40px;
   text-align: center;
   border: 1px solid rgba(200, 164, 92, 0.3);
   margin-top: 50px;
}

.review-conclusion h4 {
   color: var(--primary-color);
   font-size: 1.8rem;
   margin-bottom: 25px;
   font-weight: 700;
}

.review-conclusion p {
   font-size: 1.1rem;
   line-height: 1.7;
   margin-bottom: 25px;
   text-align: left;
}

.final-rating {
   margin: 35px 0;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}

/* Kreisförmiges Rating im Fazit */
.final-rating .rating-circle {
   width: 120px;
   height: 120px;
   background: linear-gradient(135deg, var(--primary-color), #e5c992);
   border-radius: 50%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   margin: 0 auto 15px;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
   border: 3px solid var(--light-text);
}

.final-rating .rating-circle i {
   color: #000;
   font-size: 1.5rem;
}

.rating-text {
   font-size: 1.4rem;
   font-weight: 700;
   color: var(--primary-color);
}

/* Social Media Sharing Buttons */
.social-sharing {
   margin: 30px 0;
   text-align: center;
}

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

.social-button {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.2rem;
   transition: var(--transition);
   background-color: rgba(26, 26, 46, 0.8);
   border: 1px solid rgba(200, 164, 92, 0.3);
}

.social-button:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-button.facebook:hover {
   background-color: #3b5998;
   border-color: #3b5998;
}

.social-button.twitter:hover {
   background-color: #1da1f2;
   border-color: #1da1f2;
}

.social-button.telegram:hover {
   background-color: #0088cc;
   border-color: #0088cc;
}

.social-button.whatsapp:hover {
   background-color: #25d366;
   border-color: #25d366;
}

/* Footer Styles */
.site-footer {
   background-color: #0a0a14;
   color: var(--gray-text);
}

/* Footer Main */
.footer-main {
   padding: 60px 0 40px;
}

.footer-grid {
   display: grid;
   grid-template-columns: 1fr 3fr;
   gap: 40px;
   margin-bottom: 50px;
}

/* Footer Logo Section */
.footer-logo-section {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
}

.footer-logo {
   width: 180px;
   height: auto;
   margin-bottom: 20px;
}

.footer-license {
   margin-bottom: 20px;
}

.footer-license p {
   font-size: 0.9rem;
   margin: 0 0 5px;
}

.footer-social {
   display: flex;
   gap: 12px;
}

.social-link {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 36px;
   height: 36px;
   background-color: rgba(26, 26, 46, 0.8);
   border-radius: 50%;
   color: var(--light-text);
   font-size: 1rem;
   transition: all 0.3s ease;
}

.social-link:hover {
   background-color: var(--primary-color);
   color: #000;
   transform: translateY(-3px);
}

/* Footer Links Section */
.footer-links-section {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 30px;
}

.footer-links-column h3 {
   color: var(--primary-color);
   font-size: 1.1rem;
   margin: 0 0 20px;
   font-weight: 600;
}

.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-links li {
   margin-bottom: 10px;
}

.footer-links a {
   color: var(--gray-text);
   text-decoration: none;
   font-size: 0.95rem;
   transition: all 0.3s ease;
}

.footer-links a:hover {
   color: var(--primary-color);
   padding-left: 5px;
}

/* Footer Payments */
.footer-payments {
   text-align: center;
   margin-bottom: 40px;
}

.footer-payments h3 {
   color: var(--primary-color);
   font-size: 1.1rem;
   margin-bottom: 20px;
   font-weight: 600;
}

.payment-icons {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
}

.payment-icon {
   height: 30px;
   width: auto;
   opacity: 0.7;
   transition: all 0.3s ease;
}

.payment-icon:hover {
   opacity: 1;
}

/* Responsible Gaming Bar */
.responsible-gaming-bar {
   background-color: #07070f;
   padding: 20px 0;
   text-align: center;
   border-top: 1px solid rgba(200, 164, 92, 0.1);
   border-bottom: 1px solid rgba(200, 164, 92, 0.1);
}

.responsible-icons {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-bottom: 15px;
}

.resp-icon {
   height: 40px;
   width: auto;
}

.responsible-text {
   font-size: 0.95rem;
   color: var(--gray-text);
   margin: 0;
   line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
   padding: 25px 0;
   text-align: center;
}

.copyright {
   font-size: 0.9rem;
   margin-bottom: 15px;
}

.footer-bottom-links {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 20px;
}

.footer-bottom-links a {
   color: var(--gray-text);
   font-size: 0.9rem;
   text-decoration: none;
   transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
   color: var(--primary-color);
}

.disclaimer {
   font-size: 0.8rem;
   line-height: 1.5;
   color: rgba(180, 180, 180, 0.6);
   margin: 0;
   max-width: 900px;
   margin: 0 auto;
}

/* Animation für scrollende Elemente */
.animate-in {
   opacity: 1 !important;
   transform: translateY(0) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
   .hero h1 {
       font-size: 2.8rem;
   }
   
   .hero-features {
       flex-wrap: wrap;
   }
   
   .feature {
       flex-basis: 48%;
       margin-bottom: 15px;
   }
   
   .ferrari-promo {
       bottom: 20px;
       right: 20px;
       max-width: 250px;
   }
   
   .responsible-tools {
       grid-template-columns: 1fr;
   }
   
   .footer-grid {
       grid-template-columns: 1fr;
       gap: 30px;
   }
   
   .footer-logo-section {
       align-items: center;
       text-align: center;
   }
   
   .footer-links-section {
       grid-template-columns: 1fr 1fr;
       gap: 20px;
   }

   .app-content {
       grid-template-columns: 1fr;
   }
}

@media (max-width: 768px) {
   .hamburger {
       display: block;
   }
   
   .hamburger.active .bar:nth-child(2) {
       opacity: 0;
   }
   
   .hamburger.active .bar:nth-child(1) {
       transform: translateY(8px) rotate(45deg);
   }
   
   .hamburger.active .bar:nth-child(3) {
       transform: translateY(-8px) rotate(-45deg);
   }
   
   .nav-links {
       position: fixed;
       left: -100%;
       top: 70px;
       gap: 0;
       flex-direction: column;
       background-color: #0c0c17;
       width: 100%;
       text-align: center;
       transition: 0.3s;
       box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
       padding: 20px 0;
   }
   
   .nav-links.active {
       left: 0;
   }
   
   .nav-links li {
       margin: 10px 0;
   }
   
   .dropdown-content {
       position: static;
       display: none;
       background-color: rgba(21, 21, 40, 0.9);
       box-shadow: none;
       width: 100%;
   }
   
   .dropdown.active .dropdown-content {
       display: block;
   }
   
   .auth-buttons {
       position: fixed;
       bottom: 0;
       left: 0;
       width: 100%;
       background-color: #0c0c17;
       padding: 15px;
       justify-content: center;
       z-index: 999;
       box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
   }
   
   .hero h1 {
       font-size: 2.2rem;
   }
   
   .hero p {
       font-size: 1rem;
   }
   
   .hero-buttons {
       flex-direction: column;
       width: 100%;
   }
   
   .hero-buttons .btn {
       width: 100%;
       text-align: center;
       margin-bottom: 10px;
   }
   
   .feature {
       flex-basis: 100%;
   }
   
   .ferrari-promo {
       position: relative;
       margin: 20px auto 0;
       bottom: auto;
       right: auto;
       max-width: 90%;
   }

   .hero {
       padding-top: 70px;
       margin-top: 0;
       min-height: 100vh;
       height: auto;
   }
   
   .hero-content {
       padding-bottom: 80px;
       z-index: 5;
   }
   
   .nav-links {
       z-index: 10;
   }
   
   .auth-buttons {
       z-index: 11;
   }

   .login-registration-section {
       padding: 60px 0;
   }
   
   .login-registration-section h2 {
       font-size: 2rem;
   }
   
   .screenshot-container {
       flex-direction: column;
   }
   
   .cta-container {
       flex-direction: column;
   }
   
   .cta-container .btn {
       width: 100%;
       margin-bottom: 15px;
       text-align: center;
   }

   .review-header h2 {
       font-size: 2rem;
   }
   
   .review-section h3 {
       font-size: 1.5rem;
       padding: 15px 20px;
   }
   
   .review-content {
       padding: 20px;
   }
   
   .review-content h4 {
       font-size: 1.3rem;
   }
   
   .review-conclusion {
       padding: 30px 20px;
   }
   
   .promo-features-grid {
       grid-template-columns: 1fr;
   }
   
   .withdrawal-info-container {
       grid-template-columns: 1fr;
   }

   .tab-buttons {
       flex-direction: column;
       gap: 10px;
   }
   
   .tab-btn {
       width: 100%;
       text-align: center;
   }

   .footer-links-section {
       grid-template-columns: 1fr;
   }
}

@media (max-width: 480px) {
   .container {
       padding: 0 10px;
   }
   
   .logo {
       width: 140px;
   }
   
   .hero h1 {
       font-size: 1.8rem;
   }
   
   .promotion-badge {
       top: 10px;
       right: 10px;
       padding: 5px 10px;
       font-size: 0.8rem;
   }

   .review-header h2 {
       font-size: 1.7rem;
   }
   
   .review-section h3 {
       font-size: 1.3rem;
   }
   
   .promo-title {
       font-size: 1.8rem;
   }
   
   .promo-subtitle {
       font-size: 1rem;
   }
   
   .value-circle {
       width: 120px;
       height: 120px;
   }
   
   .value-number {
       font-size: 2.5rem;
   }
   
   .claim-button {
       width: 100%;
       padding: 12px 20px;
   }

   .exclusive-bonus-tag {
       right: 50%;
       transform: translateX(50%) translateY(-50%);
   }

   .step {
       flex-direction: column;
   }
   
   .step-number {
       margin-bottom: 15px;
       margin-right: 0;
   }

   .social-buttons {
       flex-wrap: wrap;
       justify-content: center;
   }
}
/* Рейтинг в стиле примера */
.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.rating-stars {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.rating-stars i {
    margin: 0 3px;
}

.rating-score {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-tagline {
    color: var(--gray-text);
    font-size: 1rem;
}

/* Аналогичный стиль для финального рейтинга */
.final-rating {
    margin: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.final-rating .rating-stars {
    color: var(--primary-color);
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.final-rating .rating-stars i {
    margin: 0 3px;
}

.final-rating .rating-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 5px 0;
}

.final-rating .rating-score {
    font-size: 1.3rem;
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .hero {
        padding-top: 100px; /* Erhöhter Abstand von oben */
        margin-top: 0;
        min-height: 100vh;
        height: auto;
    }
    
    .hero-content {
        padding-top: 40px; /* Zusätzlicher Abstand oben */
        padding-bottom: 100px; /* Mehr Platz am unteren Rand */
        z-index: 5;
    }
     .promotion-badge {
        position: relative;
        margin: 40px auto 0; /* Vergrößerter oberer Abstand */
        bottom: auto;
        right: auto;
        max-width: 90%;
        z-index: 4; /* Niedrigerer z-index als Navigation */
    }
}