/* ===========================================
   MODERN HOMEPAGE REDESIGN 2025
   Зберігаємо велику кількість кнопок-оферів
   =========================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gold-gradient: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --accent-color: #667eea;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-radius: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 48px rgba(102, 126, 234, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === BODY & GLOBAL STYLES === */
body {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
}

/* === COMPACT HERO SECTION === */
.g-page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    background: none !important;
    padding: 40px 0 50px;
    position: relative;
    overflow: hidden;
    background-color: #3333333d !important;
}

.g-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.g-page-banner--grid {
    position: relative;
    z-index: 1;

    display: flex !important;
    justify-content: space-between !important;
}

.g-page-banner--grid > .mob-hero-block-entry {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 15;
}

/* === HERO FLEX LAYOUT === */
.hero-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 0;
}

.hero-text-block {
    flex: 0 0 auto;
    text-align: left;
    max-width: 500px;
}

.mob-hero-block-entry h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.mob-hero-block-entry h1 strong {
    background: linear-gradient(90deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-date {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    margin-bottom: 0;
}

.hero-date span {
    opacity: 0.8;
}

/* === HERO CTA BANNER === */
.hero-cta-banner {
    flex: 1 1 auto;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-content {
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.95) 0%, rgba(22, 25, 43, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(102, 126, 234, 0.2) inset;
    position: relative;
    overflow: hidden;
}

.hero-cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-cta-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.cta-offer {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.5px;
}

.cta-bonus {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.hero-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
}

.hero-cta-button::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.5s ease;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-cta-button svg {
    transition: transform 0.3s ease;
}

.hero-cta-button:hover svg {
    transform: translateX(5px);
}

/* Responsive Hero & CTA Banner */
@media (max-width: 1200px) {
    .hero-flex-container {
        gap: 32px;
    }
    
    .hero-text-block {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-flex-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .hero-text-block {
        max-width: 100%;
    }
    
    .hero-cta-banner {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
        gap: 20px;
    }
    
    .cta-offer {
        font-size: 1.5rem;
    }
    
    .cta-bonus {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 767px) {
    .hero-flex-container {
        gap: 24px;
    }
    
    .mob-hero-block-entry h1 {
        font-size: 2rem;
    }
    
    .hero-cta-content {
        padding: 20px 24px;
        border-radius: 16px;
    }
    
    .cta-offer {
        font-size: 1.3rem;
    }
    
    .cta-bonus {
        font-size: 0.95rem;
    }
    
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* === UNIQUE MODERN HEADER === */
.site-header__wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: 
        linear-gradient(135deg, #667eea6f 0%, #764ba281 100%),
        url("../images/ElevenLabs_image_nano-banana-pro_Give me a la..._2025-12-17T15_16_35.png") no-repeat center center / cover !important;
}

.site-header__wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 40%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 60%, 
        transparent 100%);
    animation: headerShine 8s infinite;
    pointer-events: none;
}

.site-header__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.site-header {
    padding: 24px 0;
    position: relative;
    z-index: 1;
    left: 50%;
    translate: -50% 0;
    z-index: 999999;
}

.site-header--row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === LOGO STYLES WITH ANIMATION === */
.site-header__logo {
    flex-shrink: 0;
    position: relative;
}

.site-header__logo::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-header__logo:hover::before {
    opacity: 1;
}

.site-header__logo a {
    display: block;
    transition: var(--transition-smooth);
    position: relative;
}

.site-header__logo a:hover {
    transform: scale(1.08) rotate(-2deg);
}

.site-header__logo img,
.site-header__logo .custom-logo {
    max-height: 65px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.site-header__logo a:hover img,
.site-header__logo a:hover .custom-logo {
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.4));
}

.site-header__logo .site-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === HEADER MENU MODERN STYLES === */
.site-header__menues {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header-menu {
    display: flex;
}

.header-menu .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.header-menu .menu-item {
    position: relative;
}

.header-menu .menu-item > a {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.header-menu .menu-item > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-menu .menu-item > a:hover::before,
.header-menu .menu-item.current-menu-item > a::before {
    opacity: 1;
}

.header-menu .menu-item > a:hover,
.header-menu .menu-item.current-menu-item > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
}

/* === MOBILE MENU BUTTON === */
.g-mob-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.g-mob-menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.g-mob-menu-btn .icon span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* === HEADER BONUS BLOCK === */
.header-bonus-block {
    position: relative;
}

.header-bonus-block__btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.header-bonus-block__btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.header-bonus-block__btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(15deg);
}

.header-bonus-block__btn i {
    width: 24px;
    height: 24px;
}

.header-bonus-block__btn span {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--warning-gradient);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(250, 112, 154, 0.5);
}

/* === HEADER ANIMATION === */
@keyframes headerShine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

/* === RESPONSIVE HEADER === */
@media (max-width: 991px) {
    .site-header__menues {
        display: none;
    }
    
    .g-mob-menu-btn {
        display: flex;
    }
    
    .site-header--row {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .site-header {
        padding: 16px 0;
    }
    
    .site-header__logo img,
    .site-header__logo .custom-logo {
        max-height: 50px;
    }
    
    .site-header__logo .site-title {
        font-size: 1.3rem;
    }
    
    .header-bonus-block__btn {
        width: 45px;
        height: 45px;
    }
    
    .header-bonus-block__btn i {
        width: 20px;
        height: 20px;
    }
}

/* === CASINO CARDS MODERN DESIGN === */
.table-s2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 0px;
    margin: 24px 0 48px;
}

.new-card-item {
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 15px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.new-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.new-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

.new-card-item:hover::before {
    transform: scaleX(1);
}

.new-card-item__mo-grid {
    margin-bottom: 24px;
}

.new-card-item__logo {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 120px; */
    background: #f8f9fa !important;
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.new-card-item__logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.new-card-item__logo img {
    max-width: 100%;
    height: auto;
    transition: var(--transition-smooth);
}

.new-card-item:hover .new-card-item__logo img {
    transform: scale(1.05);
}

.new-card-item__num {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
    z-index: 2;
    border: 3px solid #fff;
}

/* === EXCLUSIVE BONUS BADGE === */
.g-exclusive-bonus {
    display: inline-block;
    background: var(--warning-gradient);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(250, 112, 154, 0.3);
}

/* === BONUS CONTENT === */
.new-card-item__content {
    margin-bottom: 24px;
}

.new-card-item__bonus {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.5;
    min-height: 65px;
    font-weight: 600;
}

.new-card-item__bonus strong {
    color: var(--accent-color);
    font-weight: 800;
    display: block;
    margin-top: 4px;
}

/* === INFO GRID === */
.new-card-item__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.new-card-item__info__item {
    text-align: center;
    padding: 8px;
}

.new-card-item__info__label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    font-weight: 700;
}

.new-card-item__info__value {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 800;
}

@media (max-width: 650px) {
    .new-card-item__info {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .new-card-item {
        padding: 10px !important;
    }
    .new-card-item .new-card-item__info {
        padding: 10px 0 !important;

        display: flex !important;
        flex-direction: row !important;
    }
    .new-card-item .new-card-item__info .new-card-item__info__item {
        padding: 0 !important;
    }
    .new-card-item .new-card-item__info .new-card-item__info__item .new-card-item__info__value {
        font-size: 13px !important;
    }
}

@media (max-width: 1024px) {
    .g-page-banner--grid .hero-text-block h1 {
        font-size: 21px !important;
    }
    .hero-flex-container {
        gap: 10px !important;
    }
    .hero-cta-banner .hero-cta-content {
        padding: 10px 15px;
    }
    .g-page-banner {
        padding-top: 100px !important;
    }
}

header .custom-logo-link img {
    object-fit: cover;
}

/* === КНОПКИ-ОФЕРИ - ГОЛОВНИЙ ЕЛЕМЕНТ === */
.new-card-item__data {
    margin-top: auto;
}

.new-card-item__btn {
    display: block;
    width: 100%;
    padding: 18px 36px;
    background: var(--primary-gradient);
    color: #ffffff !important;
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.new-card-item__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.new-card-item__btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 32px rgba(102, 126, 234, 0.6);
    color: #ffffff !important;
}

.new-card-item__btn:hover::before {
    left: 100%;
}

.new-card-item__btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* === ВАРІАНТИ СТИЛІВ ДЛЯ РІЗНИХ КНОПОК-ОФЕРІВ === */
.new-card-item:nth-child(5n+1) .new-card-item__btn {
    background: var(--primary-gradient);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

.new-card-item:nth-child(5n+1) .new-card-item__btn:hover {
    box-shadow: 0 10px 32px rgba(102, 126, 234, 0.6);
}

.new-card-item:nth-child(5n+2) .new-card-item__btn {
    background: var(--secondary-gradient);
    box-shadow: 0 4px 16px rgba(245, 87, 108, 0.4);
}

.new-card-item:nth-child(5n+2) .new-card-item__btn:hover {
    box-shadow: 0 10px 32px rgba(245, 87, 108, 0.6);
}

.new-card-item:nth-child(5n+3) .new-card-item__btn {
    background: var(--success-gradient);
    box-shadow: 0 4px 16px rgba(79, 172, 254, 0.4);
}

.new-card-item:nth-child(5n+3) .new-card-item__btn:hover {
    box-shadow: 0 10px 32px rgba(79, 172, 254, 0.6);
}

.new-card-item:nth-child(5n+4) .new-card-item__btn {
    background: var(--dark-gradient);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.4);
}

.new-card-item:nth-child(5n+4) .new-card-item__btn:hover {
    box-shadow: 0 10px 32px rgba(44, 62, 80, 0.6);
}

.new-card-item:nth-child(5n+5) .new-card-item__btn {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: var(--text-dark) !important;
    box-shadow: 0 4px 16px rgba(168, 237, 234, 0.4);
}

.new-card-item:nth-child(5n+5) .new-card-item__btn:hover {
    box-shadow: 0 10px 32px rgba(168, 237, 234, 0.6);
    color: var(--text-dark) !important;
}

/* === СПЕЦІАЛЬНІ ЕФЕКТИ ДЛЯ ПЕРШИХ ТРЬОХ ОФЕРІВ === */
.new-card-item:nth-child(1),
.new-card-item:nth-child(2),
.new-card-item:nth-child(3) {
    border: 2px solid var(--accent-color);
}

.new-card-item:nth-child(1) .new-card-item__num {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.7);
    animation: pulse 2s infinite;
}

/* === CASINOS TO AVOID SECTION === */
.avoid-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.avoid-block__item {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 24px;
    border: 2px solid #ff6b6b;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.avoid-block__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.2);
}

.avoid-block__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ffe0e0;
}

.avoid-block__head img,
.avoid-block__head picture {
    max-width: 80px;
    height: auto;
    border-radius: 8px;
}

.avoid-block__head picture img {
    width: 100%;
    height: auto;
}

.avoid-block__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.avoid-block__rating {
    font-size: 0.85rem;
    color: #ff6b6b;
    font-weight: 600;
}

.avoid-block__list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.avoid-block__list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 0.9rem;
}

.avoid-block__list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.avoid-block__link {
    text-align: center;
    margin-top: 40px;
}

.avoid-block__link a {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}

.avoid-block__link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.5);
}

