@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
    --theme: #00ffff;
    --bg: #161616;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    transition: all 0.5s ease;
}

.hero {
    position: relative;
    height: 100vh;
    background: 
    linear-gradient(180deg, #131313bf, #161616 93.94%), 
    url('/assets/images/hero-bg.png') bottom/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(2px);
}

header {
    position: absolute;
    top: 40px;
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.7em;
    font-weight: 700;
    color: var(--theme);
}

.login-btn {
background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
border: none;
padding: 12px 30px;
border-radius: 25px;
color: #fff;
font-size: 0.9em;
font-weight: 600;
cursor: pointer;
backdrop-filter: blur(5px); /* frosted glass effect */
box-shadow: 0 8px 20px rgba(0,0,0,0.3), inset 0 0 10px rgba(255,255,255,0.05);
transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.login-btn:hover {
transform: translateY(0px); /* subtle lift */
box-shadow: 0 12px 25px rgba(0,0,0,0.4), inset 0 0 15px rgba(255,255,255,0.08);
background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 20px;
    top: 40px;
}

.hero-content h1 {
    font-size: 3em;
    color: var(--theme);
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2.2em;
    margin-top: 10px;
    color: #fff;
}

.hero-content p {
    margin-top: 20px;
    color: #cfcfcf;
    font-size: 1.15em;
}

.cta {
    margin-top: 35px;
    background: var(--theme);
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    transition: 0.3s;
}

.cta:hover {
    background: #00ffff;
    transform: translateY(-3px);
}

/* Info boxes */
.features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 70px;
    z-index: 2;
    position: relative;
}

.feature {
background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
border-radius: 15px;
padding: 25px 30px;
text-align: center;
width: 160px;
backdrop-filter: blur(5px); /* frosted glass effect */
box-shadow: 0 8px 20px rgba(0,0,0,0.3), inset 0 0 10px rgba(255,255,255,0.05);
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-icon {
    font-size: 2em;
    color: var(--theme);
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #161616;
    padding: 0px 20px 20px;
    text-align: center;
    color: #aaa;
}

footer .logo {
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 30px;
    margin-top: 30px;
}

.footer-links a {
    font-weight:600;
    color: #fff;
    margin: 0 30px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

footer p {
    font-size: 0.9em;
    color:777;
}

/* Header logo */
.logo-img {
width: 48px;
height: 48px;
margin-right: 8px;
filter: drop-shadow(0 0 4px rgba(0, 212, 212, 0.6));
vertical-align: middle;
}

.logo span {
font-size: 1.1em;
font-weight: 700;
color: #fff;
}

.logo-link {
text-decoration: none; /* removes underline */
color: inherit;        /* keeps your span color */
display: inline-block; /* ensures proper layout */
cursor: pointer;       /* shows pointer on hover */
}

/* Jiggle animation */
@keyframes jiggle {
0% { transform: rotate(0deg); }
15% { transform: rotate(10deg); }
30% { transform: rotate(-8deg); }
45% { transform: rotate(6deg); }
60% { transform: rotate(-4deg); }
75% { transform: rotate(2deg); }
100% { transform: rotate(0deg); }
}

/* Apply animation on hover */
.logo-img:hover {
animation: jiggle 0.6s ease-in-out;
transform-origin: center; /* ensures rotation pivots from center */
}

.particle-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}

/* Particle styles will be generated dynamically */
.particle {
position: absolute;
width: 4px;            /* slightly larger */
height: 4px;
background: rgba(255,255,255,0.4); /* brighter */
border-radius: 50%;
opacity: 0.6;
animation: drift linear infinite;
}
@keyframes drift {
0% { transform: translate(0,0) scale(1); }
50% { transform: translate(var(--x-drift), var(--y-drift)) scale(1.2); }
100% { transform: translate(0,0) scale(1); }
}

.trustpilot {
    max-width: 25%;
height: auto;
text-decoration: none;
}