:root {
    --accent-color: #379315;
    --bg-color: #F9FAFB;
    --text-color: #333333;
    --gray-light: #E5E7EB;
    --gold-color: #D4AF37;
    --gold-dark: #c19d2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    white-space: nowrap;
    margin-right: 30px;
}

/* Enhanced Navigation Styles - Clean & Spacious */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
    flex: 1;
    min-width: 0;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 2px;
    text-align: center;
    white-space: nowrap;
    min-height: 48px;
}

.nav-menu > li > a:hover {
    color: var(--accent-color);
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

/* Dropdown Arrow */
.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #f1f3f4;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    flex: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: var(--accent-color);
    border-left-color: var(--accent-color);
    padding-left: 24px;
}

/* Ensure equal width for all items */
.nav-menu > li {
    flex: 1;
    text-align: center;
}

.nav-menu > li > a {
    width: 100%;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--accent-color);
    cursor: pointer;
    padding: 8px 12px;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn.active {
    transform: rotate(90deg);
}

.header-tagline {
    background-color: var(--gray-light);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

/* Author Info */
.author-info {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-left: 4px solid var(--accent-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
}

.author-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    flex-shrink: 0;
}

.author-details h2 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.author-details p {
    margin-bottom: 10px;
}

/* Casino Cards */
.casinos-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.casino-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    animation: fadeInUp 0.5s ease-out;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.casino-logo {
    width: 120px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-right: 1px solid #E5E7EB;
}

.casino-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.casino-logo-placeholder {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}

.accent-bar {
    width: 6px;
    background-color: var(--accent-color);
    flex-shrink: 0;
}

.casino-main {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.casino-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.casino-name a {
    color: var(--text-color);
    text-decoration: none;
}

.casino-name a:hover {
    color: var(--accent-color);
}

.casino-rating {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.casino-bonus {
    text-align: right;
    min-width: 200px;
}

.bonus-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.offer-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
    text-align: center;
    flex: 1;
}

.offer-button:hover {
    background-color: var(--gold-dark);
}

.review-button {
    display: inline-block;
    background-color: #6b7280;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
    text-align: center;
    flex: 1;
}

.review-button:hover {
    background-color: #4b5563;
}

.casino-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.detail-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.detail-item p {
    font-size: 14px;
    color: #666;
}

.currency-link, .game-link {
    color: #666;
    text-decoration: none;
    font-size: 13px;
}

.currency-link:hover, .game-link:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.casino-review {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.casino-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
    margin-top: auto;
}

.similar-casinos {
    text-align: right;
}

.similar-casinos a {
    color: var(--accent-color);
    text-decoration: none;
    margin-left: 10px;
}

.similar-casinos a:hover {
    text-decoration: underline;
}

/* Content Sections */
.content-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #333333;
    border-bottom: 3px solid var(--gold-color);
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 24px;
    margin: 35px 0 20px;
    color: #333333;
    border-left: 4px solid var(--gold-color);
    padding-left: 15px;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
    font-size: 16px;
}

.content-section strong {
    color: #333;
    font-weight: 600;
}

.content-section em {
    color: var(--gold-color);
    font-style: italic;
}

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.content-section li strong {
    color: #333;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 14px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.content-section table thead {
    background-color: #f8f9fa;
}

.content-section table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--gold-color);
}

.content-section table td {
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
    color: #666;
}