/* === HEADING STYLES === */
h2.wp-block-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 70px 0 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

h2.wp-block-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

/* === MODERN AUTHOR BLOCK === */
.g-author-block {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 48px;
    margin: 70px 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.12),
                0 0 0 1px rgba(102, 126, 234, 0.08) inset;
    border: 1px solid rgba(102, 126, 234, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.g-author-block > * {
    color: #040720 !important;
}

.g-author-block .g-author-block__author_label {
    color: #040720;
}

.g-author-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.g-author-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(102, 126, 234, 0.18),
                0 0 0 1px rgba(102, 126, 234, 0.12) inset;
}

.g-author-block__top {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.g-author-block__photo {
    flex-shrink: 0;
    position: relative;
}

.g-author-block__photo::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.g-author-block__photo:hover::before {
    opacity: 0.2;
}

.g-author-block__photo a {
    display: block;
    position: relative;
}

.g-author-block__photo img,
.g-author-block__photo picture img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffffff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2),
                0 0 0 1px rgba(102, 126, 234, 0.1);
    transition: var(--transition-smooth);
}

.g-author-block__photo:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.3),
                0 0 0 1px rgba(102, 126, 234, 0.15);
}

.g-author-block__author_label {
    font-size: 0.75rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 800;
    background: rgba(102, 126, 234, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 8px;
}

.g-author-block__name {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 8px 0;
    letter-spacing: -0.02em;
}

.g-author-block__desc {
    color: #4a5568;
    font-weight: 600;
    font-size: 1.05rem;
}

.g-author-block__read-more {
    margin-top: 24px;
}

.g-author-block__read-more a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.g-author-block__read-more a::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.5s ease;
}

