:root {
    --topoffers-primary: #ff6b35;
    --topoffers-secondary: #0a0a0a;
    --color-text: #1a1a1a;
    --color-text-light: #666666;
    --color-bg: #fafafa;
    --color-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.2);
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --border-radius: 1rem;
    --border-radius-lg: 1.5rem;
    --transition-speed: 0.4s;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --glass-shadow-hover: 0 12px 48px 0 rgba(31, 38, 135, 0.25);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html.no-js {
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cookie-consent-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-consent-text a {
    color: var(--topoffers-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.5);
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.cookie-consent-text a:hover {
    color: rgba(255, 107, 53, 1);
    border-bottom-color: rgba(255, 107, 53, 1);
}

.cookie-consent-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-smooth);
    font-family: var(--font-primary);
}

.cookie-btn-accept {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(22, 163, 74, 1));
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.5);
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
    
    .cookie-consent-text {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.age-verification-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.4s ease;
}

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

.age-verification-title {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.age-verification-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.age-verification-warning {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-xl);
}

.age-verification-warning a {
    color: var(--topoffers-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.5);
    transition: all var(--transition-speed) ease;
}

.age-verification-warning a:hover {
    color: rgba(255, 107, 53, 1);
    border-bottom-color: rgba(255, 107, 53, 1);
}

.age-verification-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-direction: column;
}

.age-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-smooth);
    font-family: var(--font-primary);
}

.age-btn-confirm {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.age-btn-confirm:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 1), rgba(22, 163, 74, 1));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
}

.age-btn-reject {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-btn-reject:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.age-restriction-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

.age-restriction-box {
    text-align: center;
}

.age-restriction-title {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.95);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.age-restriction-text,
.age-restriction-info,
.age-restriction-help {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.age-restriction-links {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.age-restriction-links li {
    margin-bottom: var(--spacing-sm);
}

.age-restriction-links a {
    color: var(--topoffers-primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 107, 53, 0.5);
    transition: all var(--transition-speed) ease;
    font-size: 1.1rem;
}

.age-restriction-links a:hover {
    color: rgba(255, 107, 53, 1);
    border-bottom-color: rgba(255, 107, 53, 1);
}

.age-restriction-helpline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.age-restriction-helpline strong {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .age-verification-content,
    .age-restriction-content {
        padding: var(--spacing-lg);
        max-width: 95%;
    }
    
    .age-verification-title,
    .age-restriction-title {
        font-size: 1.5rem;
    }
    
    .age-verification-text,
    .age-verification-warning,
    .age-restriction-text,
    .age-restriction-info,
    .age-restriction-help {
        font-size: 0.9rem;
    }
    
    .age-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.screen-reader-text,
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--topoffers-primary);
    color: white;
    padding: 8px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid white;
}

.container,
.wp-block-group__inner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.affiliate-disclosure-bar {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--color-white);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.affiliate-disclosure-bar p {
    margin: 0;
    font-size: 0.875rem;
    text-align: center;
}

.affiliate-disclosure-bar a {
    color: var(--topoffers-primary);
    text-decoration: underline;
}

.site-header,
.topoffers-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.header-inner,
.topoffers-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo,
.site-branding,
.topoffers-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon,
.topoffers-logo-icon {
    font-size: 2rem;
}

.logo-text,
.site-title,
.topoffers-site-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.logo-text:hover,
.site-title:hover {
    letter-spacing: 0.02em;
}

.logo-accent,
.topoffers-accent {
    color: var(--topoffers-primary);
}

.main-nav,
.main-navigation,
.topoffers-navigation {
    position: relative;
}

.mobile-menu-toggle,
.menu-toggle,
.topoffers-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.topoffers-hamburger-line {
    width: 1.5rem;
    height: 2px;
    background-color: var(--topoffers-secondary);
    transition: all var(--transition-speed) ease;
}

.nav-menu,
.menu,
.primary-menu,
.topoffers-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.menu-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all var(--transition-speed) var(--transition-smooth);
    display: inline-block;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--topoffers-primary);
    transition: width var(--transition-speed) ease;
}

