body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f39c12;
}

section#home {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

#liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
}

.content {
    z-index: 2;
    position: relative;
    margin-bottom: 20px;
}

.game-cards {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.game-card {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s, background-color 0.3s, z-index 0.3s;
    margin: 10px;
    position: relative;
}

.game-card:hover {
    transform: scale(1.5) translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.3);
    position: absolute;
    left: 50%;
    top: 50%;
}

.game-card img {
    width: 100%;
    height: auto;
}

.game-card h2 {
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
}

#trail-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .content {
        padding: 0 20px;
    }

    .game-cards {
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        width: 80%;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2em;
    }

    .game-card {
        width: 90%;
    }
}


a {
    text-decoration: none;
    color: #fff;
}
a:hover {
    color:#ffffff; 
    text-decoration:none; 
    cursor:pointer;  
}