.g-author-block__read-more a:hover::before {
    left: 100%;
}

.g-author-block__read-more a::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.g-author-block__read-more a:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #ff9d5c 0%, #ff7b45 100%);
}

.g-author-block__read-more a:hover::after {
    transform: translateX(5px);
}

.g-author-block__text {
    color: #2d3748;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .table-s2 {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 991px) {
    .table-s2 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
        margin: 20px 0 40px;
    }
    
    .g-page-banner {
        padding: 35px 0 45px;
    }
    
    .mob-hero-block-entry h1 {
        font-size: 2.2rem;
    }
    
    h2.wp-block-heading {
        font-size: 2.2rem;
    }
    
    .new-card-item {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .table-s2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .avoid-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mob-hero-block-entry h1 {
        font-size: 2.2rem;
    }
    
    h2.wp-block-heading {
        font-size: 1.9rem;
    }
    
    .new-card-item__info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
    }
    
    .g-author-block {
        padding: 36px 28px;
    }
    
    .g-author-block__top {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .g-author-block__photo img,
    .g-author-block__photo picture img {
        width: 90px;
        height: 90px;
    }
    
    .g-author-block__name {
        font-size: 1.6rem;
    }
    
    .g-author-block__read-more a {
        width: 100%;
        justify-content: center;
    }
    
    .g-page-banner {
        padding: 30px 0 40px;
    }
    
    .mob-hero-block-entry h1 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .hero-date {
        font-size: 0.8rem;
    }
    
    .new-card-item__btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-card-item {
    animation: fadeInUp 0.6s ease backwards;
}

.new-card-item:nth-child(1) { animation-delay: 0.1s; }
.new-card-item:nth-child(2) { animation-delay: 0.15s; }
.new-card-item:nth-child(3) { animation-delay: 0.2s; }
.new-card-item:nth-child(4) { animation-delay: 0.25s; }
.new-card-item:nth-child(5) { animation-delay: 0.3s; }
.new-card-item:nth-child(6) { animation-delay: 0.35s; }
.new-card-item:nth-child(7) { animation-delay: 0.4s; }
.new-card-item:nth-child(8) { animation-delay: 0.45s; }
.new-card-item:nth-child(9) { animation-delay: 0.5s; }
.new-card-item:nth-child(10) { animation-delay: 0.55s; }

/* === PULSE ANIMATION FOR TOP OFFERS === */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 24px rgba(255, 215, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.8);
        transform: scale(1.05);
    }
}

