/* Affiliate Disclosure Styles */
.affiliate-disclosure {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2);
}

.affiliate-disclosure-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: #ff6b6b;
}

.affiliate-disclosure-content {
    margin-left: 50px;
}

.affiliate-disclosure h3 {
    color: #d63031;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.affiliate-disclosure p {
    color: #2d3436;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.affiliate-disclosure .disclosure-details {
    font-size: 13px;
    color: #636e72;
    font-style: italic;
}

/* Trust Signals Section */
.trust-signals {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

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

.trust-badge {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-badge-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #00b894;
}

.trust-badge h4 {
    font-size: 16px;
    color: #2d3436;
    margin-bottom: 10px;
}

.trust-badge p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.5;
}

/* Author Bio Section */
.author-bio {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00b894;
}

.author-info h3 {
    color: #2d3436;
    font-size: 22px;
    margin-bottom: 5px;
}

.author-title {
    color: #00b894;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.author-bio-text {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 15px;
}

.author-credentials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.credential-badge {
    background: #f0f3f4;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #2d3436;
    border: 1px solid #dfe6e9;
}

/* Security Badges */
.security-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-top: 40px;
    border-radius: 12px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.security-badge {
    text-align: center;
}

.security-badge img {
    height: 60px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.security-badge span {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

/* Responsible Gaming Banner */
.responsible-gaming {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.responsible-gaming h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.responsible-gaming p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.responsible-links a {
    background: white;
    color: #e74c3c;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.responsible-links a:hover {
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        margin: 0 auto;
    }

    .security-badges {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .affiliate-disclosure-content {
        margin-left: 0;
    }

    .affiliate-disclosure-icon {
        position: static;
        margin-bottom: 10px;
    }
}