:root {
    --primary-color: #FFFFFF;
    --secondary-color: #8B5CF6;
    --accent-color: #F59E0B;
    --bg-color: #0F172A;
    --bg-offer: #1E293B;
    --add-color: #10B981;
    --gradient-1: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #3B82F6 100%);
    --gradient-2: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --gradient-3: linear-gradient(135deg, #10B981 0%, #06B6D4 100%);
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-glow-hover: 0 0 50px rgba(139, 92, 246, 0.5);
}
@font-face {
    font-family: "Teachers";
    src: url("../assets/font/Teachers-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
*,
*::after,
*::before {
    box-sizing: border-box;
    border: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

body {
    font-family: 'Teachers', sans-serif;
    background: var(--bg-color) url("../assets/images/bg.png") no-repeat center/cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.container {
    max-width: 1110px;
    margin: 0 auto;                                                                                                                                     
}

.header {
    padding: 60px 0 48px 0;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.header-notice {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(239, 68, 68, 0.15) 100%);
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 32px;
    line-height: 1.6;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
    position: relative;
    z-index: 1;
}

.header h1 {
    font-weight: 800;
    font-size: 64px;
    text-align: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.header h2 {
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}



.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.offer {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
    padding: 24px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 28px;
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.offer::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 2px;
    background: var(--gradient-1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.offer:hover::before {
    opacity: 1;
}

.offer:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-glow-hover), 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
}

.offer:hover::after {
    opacity: 0.8;
}

.offer__left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 40%;
}

.offer__img {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240, 244, 248, 0.98) 0%, rgba(240, 244, 248, 0.92) 100%);
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.offer__img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.offer__img:hover::after {
    left: 100%;
}

.offer__img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(0, 217, 255, 0.3), inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.offer__img img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.offer__img img[src*="assets/casinos/"] {
    filter: brightness(0);
}

.offer__reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.2);
}

.offer__reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
    transition: left 0.5s ease;
}

.offer__reviews:hover::before {
    left: 100%;
}

.offer__reviews:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(99, 102, 241, 0.15));
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.offer__reviews img {
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 217, 255, 0.4));
    position: relative;
    z-index: 1;
}

.offer__reviews:hover img {
    filter: drop-shadow(0 4px 12px rgba(0, 217, 255, 0.6));
    transform: scale(1.15) rotate(2deg);
}

.offer__reviews p {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 217, 255, 0.3);
}

.offer__rate {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--add-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.2);
}

.offer__rate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    transition: left 0.5s ease;
}

.offer__rate:hover::before {
    left: 100%;
}

.offer__rate:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.15));
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.offer__rate img {
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(123, 255, 0, 0.4));
    animation: starPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.offer__rate:hover img {
    filter: drop-shadow(0 4px 12px rgba(123, 255, 0, 0.6));
    transform: scale(1.2) rotate(10deg);
    animation: none;
    opacity: 1;
}

.offer__rate p {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(123, 255, 0, 0.3);
}

@keyframes starPulse {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 2px 4px rgba(123, 255, 0, 0.3));
    }
    50% {
        opacity: 0.85;
        filter: drop-shadow(0 3px 6px rgba(123, 255, 0, 0.4));
    }
}

.offer__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 60%;
}

.offer__fs {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.offer__fs::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.offer__fs p {
    font-weight: 900;
    font-size: 52px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F59E0B 50%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
    letter-spacing: -2px;
    font-family: 'Teachers', sans-serif;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}


.offer__bonus {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.offer__bonus p:first-child {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary-color);
}

.offer__bonus p:last-child {
    font-family: 'Teachers', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary-color);
}

.offer__buttons {
    display: flex;
    justify-content: space-between;
}

.offer__button {
    background: var(--gradient-1);
    background-size: 200% 200%;
    color: var(--primary-color);
    padding: 18px 36px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Teachers', sans-serif;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer__button::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.6s ease;
}

.offer__button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: var(--gradient-3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offer__button:hover::before {
    left: 100%;
}

.offer__button:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--shadow-glow-hover), 0 12px 40px rgba(139, 92, 246, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.offer__button:hover::after {
    opacity: 1;
}

.offer__button:active {
    transform: translateY(-1px) scale(0.98);
}

.offer__arrow {
    background: var(--gradient-2);
    width: 64px;
    height: 64px;
    padding: 16px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.offer__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    border-radius: 50%;
}

.offer__arrow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    z-index: 0;
}

.offer__arrow:hover::before {
    width: 200%;
    height: 200%;
}

.offer__arrow:hover::after {
    opacity: 0.4;
}

.offer__arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.offer__arrow:hover {
    opacity: 1;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transform: scale(1.12) rotate(45deg);
    background: var(--gradient-3);
}