.menu-item a:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

.menu-item a:hover::after {
    width: 100%;
}

.site-main,
.topoffers-site-main {
    min-height: 60vh;
}

.hero-section,
.topoffers-hero-section {
    background: transparent;
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.03em;
    transition: all var(--transition-speed) var(--transition-smooth);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title:hover {
    letter-spacing: -0.01em;
    transform: translateY(-2px) scale(1.02);
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn,
.wp-block-button__link {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s var(--transition-smooth);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    transform: translateY(-2px);
}

.listing-section,
.topoffers-listing-section {
    padding: var(--spacing-3xl) 0;
}

.offers-listing {
    max-width: 1200px;
    margin: 0 auto;
}

.offer-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.offer-item:hover {
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.offer-row {
    display: grid;
    grid-template-columns: 60px 180px 1fr 100px 150px;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
}

.offer-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 140, 90, 0.3));
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 53, 0.5);
}

.offer-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-logo {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.casino-logo-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-bonus {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bonus-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.offer-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.score-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-warning);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.score-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-action {
    display: flex;
    justify-content: center;
}

.btn-get-bonus {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 140, 90, 0.9));
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-speed) var(--transition-smooth);
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
}

.btn-get-bonus:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 1), rgba(255, 140, 90, 1));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

.offer-disclaimer-row {
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-disclaimer-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.offer-disclaimer-text a {
    color: rgba(255, 107, 53, 0.9);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .offer-row {
        grid-template-columns: 50px 140px 1fr 90px 140px;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .offer-number {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
    
    .offer-logo {
        width: 120px;
        height: 90px;
    }
    
    .bonus-value {
        font-size: 1.125rem;
    }
    
    .score-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .offer-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
        text-align: center;
    }
    
    .offer-number {
        margin: 0 auto;
    }
    
    .offer-image {
        justify-content: center;
    }
    
    .offer-bonus {
        align-items: center;
    }
    
    .bonus-value {
        font-size: 1.5rem;
    }
    
    .btn-get-bonus {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .offer-disclaimer-row {
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

.comparison-section,
.content-section,
.faq-section,
.topoffers-comparison-section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.section-header h2:hover {
    letter-spacing: 0;
    transform: scale(1.02);
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.section-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.provider-card,
.topoffers-provider-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed) var(--transition-smooth);
    margin-bottom: var(--spacing-lg);
}

.provider-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.provider-card.featured,
.topoffers-featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.5);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.provider-rank,
.topoffers-rank {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rank-badge,
.topoffers-rank-badge {
    font-size: 2rem;
    font-weight: 900;
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
    position: relative;
}

.rank-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.rank-label,
.topoffers-rank-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.provider-logo,
.topoffers-provider-logo {
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
}

.logo-placeholder,
.wp-post-image {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.provider-info,
.topoffers-provider-info {
    padding: var(--spacing-md);
}

.provider-name,
.topoffers-provider-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.provider-rating,
.topoffers-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.stars,
.topoffers-stars {
    color: var(--color-warning);
    font-size: 1.25rem;
}

.rating-score,
.topoffers-rating-score {
    font-weight: 700;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.provider-description {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.provider-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    padding: 0;
}

.provider-features li {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    transition: all var(--transition-speed) var(--transition-smooth);
}

.provider-features li:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.provider-offer,
.topoffers-offer {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(255, 140, 90, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: var(--spacing-md);
    text-align: center;
    color: var(--color-white);
}

.offer-label,
.topoffers-offer-label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.offer-amount,
.topoffers-offer-amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-md);
}

.provider-offer .btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.provider-offer .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.provider-disclaimer {
    padding: var(--spacing-md);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.75rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.provider-disclaimer a {
    color: var(--topoffers-primary);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-sm);
}

.page-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-top: var(--spacing-xl);
    letter-spacing: -0.02em;
}

.page-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: var(--spacing-lg);
}

.page-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.page-content p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.page-content ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

.page-content ul li {
    margin-bottom: var(--spacing-xs);
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.info-box:hover {
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.info-box.affiliate-disclosure {
    border-left: 4px solid rgba(255, 107, 53, 0.6);
    background: rgba(255, 107, 53, 0.08);
}

.info-box.warning-box {
    border-left: 4px solid rgba(245, 158, 11, 0.6);
    background: rgba(245, 158, 11, 0.08);
}

.info-box h4 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.responsible-gaming-links,
.help-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.helpline-text {
    font-weight: 700;
    color: var(--topoffers-secondary);
    margin-top: var(--spacing-md);
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.criteria-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-speed) var(--transition-smooth);
}

.criteria-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow);
}

.criteria-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-item h4 {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.25rem;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.85);
}

.site-footer,
.topoffers-footer,
.topoffers-site-footer {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
}

.footer-main,
.topoffers-footer-main {
    padding: var(--spacing-2xl) 0;
}

.footer-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-left-column,
.footer-right-column {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
}

.footer-main-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-content-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.footer-content-text p {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-content-text strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.footer-support-links {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.footer-support-links li {
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.footer-support-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--topoffers-primary);
    font-weight: 900;
}

.footer-support-links a {
    color: var(--topoffers-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: all var(--transition-speed) ease;
}

.footer-support-links a:hover {
    color: rgba(255, 107, 53, 1);
    border-bottom-color: rgba(255, 107, 53, 0.8);
}

.footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-speed) var(--transition-smooth);
    text-align: center;
}

.footer-legal-links a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.footer-logos-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) var(--transition-smooth);
    text-decoration: none;
}