/* === GLOW EFFECT === */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 4px 24px rgba(102, 126, 234, 0.6);
    }
}

.new-card-item:first-child {
    animation: fadeInUp 0.6s ease backwards, glow 2s infinite 1s;
}

/* === SMOOTH SCROLL === */
html {
    scroll-behavior: smooth;
}

/* === ACCESSIBILITY === */
.new-card-item__btn:focus,
.avoid-block__link a:focus,
.g-author-block__read-more a:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 3px;
}

/* === PRINT STYLES === */
@media print {
    .new-card-item {
        page-break-inside: avoid;
    }
    
    .new-card-item__btn {
        background: var(--text-dark) !important;
    }
}

/* === ДОДАТКОВІ СТИЛІ ДЛЯ ПОКРАЩЕННЯ === */
.entry-content {
    background: transparent;
}

.prp-content {
    padding: 0;
}

/* === UNIQUE MODERN FOOTER === */
.footer {
    margin-top: 100px;
    background: linear-gradient(180deg, #1a1d2e 0%, #16192b 100%);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0 40px;
}

/* === FOOTER LOGO SECTION === */
.footer .logo {
    margin-bottom: 30px;
}

.footer .logo img {
    max-width: 180px;
    height: auto;
}

.g-footer-cont-text {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    transition: var(--transition-smooth);
}

.g-footer-cont-text:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
}

.g-footer-cont-text__title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.g-footer-cont-text__text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 0.95rem;
}

