body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: black;
    color: white;
}

html {
    scroll-behavior: smooth;
}

/* BACKGROUND */
.background {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,255,255,0.15), transparent),
        radial-gradient(circle at 80% 70%, rgba(255,0,255,0.15), transparent);
    z-index: -2;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/*NAV-LINKS*/
.nav-logo,
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: white;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #00f0ff;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HEADER */
header {
    text-align: center;
    padding: 60px 20px 20px;
}

.logo {
    width: 320px;
    height: 200px;
}

.hero {
    text-align: center;
    padding: 20px;
}

.hero h2 {
    color: #00f0ff;
}

/* CAROUSEL */
.carousel {
    width: 80%;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.prev { left: 10px; }
.next { right: 10px; }

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.card {
    width: 250px;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00f0ff;
}

/* ABOUT + CONTACT */
.about, .contact {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.about h2, .contact h2 {
    color: #00f0ff;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    color: grey;
}

/* CURSOR */
.cursor-glow {
    position: fixed;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,255,0.25), transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    z-index: 999;
}

/* WIFI FLOAT ENHANCED */
.wifi {
    position: fixed;
    opacity: 0.12;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

/* Individual variations */
.w1 {
    width: 35px;
    top: 10%;
    left: 5%;
    animation: float1 18s infinite;
    transform: rotate(10deg);
}

.w2 {
    width: 50px;
    top: 70%;
    left: 15%;
    animation: float2 22s infinite;
    transform: rotate(-20deg);
}

.w3 {
    width: 40px;
    top: 30%;
    right: 10%;
    animation: float3 20s infinite;
    transform: rotate(30deg);
}

.w4 {
    width: 60px;
    bottom: 15%;
    right: 20%;
    animation: float4 25s infinite;
    transform: rotate(-35deg);
}

.w5 {
    width: 45px;
    top: 50%;
    left: 50%;
    animation: float5 19s infinite;
    transform: rotate(15deg);
}

/* BIGGER movement paths */
@keyframes float1 {
    0% { transform: translate(0,0) rotate(10deg); }
    50% { transform: translate(120px, -80px) rotate(25deg); }
    100% { transform: translate(0,0) rotate(10deg); }
}

@keyframes float2 {
    0% { transform: translate(0,0) rotate(-20deg); }
    50% { transform: translate(-150px, -120px) rotate(-40deg); }
    100% { transform: translate(0,0) rotate(-20deg); }
}

@keyframes float3 {
    0% { transform: translate(0,0) rotate(30deg); }
    50% { transform: translate(-100px, 100px) rotate(60deg); }
    100% { transform: translate(0,0) rotate(30deg); }
}

@keyframes float4 {
    0% { transform: translate(0,0) rotate(-35deg); }
    50% { transform: translate(140px, -100px) rotate(-10deg); }
    100% { transform: translate(0,0) rotate(-35deg); }
}

@keyframes float5 {
    0% { transform: translate(0,0) rotate(15deg); }
    50% { transform: translate(-120px, 120px) rotate(45deg); }
    100% { transform: translate(0,0) rotate(15deg); }
}