.content-section table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.content-section table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.content-feature-list {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-left: 4px solid var(--gold-color);
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.content-feature-list li {
    margin-bottom: 15px;
    font-size: 16px;
}

.content-highlight {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.content-highlight h4 {
    color: #0369a1;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.content-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #ef4444;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.content-warning strong {
    color: #dc2626;
}

.list-decimal {
    list-style-type: decimal;
    padding-left: 35px;
}

.list-decimal li {
    margin-bottom: 15px;
    font-size: 16px;
}

.currency-badge {
    display: inline-block;
    background-color: var(--gold-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
}

.internal-link {
    color: var(--accent-color);
    text-decoration: none;
}

.internal-link:hover {
    text-decoration: underline;
}

.keyword-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.keyword-tag {
    background-color: var(--gray-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

/* Trust Bar */
.trust-bar {
    background-color: white;
    padding: 30px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 20px;
}

.trust-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333333;
    border-bottom: 3px solid var(--gold-color);
    padding-bottom: 10px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    background-color: #f8f9fa;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    margin: 0;
    border-bottom: 1px solid transparent;
    position: relative;
    transition: background-color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background-color: #f1f3f4;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: #f1f3f4;
    border-bottom: 1px solid var(--gray-light);
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 5000px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
    font-size: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
    font-size: 15px;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

.faq-answer table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.faq-answer table thead {
    background-color: #f8f9fa;
}

.faq-answer table th {
    padding: 12px 10px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid var(--gold-color);
}

.faq-answer table td {
    padding: 10px;
    border-bottom: 1px solid #E5E7EB;
    color: #666;
}

.faq-answer table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.faq-answer table tbody tr:hover {
    background-color: #f8f9fa;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 50px 0;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.newsletter p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.newsletter-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: var(--gold-dark);
}

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #cbd5e0;
    font-size: 20px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
    font-size: 14px;
}

.warning-text {
    margin-top: 10px;
    font-size: 12px;
}

/* Casino Comparison Table */
.casino-comparison-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.casino-comparison-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

.table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.casino-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 900px;
}

.casino-comparison-table thead {
    background-color: #f8f9fa;
    color: #333;
}

.casino-comparison-table th {
    padding: 15px 12px;
    text-align: left;
    border-bottom: 2px solid var(--gold-color);
    font-weight: 600;
    color: #333;
}

.casino-comparison-table th:nth-child(3),
.casino-comparison-table th:nth-child(4),
.casino-comparison-table th:nth-child(5),
.casino-comparison-table th:nth-child(6),
.casino-comparison-table th:nth-child(7),
.casino-comparison-table th:nth-child(8) {
    text-align: center;
}

.casino-comparison-table td {
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
    color: #666;
    vertical-align: middle;
}

.casino-comparison-table td:nth-child(3),
.casino-comparison-table td:nth-child(4),
.casino-comparison-table td:nth-child(5),
.casino-comparison-table td:nth-child(6),
.casino-comparison-table td:nth-child(7),
.casino-comparison-table td:nth-child(8) {
    text-align: center;
}

.casino-comparison-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.casino-comparison-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

/* Casino Logo Cell */
.casino-logo-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px;
}

.casino-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 4px;
    border: 1px solid #E5E7EB;
}

.casino-logo-placeholder-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    line-height: 1.1;
}