.g-footer-cont-text__text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.g-footer-cont-text__text a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* === TRUST BADGES WITH MODERN DESIGN === */
.footer-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.footer-logos__item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.footer-logos__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-logos__item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.2);
}

.footer-logos__item:hover::before {
    left: 100%;
}

.footer-logos__item img,
.footer-logos__item picture img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-logos__item:hover img,
.footer-logos__item:hover picture img {
    opacity: 1;
    transform: scale(1.1);
}

/* === DISCLAIMER SECTION === */
.footer-disclamer {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid #ff6b6b;
    border-radius: 12px;
    padding: 24px 30px;
    margin: 40px 0 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-disclamer span {
    font-weight: 800;
    color: #ff6b6b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

/* === COPYRIGHT SECTION === */
.copyright-box {
    background: #0f1117;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* === FOOTER RESPONSIVE === */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 30px;
    }
    
    .footer-logos {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 16px;
    }
    
    .g-footer-cont-text {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .footer {
        margin-top: 60px;
    }
    
    .footer-grid {
        padding: 40px 0 20px;
    }
    
    .footer .logo img {
        max-width: 150px;
    }
    
    .footer-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .footer-logos__item {
        padding: 12px;
    }
    
    .footer-logos__item img,
    .footer-logos__item picture img {
        height: 32px;
    }
    
    .g-footer-cont-text__title {
        font-size: 1.1rem;
    }
    
    .footer-disclamer {
        padding: 20px;
        font-size: 0.85rem;
    }
}

/* === FOOTER ANIMATION === */
@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-grid > * {
    animation: footerFadeIn 0.8s ease backwards;
}

.footer-grid > section:first-child {
    animation-delay: 0.2s;
}

.footer-grid > section:last-child {
    animation-delay: 0.4s;
}new-card-item__info

/* === MODERN SCROLL TO TOP BUTTON === */
.scroll-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 16px;
    cursor: pointer;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    text-decoration: none;
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-top:hover::before {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    border-color: rgba(255, 255, 255, 0.3);
}

.scroll-top i {
    color: #ffffff;
    font-size: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-top:hover i {
    transform: translateY(-3px);
}

.scroll-top span {
    display: none;
}

.showBtn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Pulse animation for scroll button */
@keyframes scrollPulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4),
                    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    }
    50% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.6),
                    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
                    0 0 0 8px rgba(102, 126, 234, 0.1);
    }
}

.scroll-top.showBtn {
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-top:hover {
    animation: none;
}

/* Responsive scroll button */
@media (max-width: 991px) {
    .scroll-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
    
    .scroll-top i {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}

.trigger-mmenu .icon > span:first-of-type {
    margin: 0;
}

/* === MODERN MOBILE MENU FIX === */
.mm-menu {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.mm-panels {
    background: transparent !important;
}

.mm-listview {
    background: transparent !important;
}

/* Hide search field in mobile menu */
.mm-navbar__searchfield,
.mm-searchfield {
    display: none !important;
}

.mm-listitem {
    border-color: rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
}

.mm-listitem a,
.mm-listitem__text,
.mobmenu li a {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 16px 20px !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-decoration: none !important;
}

.mm-listitem:hover,
.mm-listitem:hover .mm-listitem__text,
.mobmenu li:hover a {
    background: rgba(255, 255, 255, 0.15) !important;
    padding-left: 28px !important;
}

.mm-navbar {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 16px !important;
}

.mm-navbar__title {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
}

.mm-btn {
    color: #ffffff !important;
}

.mm-btn_close {
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50% !important;
}

.mm-btn_close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
}

/* Sub-menu styles */
.sub-menu .mm-listitem__text,
.sub-menu .mm-listitem a {
    padding-left: 40px !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.sub-menu .mm-listitem {
    border-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(0, 0, 0, 0.1) !important;
}

.sub-menu .mm-listitem:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Mobile menu items visibility */
.mobmenu li {
    list-style: none !important;
    margin: 0 !important;
}

#menu-main-menu .mm-listitem,
.mobmenu .mm-listitem {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Mobile menu page overlay */
.mm-wrapper_opening .mm-slideout {
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Ensure menu items are clickable */
.mm-listitem a {
    pointer-events: auto !important;
    cursor: pointer !important;
}