:root {
    --primary: #dfff00; /* Neon Yellow from the photo */
    --secondary: #00f2ff;
    --bg: #0a0a0c;
    --text: #ffffff;
    --accent-blue: #00a8cc;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background Glow - Updated to match the pool/neon vibe */
.bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(223, 255, 0, 0.15) 0%, rgba(0, 168, 204, 0.1) 50%, transparent 80%);
    filter: blur(80px);
    animation: float 10s infinite alternate ease-in-out;
    z-index: -1;
}

@keyframes float {
    0% { transform: translate(-10%, -10%) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}

/* THE IMAGE INTEGRATION */
.hero-image-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    animation: fadeInRight 1.5s forwards ease-out 0.5s;
}

.hero-image {
    position: absolute;
    right: -5%;
    bottom: -5%;
    height: 110%;
    width: auto;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9) saturate(1.1);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

.container {
    text-align: left;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    position: relative;
}

h1 {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s forwards ease-out;
}

p {
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInLeft 1s forwards ease-out 0.3s;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s forwards ease-out 0.6s;
    position: relative;
    overflow: hidden;
}

.badge::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 255, 0, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.orb {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    transition: transform 0.1s ease-out;
    box-shadow: 0 0 20px var(--primary);
    z-index: 10;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image-container { width: 40%; opacity: 0.5; }
    h1 { font-size: 4rem; }
}

@media (max-width: 768px) {
    body { justify-content: center; text-align: center; }
    .container { text-align: center; }
    .hero-image-container { display: none; }
    h1 { font-size: 3rem; }
    p { font-size: 1rem; margin-left: auto; margin-right: auto; }
}