.casino-name-compact {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.casino-name-compact a {
    color: #333;
    text-decoration: none;
}

.casino-name-compact a:hover {
    color: var(--gold-color);
}

/* Rating Stars */
.rating-stars {
    color: var(--gold-color);
    font-weight: 600;
    font-size: 13px;
}

/* No Deposit Indicators */
.no-deposit-yes {
    color: #22c55e;
    font-weight: 600;
}

.no-deposit-no {
    color: #ef4444;
    font-weight: 600;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 120px;
}

.table-review-button {
    background-color: #6b7280;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    transition: background-color 0.3s;
    display: block;
}

.table-review-button:hover {
    background-color: #4b5563;
}

.table-play-button {
    background-color: var(--gold-color);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-align: center;
    transition: background-color 0.3s;
    display: block;
}

.table-play-button:hover {
    background-color: var(--gold-dark);
}

/* Legend */
.legend {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    border-left: 4px solid var(--gold-color);
}

.legend strong {
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.legend ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.legend li {
    margin-bottom: 5px;
    color: #666;
}

/* Bonus Comparison Table */
.bonus-comparison-section {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.bonus-comparison-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

.bonus-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.bonus-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

.bonus-comparison-table thead {
    background-color: #fefce8;
    color: #333;
}

.bonus-comparison-table th {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid var(--gold-color);
    font-weight: 600;
    color: #333;
}

.bonus-comparison-table th:nth-child(2),
.bonus-comparison-table th:nth-child(3),
.bonus-comparison-table th:nth-child(4),
.bonus-comparison-table th:nth-child(5),
.bonus-comparison-table th:nth-child(6) {
    text-align: center;
}

.bonus-comparison-table td {
    padding: 12px;
    border-bottom: 1px solid #E5E7EB;
    color: #666;
}

.bonus-comparison-table td:nth-child(1) {
    font-weight: 600;
}

.bonus-comparison-table td:nth-child(2),
.bonus-comparison-table td:nth-child(3),
.bonus-comparison-table td:nth-child(4),
.bonus-comparison-table td:nth-child(5),
.bonus-comparison-table td:nth-child(6) {
    text-align: center;
}

.bonus-comparison-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.bonus-comparison-table tbody tr:hover {
    background-color: #fefce8;
    transition: background-color 0.3s ease;
}

.bonus-code {
    background-color: var(--gold-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    font-size: 12px;
}

.no-deposit-badge {
    background-color: #22c55e;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
    margin-left: 5px;
}

.wagering-low {
    color: #22c55e;
    font-weight: 600;
}

.wagering-medium {
    color: #eab308;
    font-weight: 600;
}

.wagering-high {
    color: #ef4444;
    font-weight: 600;
}

.no-min-deposit {
    color: #22c55e;
    font-weight: 600;
}

.bonus-cta-button {
    background-color: var(--gold-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    display: inline-block;
    margin-top: 5px;
    transition: background-color 0.3s ease;
}

.bonus-cta-button:hover {
    background-color: var(--gold-dark);
}

.bonus-legend {
    margin-top: 20px;
    padding: 15px;
    background-color: #fefce8;
    border-radius: 8px;
    font-size: 14px;
    border-left: 4px solid var(--gold-color);
}

.bonus-legend strong {
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.bonus-legend ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.bonus-legend li {
    margin-bottom: 5px;
    color: #666;
}

/* Bonus Badge Styles */
.welcome-badge {
    background-color: #3b82f6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.vip-badge {
    background-color: #8b5cf6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

/* Center badges in table cells */
.bonus-comparison-table td:nth-child(2) {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casino-card:nth-child(2) { animation-delay: 0.1s; }
.casino-card:nth-child(3) { animation-delay: 0.2s; }
.casino-card:nth-child(4) { animation-delay: 0.3s; }
.casino-card:nth-child(5) { animation-delay: 0.4s; }
.casino-card:nth-child(6) { animation-delay: 0.5s; }
.casino-card:nth-child(7) { animation-delay: 0.6s; }
.casino-card:nth-child(8) { animation-delay: 0.7s; }
.casino-card:nth-child(9) { animation-delay: 0.8s; }
.casino-card:nth-child(10) { animation-delay: 0.9s; }

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        gap: 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f1f3f4;
        flex: none;
    }

    .nav-menu > li > a {
        padding: 16px 20px;
        border-radius: 0;
        font-size: 16px;
        justify-content: space-between;
        margin: 0;
        text-align: left;
    }

    /* Mobile Dropdown */
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background-color: #fafafa;
        min-width: auto;
        left: auto;
        transform: none !important;
    }

    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 14px;
        border-bottom: 1px solid #f1f3f4;
        border-left: none;
    }

    .dropdown-menu a:hover {
        padding-left: 44px;
        border-left: none;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .casino-card {
        flex-direction: column;
    }

    .casino-logo {
        width: 100%;
        padding: 15px;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
    }

    .casino-logo img {
        max-height: 50px;
    }

    .casino-header {
        flex-direction: column;
    }

    .casino-bonus {
        text-align: left;
        margin-top: 15px;
        min-width: auto;
        width: 100%;
    }

    .button-group {
        justify-content: flex-start;
    }

    .casino-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .similar-casinos {
        text-align: left;
        margin-top: 10px;
    }

    .trust-items {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter-button {
        border-radius: 4px;
        padding: 12px;
    }

    .casino-comparison-section {
        padding: 20px;
        margin: 20px 0;
    }

    .casino-comparison-section h2 {
        font-size: 24px;
    }

    .casino-comparison-table {
        font-size: 12px;
    }

    .casino-comparison-table th,
    .casino-comparison-table td {
        padding: 10px 8px;
    }

    .table-container {
        border-radius: 6px;
    }

    .casino-logo-cell {
        min-width: 150px;
    }

    .casino-logo-small,
    .casino-logo-placeholder-small {
        width: 32px;
        height: 32px;
    }

    .action-buttons {
        min-width: 100px;
    }

    .table-review-button,
    .table-play-button {
        font-size: 10px;
        padding: 5px 8px;
    }

    .bonus-comparison-section {
        padding: 20px;
        margin: 20px 0;
    }

    .bonus-comparison-section h2 {
        font-size: 24px;
    }

    .bonus-comparison-table {
        font-size: 12px;
    }

    .bonus-comparison-table th,
    .bonus-comparison-table td {
        padding: 8px 6px;
    }

    .bonus-table-container {
        border-radius: 6px;
    }

    .bonus-code {
        font-size: 10px;
        padding: 3px 6px;
    }

    .no-deposit-badge,
    .welcome-badge,
    .vip-badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .content-section {
        padding: 25px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section p,
    .content-section li {
        font-size: 15px;
    }

    .content-feature-list,
    .content-highlight,
    .content-warning {
        padding: 20px;
    }

    .faq-section {
        padding: 25px;
    }

    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 15px;
        font-size: 16px;
        padding-right: 40px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 20px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }

    .faq-answer table {
        font-size: 12px;
    }

    .faq-answer table th,
    .faq-answer table td {
        padding: 8px 6px;
    }
}

@media (max-width: 480px) {
    .casino-main {
        padding: 20px;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .offer-button,
    .review-button {
        width: 100%;
    }

    .casino-details {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .casino-comparison-section {
        padding: 15px;
    }

    .casino-comparison-section h2 {
        font-size: 20px;
    }

    .casino-comparison-table {
        font-size: 11px;
        min-width: 850px;
    }

    .legend {
        font-size: 12px;
        padding: 12px;
    }

    .bonus-comparison-section {
        padding: 15px;
    }

    .bonus-comparison-section h2 {
        font-size: 20px;
    }

    .bonus-comparison-table {
        font-size: 11px;
        min-width: 700px;
    }

    .bonus-legend {
        font-size: 12px;
        padding: 12px;
    }

    .content-section {
        padding: 20px;
    }

    .content-section h2 {
        font-size: 24px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section p,
    .content-section li {
        font-size: 14px;
    }

    .content-section table {
        font-size: 12px;
    }

    .content-section table th,
    .content-section table td {
        padding: 8px 6px;
    }

    .faq-section {
        padding: 20px;
    }

    .faq-section h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 15px;
        padding: 12px;
        padding-right: 35px;
    }

    .faq-question::after {
        right: 12px;
        font-size: 18px;
    }

    .faq-item.active .faq-answer {
        padding: 12px;
    }

    .faq-answer ul,
    .faq-answer ol {
        padding-left: 20px;
    }

    .faq-answer table {
        font-size: 11px;
    }
}

/* Desktop hover improvements */
@media (min-width: 769px) {
    .nav-menu > li > a {
        margin: 0 4px;
    }

    .dropdown-menu {
        min-width: 200px;
    }
}

/* Fix for dropdown positioning */
.dropdown {
    display: flex;
    justify-content: center;
}

/* Prevent text overflow */
.nav-menu > li > a span {
    flex: 1;
    text-align: center;
}

/* Improved Footer Styles */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

/* Legal Section */
.footer-legal-section {
    border-top: 1px solid #4a5568;
    border-bottom: 1px solid #4a5568;
    padding: 20px 0;
    margin-bottom: 20px;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.legal-links span {
    color: #718096;
    font-size: 12px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #e2e8f0;
}

.trust-icon {
    font-size: 14px;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
}

.footer-copyright {
    margin-bottom: 15px;
}

.footer-copyright p {
    color: #cbd5e0;
    font-size: 14px;
    margin-bottom: 5px;
}

.warning-text {
    font-size: 12px !important;
    color: #e53e3e !important;
}

.warning-text a {
    color: #fc8181 !important;
    text-decoration: underline;
}

.warning-text a:hover {
    color: #fed7d7 !important;
}

.footer-disclaimer {
    background: rgba(234, 179, 8, 0.1);
    border-left: 3px solid #ecc94b;
    padding: 10px 15px;
    border-radius: 5px;
}

.footer-disclaimer p {
    color: #e2e8f0;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

.footer-disclaimer strong {
    color: #f6e05e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
}


/* Simple Sticky Bottom Banner */
.sticky-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent-color);
    z-index: 1000;
    max-width: 380px;
    animation: slideInUp 0.5s ease-out;
}

.banner-content {
    position: relative;
    padding: 15px;
}

.banner-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #f1f3f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.banner-close:hover {
    background: #e5e7eb;
    color: #333;
}

.banner-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-color), var(--gold-dark));
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.banner-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
}

.banner-logo {
    flex-shrink: 0;
    width: 50px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    padding: 4px;
}

.banner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.banner-info {
    flex-grow: 1;
}

.banner-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.banner-info p {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 4px;
}

.banner-rating {
    font-size: 12px;
    color: var(--gold-color);
    font-weight: 600;
}

.banner-cta {
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.banner-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(55, 147, 21, 0.3);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .sticky-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        border-radius: 8px;
    }
    
    .banner-content {
        padding: 8px 10px;
    }
    
    .banner-badge {
        top: -8px;
        padding: 2px 12px;
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    
    .banner-close {
        top: 4px;
        right: 6px;
        width: 20px;
        height: 20px;
        font-size: 14px;
    }
    
    .banner-main {
        gap: 8px;
        margin-top: 2px;
    }
    
    .banner-logo {
        width: 35px;
        height: 28px;
        padding: 2px;
    }
    
    .banner-info h4 {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .banner-info p {
        font-size: 11px;
        margin-bottom: 2px;
    }
    
    .banner-rating {
        font-size: 10px;
    }
    
    .banner-cta {
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 4px;
    }
}

@media (max-width: 480px) {
    .sticky-banner {
        bottom: 5px;
        right: 5px;
        left: 5px;
    }
    
    .banner-content {
        padding: 6px 8px;
    }
    
    .banner-main {
        gap: 6px;
    }
    
    .banner-logo {
        width: 30px;
        height: 24px;
    }
    
    .banner-info h4 {
        font-size: 12px;
    }
    
    .banner-info p {
        font-size: 10px;
    }
    
    .banner-cta {
        padding: 5px 8px;
        font-size: 10px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .sticky-banner {
        bottom: 3px;
        right: 3px;
        left: 3px;
    }
    
    .banner-content {
        padding: 5px;
    }
    
    .banner-main {
        gap: 4px;
    }
    
    .banner-logo {
        width: 25px;
        height: 20px;
    }
    
    .banner-info h4 {
        font-size: 11px;
    }
    
    .banner-info p {
        font-size: 9px;
    }
    
    .banner-rating {
        font-size: 9px;
    }
    
    .banner-cta {
        padding: 4px 6px;
        font-size: 9px;
    }
    
    .banner-badge {
        padding: 1px 8px;
        font-size: 8px;
    }
    
    .banner-close {
        width: 16px;
        height: 16px;
        font-size: 12px;
        top: 2px;
        right: 4px;
    }
}

/* Trust Note Style */
.trust-note {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-left: 4px solid #0ea5e9;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    color: #0369a1;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.1);
}

.trust-note::before {
    content: "⚡";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid #0ea5e9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.trust-note strong {
    color: #0369a1;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.trust-note a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #0891b2;
    transition: all 0.3s ease;
}

.trust-note a:hover {
    color: #0c4a6e;
    border-bottom-color: #0c4a6e;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trust-note {
        padding: 16px;
        margin: 20px 0;
        font-size: 14px;
    }
    
    .trust-note::before {
        left: -10px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .trust-note strong {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .trust-note {
        padding: 14px;
        margin: 15px 0;
        font-size: 13px;
    }
    
    .trust-note::before {
        left: -8px;
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
    
    .trust-note strong {
        font-size: 14px;
    }
}

/* Comparison Note Style */
.comparison-note {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border: 1px solid #fde047;
    border-left: 4px solid var(--gold-color);
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    color: #854d0e;
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.comparison-note::before {
    content: "📊";
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid var(--gold-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.comparison-note strong {
    color: #854d0e;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.comparison-note em {
    color: #a16207;
    font-style: italic;
    font-weight: 500;
}

.comparison-note a {
    color: #ca8a04;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed #ca8a04;
    transition: all 0.3s ease;
}

.comparison-note a:hover {
    color: #854d0e;
    border-bottom-color: #854d0e;
}

.comparison-note ul {
    margin: 10px 0 10px 20px;
    padding: 0;
}

.comparison-note li {
    margin-bottom: 6px;
    position: relative;
    padding-left: 5px;
}

.comparison-note li::before {
    content: "•";
    color: var(--gold-color);
    font-weight: bold;
    position: absolute;
    left: -12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-note {
        padding: 16px;
        margin: 20px 0;
        font-size: 14px;
    }
    
    .comparison-note::before {
        left: -10px;
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
    .comparison-note strong {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .comparison-note {
        padding: 14px;
        margin: 15px 0;
        font-size: 13px;
    }
    
    .comparison-note::before {
        left: -8px;
        width: 16px;
        height: 16px;
        font-size: 11px;
    }
    
    .comparison-note strong {
        font-size: 14px;
    }
    
    .comparison-note ul {
        margin-left: 16px;
    }
}


.author-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    padding: 20px;
    margin: 30px 0;
    border-top: 3px solid #008755;
}

.author-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.author-avatar-container {
    margin-right: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #008755;
}

.author-basic-info {
    flex: 1;
}

.author-name {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #202630;
}

.author-title {
    margin: 0 0 8px 0;
    color: #666;
    font-size: 14px;
}

.author-experience {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #008755;
}

.author-experience span:nth-child(2) {
    color: #ccc;
}

.author-verification {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 15px;
}

.verification-text {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.verification-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.verification-tag {
    background-color: #e8f5e9;
    color: #008755;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #c8e6c9;
}

/* Responsive */
@media (max-width: 480px) {
    .author-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-avatar-container {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .author-experience {
        justify-content: center;
    }
    
    .verification-tags {
        justify-content: center;
    }
}