.footer-logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    display: block;
}

@media (max-width: 1024px) {
    .footer-content-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-logos-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main,
    .topoffers-footer-main {
        padding: var(--spacing-xl) 0;
    }
    
    .footer-left-column,
    .footer-right-column {
        padding: var(--spacing-md);
    }
    
    .footer-main-heading {
        font-size: 1.25rem;
    }
    
    .footer-content-text p {
        font-size: 0.875rem;
    }
    
    .footer-logos-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-legal-links a {
        font-size: 0.875rem;
    }
}

.footer-disclosures,
.topoffers-footer-disclosures {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) 0;
}

.disclosure-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.disclosure-logos span {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-white);
}

.disclosure-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid rgba(255, 107, 53, 0.5);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.disclosure-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(255, 107, 53, 0.8);
}

.disclosure-box h5 {
    margin-top: 0;
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.disclosure-box p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.disclosure-box a {
    color: var(--topoffers-primary);
}

.footer-bottom,
.topoffers-footer-bottom {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md) 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links-inline {
    margin: 0;
}

.footer-links-inline a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

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

.mobile-menu-overlay,
.topoffers-mobile-menu-overlay {
    display: none;
}

@media (min-width: 640px) {
    .criteria-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    html {
        font-size: 17px;
    }
    
    .container,
    .wp-block-group__inner-container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 18px;
    }
    
    .criteria-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle,
    .menu-toggle,
    .topoffers-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .main-navigation,
    .topoffers-navigation {
        position: static;
    }
    
    .nav-menu,
    .menu,
    .primary-menu,
    .topoffers-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(180 112 207);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-left: none;
        border-right: none;
        border-radius: 0;
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        transition: max-height var(--transition-speed) var(--transition-smooth);
        margin: 0;
        padding: 0;
    }
    
    .nav-menu.active,
    .menu.active {
        max-height: 300px;
        padding: var(--spacing-xs) 0;
    }
    
    .menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item a {
        display: block;
        padding: var(--spacing-md) var(--spacing-lg);
        color: rgba(255, 255, 255, 0.95);
        font-size: 1rem;
        text-align: left;
    }
    
    .menu-item a:hover {
        background: rgba(167, 85, 194);
        color: rgba(255, 255, 255, 1);
    }
    
    .menu-item a::after {
        display: none;
    }
    
    .menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(1),
    .topoffers-menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(2),
    .topoffers-menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(3),
    .topoffers-menu-toggle[aria-expanded="true"] .topoffers-hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .topoffers-hamburger-line {
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .header-inner,
    .topoffers-header-inner {
        position: relative;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