.offer__arrow:hover img {
    transform: translateX(5px) translateY(-2px) scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

/* footer */
.footer {
    padding: 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, var(--bg-color) 5%, rgba(30, 41, 59, 0.95) 100%);
    margin-top: 64px;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--gradient-end), var(--add-color), transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(123, 255, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: footerPulse 4s ease-in-out infinite;
}

@keyframes footerPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.footer .container {
    padding: 48px 24px 32px 24px;
    position: relative;
    z-index: 1;
}

.footer__wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 0;
    gap: 32px;
}
.footer__disclaimer {
    grid-area: 1 / 1 / 2 / 2;
    padding: 28px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 1), rgba(15, 23, 42, 1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: none;               /* no blur */
    transition: none;
    width: 100%;
    box-sizing: border-box;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

.footer__disclaimer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: none;               /* убрал размытие-подсветку */
    transition: none;
}

.footer__disclaimer:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: none;               /* тоже вырезал glow */
}

.footer__disclaimer:hover::before {
    left: -100%;                    /* отключено движение слоя */
}

.footer__disclaimer h3 {
    font-weight: 700;
    font-size: 18px;
    background: none;
    color: var(--secondary-color);  /* прямой цвет без автоматического blur-эффекта */
    -webkit-text-fill-color: var(--secondary-color);
    text-align: left;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    text-shadow: none !important;   /* убрал размытие */
    filter: none !important;
}

.footer__disclaimer p {
    font-weight: 400;
    font-size: 13px;
    line-height: 22px;
    color: var(--primary-color);
    margin-top: 0;
    position: relative;
    z-index: 1;
    filter: none !important;
    text-shadow: none !important;
}

.footer__gambling {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.footer__gambling::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(123, 255, 0, 0.05), transparent);
    transition: right 0.8s ease;
}

.footer__gambling:hover::before {
    right: 100%;
}

.footer__gambling:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.footer__gambling h4 {
    font-weight: 600;
    font-size: 13px;
    line-height: 20px;
    color: var(--primary-color);
    opacity: 0.85;
    text-align: center;
    padding: 12px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

.footer__gambling-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
    position: relative;
    z-index: 1;
  
        .tn-age-badge {
          display: flex;
          align-items: center;
          justify-content: center;
          min-width: 70px;
          height: 70px;
          padding: 10px;
          background: linear-gradient(135deg, var(--accent-color), #F97316, var(--accent-color));
          background-size: 200% 200%;
          border: 3px solid rgba(255, 255, 255, 0.3);
          clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
          color: var(--primary-color);
          font-weight: 800;
          font-size: 20px;
          position: relative;
          overflow: hidden;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
          z-index: 1;
          animation: badgeGradient 3s ease infinite;
        }

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

        .tn-age-badge > * {
          position: relative;
          z-index: 2;
          text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .tn-age-badge::before {
          content: '';
          position: absolute;
          top: -50%;
          left: -50%;
          width: 200%;
          height: 200%;
          background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
          animation: badgeShine 4s ease-in-out infinite;
        }

        .tn-age-badge::after {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
          animation: badgeSweep 2s ease-in-out infinite;
        }

        @keyframes badgeSweep {
          0% {
            transform: translateX(-100%) translateY(-100%);
          }
          100% {
            transform: translateX(100%) translateY(100%);
          }
        }

        .tn-age-badge:hover {
          transform: scale(1.1) rotate(5deg);
          box-shadow: 0 8px 32px rgba(245, 158, 11, 0.7), inset 0 2px 4px rgba(255, 255, 255, 0.3);
          border-color: rgba(255, 255, 255, 0.5);
          clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
        }

        @keyframes badgeShine {
          0%, 100% {
            transform: translate(-50%, -50%) rotate(0deg);
            opacity: 0.5;
          }
          50% {
            transform: translate(-50%, -50%) rotate(180deg);
            opacity: 1;
          }
        }
  
        a {
          max-width: 120px;
          padding: 14px;
          background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(16, 185, 129, 0.1));
          border: 2px solid rgba(139, 92, 246, 0.35);
          border-radius: 16px;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;
          transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
          position: relative;
          overflow: hidden;
          backdrop-filter: blur(5px);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);

          &::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.3), transparent);
            transition: left 0.6s ease;
          }

          &::after {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, var(--secondary-color), var(--gradient-end), var(--add-color));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
          }

          &:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(16, 185, 129, 0.22));
            border-color: rgba(139, 92, 246, 0.7);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
          }

          &:hover::before {
            left: 100%;
          }

          &:hover::after {
            opacity: 1;
          }

          img {
            width: 100%;
            max-height: 32px;
            height: auto;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(1) contrast(1) drop-shadow(0 2px 4px rgba(139, 92, 246, 0.3));
            position: relative;
            z-index: 1;
          }

          &:hover img {
            filter: brightness(1.15) contrast(1.15) drop-shadow(0 4px 8px rgba(139, 92, 246, 0.5));
            transform: scale(1.1) rotate(2deg);
          }
        }
      }
    }
  
    .footer__copyright {
      grid-area: 2 / 1 / 3 / 3;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 2px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--secondary-color), var(--gradient-end), var(--add-color), transparent) 1;
      padding-top: 32px;
      margin-top: 32px;
      font-weight: 500;
      font-size: 15px;
      line-height: 24px;
      color: var(--primary-color);
      position: relative;
    }

    .footer__copyright::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 2px;
      background: linear-gradient(90deg, var(--secondary-color), var(--gradient-end), var(--add-color));
      border-radius: 2px;
    }

    .footer__copyright nav ul {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .footer__copyright nav ul li {
      position: relative;
    }

    .footer__copyright nav ul li a {
      color: var(--primary-color);
      font-weight: 500;
      font-size: 15px;
      padding: 8px 0;
      position: relative;
      transition: all 0.3s ease;
      opacity: 0.85;
    }

    .footer__copyright nav ul li a::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--secondary-color), var(--gradient-end), var(--add-color));
      transition: width 0.3s ease;
    }

    .footer__copyright nav ul li a:hover {
      opacity: 1;
      color: var(--secondary-color);
      text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    }

    .footer__copyright nav ul li a:hover::before {
      width: 100%;
    }

    .footer__copyright p {
      color: var(--primary-color);
      opacity: 0.8;
      font-size: 14px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--gradient-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }
}
/* Age Verification Modal */
.agegate-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.agegate-backdrop.is-visible {
    display: flex;
}

