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

@media screen and (max-width: 768px) {
    .menu {
        justify-content: center;
    }

    .menu .navbar {
        display: none;
    }

    .logo {
        font-size: 30px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body{
    background: linear-gradient(180deg, #03045e, #0077b6, #00b4d8);
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    display: flex;
    align-items: center;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 0 0 15px 15px; 
    padding: 10px 20px; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    backdrop-filter: blur(10px); 
}

.logo {
    font-size: 25px;
    color: #00f2ff;
    text-transform: uppercase;
    font-weight: 800;
}

.menu .navbar ul li {
    position: relative;
    float: left;
}

.menu .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #caf0f8;
    display: block;   
}

.menu .navbar ul li a:hover {
    color: #00b4d8;
}

#menu {
    display: none;
}

.menu label {
    cursor: auto; 
    display: none;
}

hr {
    border:  1px solid #003249;
}

.about {
    margin-top: 80px;
    padding: 50px;
    text-align: center;
    color: #caf0f8;
}

.about h2 {
    font-size: 50px;
    color: #caf0f8;
    margin-bottom: 50px;
}

.games {
    padding: 50px;
    text-align: center;
    color: #caf0f8;
}

.games h2 {
    font-size: 50px;
    color:#caf0f8;
    margin-bottom: 70px;
}

.games #intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.game {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    margin-bottom: 40px;
}

.game img {
    width: 300px;
    height: auto;
    border-radius: 10px; 
}

.game iframe {
    width: 300px; 
    height: 169px; 
    display: block;
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
}


.game p {
    max-width: 400px;
    font-size: 18px;
    color: #caf0f8;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .game {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .game p {
        text-align: center;
    }
}

.experience {
    padding: 50px;
    text-align: center;
    color: #caf0f8;

}

.experience h2 {
    font-size: 50px;
    color: #caf0f8;
    margin-bottom: 35px;
}

.contact {
    padding: 50px;
    text-align: center;
}

.contact h2 {
    font-size: 50px;
    color: #caf0f8;
    margin-bottom: 35px;
}

.footer {
    text-align: center;
    padding: 30px 0;
}

.footer h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.footer ul li {
    list-style: none;
}

.footer ul li a img {
    width: 40px; 
    height: 40px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer ul li a img:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
}

.fade-in {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
  
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.contact {
    text-align: center;
    padding: 50px 20px;
}

.contact h2 {
    font-size: 50px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.contact label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: left;
    margin-bottom: 5px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    outline: none;
}

.contact textarea {
    resize: none;
}

.contact button {
    background: #00b4d8;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact button:hover {
    background: #0077b6;
}

  