:root{
  --bg: #05070D;
  --bg-panel: #0B1220;
  --bg-panel-2: #0F1A2E;
  --blue: #2E8BFF;
  --blue-soft: #6FB1FF;
  --amber: #FFB020;
  --amber-deep: #FF7A1A;
  --text: #F4F6FA;
  --muted: #93A2BA;
  --border: rgba(255,255,255,0.09);
  --glass: rgba(15,23,42,0.55);
  --radius: 14px;
  --container: 1180px;
  --shadow-amber: 0 0 40px rgba(255,176,32,0.35);
}
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #F2F2F2;
    color: #000;
    font-family: 'Manrope', -apple-system, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
    background: linear-gradient(180deg, var(--bg-panel) 0%, var(--bg) 100%);
}
body::-webkit-scrollbar {
    display: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
}

p {
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo{
    position: relative;
}
.logo img {
    width: 60%;
    margin: 0 auto;
    padding: 5px 0 15px 0;
}

.logo h1 {
    position: relative;
    font-size: 17px;
    line-height: 1.5;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 28px auto 0 auto;
    max-width: 460px;
    padding: 18px 26px;
    color: #EAF1FF;
    border: 1px solid rgba(111,177,255,0.55);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(46,139,255,0.10) 0%, rgba(11,18,32,0.35) 100%);
    box-shadow: 0 0 0 1px rgba(46,139,255,0.08) inset,
                0 0 24px rgba(46,139,255,0.35),
                0 0 46px rgba(46,139,255,0.15);
}

.logo h1::before,
.logo h1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blue-soft));
    opacity: 0.7;
}

.logo h1::before {
    left: -30px;
    background: linear-gradient(90deg, transparent, var(--blue-soft));
}

.logo h1::after {
    right: -30px;
    background: linear-gradient(270deg, transparent, var(--blue-soft));
}

.logo h1 .hl {
    color: var(--blue-soft);
    text-shadow: 0 0 14px rgba(111,177,255,0.55);
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
    margin: 45px 0 0 0;
}

.grid-item {
    position: relative;
    background: linear-gradient(155deg, var(--bg-panel-2) 0%, var(--bg-panel) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 34px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    animation: tile-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.grid-item:nth-child(1) { animation-delay: 0.05s; }
.grid-item:nth-child(2) { animation-delay: 0.15s; }
.grid-item:nth-child(3) { animation-delay: 0.25s; }
.grid-item:nth-child(4) { animation-delay: 0.35s; }

/* .grid-item::before{
    content: "";
    position: absolute;
    top: 0; left: 50%;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    transform: translateX(-50%);
    transition: width 0.4s ease;
} */

.ball-bg{
   position: absolute;
    z-index: 0;
    bottom: -18px;
    right: -14px;
    font-size: 92px;
    line-height: 1;
    background: linear-gradient(135deg, var(--blue), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.32;
    transform: rotate(-8deg);
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.grid-item:hover .ball-bg{
    transform: rotate(4deg) scale(1.06);
    opacity: 0.22;
}

.grid-item:nth-child(2) .ball-bg{ transform: rotate(10deg); }
.grid-item:nth-child(3) .ball-bg{ transform: rotate(-14deg); }
.grid-item:nth-child(4) .ball-bg{ transform: rotate(6deg); }

.grid-item:nth-child(2):hover .ball-bg{ transform: rotate(-2deg) scale(1.06); }
.grid-item:nth-child(3):hover .ball-bg{ transform: rotate(-2deg) scale(1.06); }
.grid-item:nth-child(4):hover .ball-bg{ transform: rotate(-2deg) scale(1.06); }

.grid-item:hover,
.grid-item:focus-visible{
    border-color: rgba(255,176,32,0.4);
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35), 0 0 24px rgba(46,139,255,0.18);
}

.grid-item:hover::before{ width: 100%; }

.icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-soft), var(--amber));
    box-shadow: 0 6px 18px rgba(46,139,255,0.25);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grid-item:hover .icon{
    transform: scale(1.1) rotate(-6deg);
}

.text {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 24px 1px 24px;
    text-align: center;
    overflow: hidden;

}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -25%;
    transform: scale(1.06);
    animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(5, 7, 13, 0.15) 0%, rgba(5, 7, 13, 0.78) 65%, rgba(5, 7, 13, 0.96) 100%), linear-gradient(180deg, rgba(5, 7, 13, 0.55) 0%, rgba(5, 7, 13, 0.2) 25%, rgba(5, 7, 13, 0.85) 100%);
}

@keyframes tile-in{
    to{ opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce){
    .grid-item{ animation: none; opacity: 1; transform: none; }
    .grid-item, .icon{ transition: none; }
}
.trust{  padding:56px 24px; position: relative;}
.trust-inner{
  max-width:var(--container); margin:0 auto;
  display:flex; align-items:center; justify-content:center; gap:25px; flex-wrap:wrap;
  text-align:center;
}
.age-badge {
      display: flex;
    align-items: center;
    gap: 20px;
}
.age-badge img{ width: 215px }
.trust-licenses{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; justify-content:center; }
.trust-licenses img{  width:auto; opacity:0.9; }
.trust-note{ color:var(--muted); font-size:0.82rem; max-width:542px; }

@media (min-width:768px) {
    
    .logo h1 {
        font-size: 22px;
        max-width: 620px;
        padding: 24px 40px;
    }

    .logo h1::before { left: -46px; width: 34px; }
    .logo h1::after { right: -46px; width: 34px; }
    .logo img {
        width: 40%;
    }

    .logo h1 {
        font-size: 29px;
    }

    .icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text {
        font-size: 19px;
    }

    .icon-grid {
        margin: 45px auto 0 auto;
        width: 543px;
            grid-gap: 26px;
    }
        .ball-bg{
        font-size: 130px;
        bottom: -24px;
        right: -18px;
    }
}