.agegate-modal {
    width: 100%;
    max-width: 560px;
    background: var(--gradient-1);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.5);
    padding: 32px 28px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.agegate-title {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--bg-offer);
}

.agegate-text {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.agegate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.agegate-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    transition: .3s;
    color: var(--primary-color);
}

.agegate-btn--yes {
    background: var(--gradient-3);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.agegate-btn--no {
    background: var(--gradient-2);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.agegate-btn:hover {
    transform: translateY(-1px);
}

.agegate-error {
    margin-top: 14px;
    color: var(--accent-color);
    font-weight: 800;
    display: none;
}

.agegate-error.is-visible {
    display: block;
}

/* Pages (Privacy Policy, Terms, Responsible Gaming) */
.policy-page {
    padding: 40px 0 64px 0;
}

.policy-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.policy-header {
    text-align: center;
    margin-bottom: 32px;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.back-home:hover {
    color: var(--accent-color);
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.4);
    text-decoration: none;
    transform: translateX(-4px);
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.2);
}

.policy-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
}

.policy-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
}

.policy-content {
    color: var(--primary-color);
    line-height: 1.7;
    display: grid;
    gap: 14px;
}

.policy-content h2 {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 6px;
}

.policy-content p {
    font-size: 16px;
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.5);
}

.policy-content ul,
.policy-content ol {
    padding-left: 20px;
    display: grid;
    gap: 8px;
}

.policy-content ul {
    list-style: disc outside;
}

.policy-content ol {
    list-style: decimal outside;
}

.policy-content li {
    font-size: 16px;
}

.policy-content .highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.08));
    border-left: 4px solid var(--secondary-color);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.15);
}

@media (max-width: 992px) {
    .policy-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-notice {
        font-size: 12px;
        padding: 10px 12px;
        margin-bottom: 16px;
    }

    .header h1 {
        font-size: 40px;
    }

    .header h2 {
        font-size: 16px;
    }

    .footer {
        background-size: cover;
        margin-top: 48px;
    }

    .footer__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer__disclaimer,
    .footer__gambling {
        grid-area: auto;
        padding: 20px;
    }

    .footer__gambling-resources {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 10px;
        justify-content: center;
    }

    .footer__copyright {
        flex-direction: column;
        gap: 24px;
        padding-top: 24px;
        margin-top: 24px;
        text-align: center;
    }

    .footer__copyright nav ul {
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .policy-page {
        padding: 24px 0 48px 0;
    }

    .policy-title {
        font-size: 28px;
    }

    .policy-content h2 {
        font-size: 20px;
        margin-top: 20px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offer {
        max-width: 100%;
        gap: 12px;
        padding: 16px;
        border-radius: 20px;
    }

    .offer__left {
        width: 30%;
    }

    .offer__img {
        height: 60px;
        padding: 8px 10px;
        border-radius: 10px;
    }

    .offer__right {
        width: 70%;
    }

    .offer__reviews,
    .offer__rate {
        padding: 6px 10px;
        font-size: 12px;
        gap: 6px;
    }

    .offer__fs {
        padding: 12px;
        border-radius: 12px;
    }

    .offer__fs p {
        font-size: 36px;
    }

    .offer__button {
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 40px;
    }

    .offer__arrow {
        width: 52px;
        height: 52px;
        padding: 12px;
    }

    .policy-title {
        font-size: 24px;
    }

    .policy-subtitle {
        font-size: 13px;
    }

    .back-home {
        font-size: 13px;
    }
}

