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


body{
    background-color: #050b2c;
    font-family: 'roboto', sans-serif;
}

/* HEADER  HEADER  HEADER  HEADER  HEADER  HEADER HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER  HEADER */


header{
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar{
    background-color: #020b3d;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo a{
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.navbar i{
    font-size: 2rem;
    color: #00d9ff;
}

.logo span{
    font-family: 'Press Start 2P', sans-serif;
    font-size: 1rem;
}

.nav-links{
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: #fff;
    font-family: 'Press Start 2P', sans-serif;
    font-size: 0.75rem;
    transition: color 0.3s;
    padding-bottom: 5px;
}

.nav-links a:hover{
    color: #00d9ff;
}

.nav-links .active{
    color: #00d9ff;
    border-bottom: 2px solid #00d9ff;
}

.menu-icon{
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

#menu-toggle{
    display: none;
}

@media (max-width: 1100px){
    .menu-icon{
        display: block;
   }

    .nav-links{
        position:absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #020b3d;
        flex-direction: column;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: 0.4s;
    }

    .nav-links li{
        padding: 20px 0;
    }

    #menu-toggle:checked ~ nav .nav-links{
        max-height: 500px;
    }
}


/* INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML  INDEX.HTML */


main{
    width: 100%;
}


/*intro*/


.intro{
    min-height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 80px 10%;
    background-color: red;
}

.intro-text h1{
    font-size: 4rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.intro-text span{
    color: #00d9ff;
}

.intro-text p{
    font-size: 1.25rem;
    line-height: 1.8;
    color: #d1d5db;
    max-width: 600px;
    margin-bottom: 40px;
}

.intro-button{
    display: inline-block;
    padding: 18px 35px;
    background: linear-gradient(to right, #00d9ff, #2563eb);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
    font-weight: bold;
}

.intro-button:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00d9ff;
}

.intro-image{
    flex: 1;
    display: flex;
    justify-content: center;
}

.intro-image img{
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.intro-text{
    flex: 1;
}

@media (max-width: 1250px){
    .intro{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .intro-text h1{
        font-size: 3rem;
    }

    .intro-text p{
        margin: auto auto 40px;
    }

    .intro-image{
        width: 100%;
        margin-top: 40px;
    }

    .intro-image img{
        width: 100%;
        max-width: 450px;
        height: auto;
        display: block;
    }

}


/* games */


.games-section{
    padding: 100px 0%;
    background-color: #f4f4f4;
    text-align: center;
}

.section-title{
    font-size: 2.8rem;
    color: #050b2c;
    margin-bottom: 20px;
}

.section-subtitle{
    color: #555;
    margin-bottom: 70px;
    font-size: 1.1rem;
}

.cards{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card{
    width: 320px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.card:hover{
    transform: translateY(-10px);
}

.card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h3{
    margin: 25px 0 15px;
    color: #050b2c;
}

.card p{
    color: #555;
    padding: 0 25px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.card a{
    display: inline-block;
    margin-bottom: 30px;
    color: #00d9ff;
    text-decoration: none;
    font-weight: bold;
}


/* FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER  FOOTER*/


footer{
    background-color: #020b3d;
    color: #fff;
    padding-top: 70px;
}

.footer-container{
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.footer-section{
    flex: 1;
    min-width: 250px;
}

.footer-section h3{
    color: #00d9ff;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section p{
    color: #d1d5db;
    line-height: 1.8;
}

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

.footer-section li{
    margin-bottom: 15px;
}

.footer-section a{
    text-decoration: none;
    color: #f1f1f1;
    transition: 0.3s;
}

.footer-section a:hover{
    color: #00d9ff;
}

.socials{
    display: flex;
    gap: 20px;
}

.socials a{
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #09154f;
    font-size: 1.3rem;
    transition: 0.3s;
}

.socials a:hover{
    background-color: #00d9ff;
    color: #050b2c;
    transform: translateY(-5px);
    box-shadow: 0 0 15px #00d9ff;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 25px;
}

.footer-bottom p{
    color: #d1d5db;
}

@media (max-width: 900px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }

    .socials{
        justify-content: center;
    }
}


/*  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML  HOBBY.HTML */


/* hobby intro */


.hobby-intro{
    min-height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    padding: 80px 10%;
     background: linear-gradient(to right, #050b2c, #09154f);
}

.hobby-text{
    flex: 1;
}

.hobby-text h1{
    font-size: 4rem;
    color: #fff;
    margin-bottom: 30px;
}

.hobby-text span{
    color: #00d9ff;
}

.hobby-text p{
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 25px;
}

.hobby-image{
    flex: 1;
}

.hobby-image img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
}


/* genres */


.genres-section{
    padding: 100px 10%;
    background-color: #f4f4f4;
    text-align: center;
}

.genre-cards{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.genre-card{
    width: 200px;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.genre-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.genre-card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s ease;
}

.genre-card img:hover{
    transform: scale(1.05);
}

.genre-card h3{
    margin: 25px 0 15px;
    color: #050b2c;
}

.genre-card p{
    padding: 0 20px 30px;
    line-height: 1.7;
    color: #555;
}


/* why gaming */


.why-gaming{
    padding: 100px 10%;
    background-color: #09154f;
    text-align: center;
}

.why-gaming h2{
    color: #fff;
    margin-bottom: 70px;
    font-size: 2.8rem;
}

.why-container{
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-box{
    width: 300px;
    background-color: #111827;
    border-radius: 20px;
    padding: 40px 30px;
    transition: 0.3s;
}

.why-box:hover{
    transform: translateY(-10px);
     box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.why-box .fa-users,
.why-box .fa-lightbulb{
    font-size: 2.5rem;
    color: #00d9ff;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(0, 217, 255, 0.8);
}

.why-box h3{
    color: #fff;
    margin-bottom: 20px;
}

.why-box p{
    color: #d1d5db;
    line-height: 1.75;
}

@media (max-width: 1100px){
    .hobby-intro{
        flex-direction: column;
        text-align: center;
    }

    .hobby-text h1{
        font-size: 3rem;
    }

    .hobby-text p{
        margin: auto auto 25px;
    }

    .hobby-image{
        width: 100%;
        margin-top: 40px;
    }

    .hobby-image img{
        width: 100%;
        max-width: 450px;
        height: auto;
        display: block;
    }
}

@media (max-width: 600px){
    .hobby-text h1{
        font-size: 2.2rem;
    }

     .why-box{
        width: 100%;
    }

    .genre-card{
        width: 100%;
        max-width: 320px;
    }
}


/*  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML  GALERIJ.HTML */


.galerij-section{
    padding: 100px 10%;
    text-align: center;
    background: linear-gradient(to right, #050b2c, #09154f);
}

.galerij-section h1{
    color: #fff;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.galerij-section span{
    color: #00d9ff;
}

.galerij-section p{
    color: #d1d5db;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    margin-bottom: 70px;
}

.galerij-grid{
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.galerij-card{
    background-color: #111827;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.galerij-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.45);
}

.galerij-card picture,
.galerij-card img{
    width: 100%;
    display: block;
}

.galerij-card img{
    height: 260px;
    object-fit: cover;
    transition: 0.4s ease;
}

.galerij-card:hover img{
    transform: scale(1.05);
}

.galerij-info{
    padding: 25px;
}

.galerij-info h3{
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.galerij-info p{
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 0;
}

.galerij-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, #00d9ff, transparent);
    opacity: 0;
    transition: 0.3s;
}

.galerij-card:hover::before{
    opacity: 1;
}

@media (max-width: 768px){

    .galerij-section{
        padding: 80px 7%;
    }

    .galerij-section h1{
        font-size: 2.5rem;
    }

    .galerij-grid{
        gap: 25px;
    }

    .galerij-card img{
        height: 220px;
    }
}

@media (max-width: 600px){

    .galerij-section h1{
        font-size: 2rem;
    }

    .galerij-section p{
        font-size: 0.95rem;
    }

    .galerij-grid{
        grid-template-columns: 1fr;
    }

    .galerij-card img{
        height: 200px;
    }
}


/*  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML  TIPS.HTML */


.tips-intro{
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient( to right,#050b2c, #09154f);
}

.tips-intro-text h1{
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
}

.tips-intro-text span{
    color: #00d9ff;
}

.tips-intro-text p{
    color: #d1d5db;
    font-size: 1.2rem;
}


.tips-section{
    padding: 100px 10%;
    background-color: #f4f4f4;
}

.tips-cards{
      display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    flex-wrap: wrap;
}

.tip-card{
    width: 320px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
    flex: 1 1 300px;
    max-width: 320px;
}

.tip-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0,217,255,0.4);
}

.tip-card i{
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 25px;
}

.tip-card h3{
    margin-bottom: 20px;
    color: #050b2c;
}

.tip-card p{
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1100px){

    .tips-intro-text h1{
        font-size: 3rem;
    }

}


/*  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML  CONTACT.HTML */


.contact-section{
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 100px 10%;
    background-color: #f4f4f4;
    flex-wrap: wrap;
}

.contact-form-container{
    flex: 2;
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h1{
    font-size: 3rem;
    color: #050b2c;
    margin-bottom: 40px;
}

.contact-form-container span{
    color: #00d9ff;
}

.form-group{
    margin-bottom: 30px;
}

.form-group label{
    display: block;
    margin-bottom: 12px;
    color: #050b2c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 16px;
    border: 2px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #00d9ff;
    box-shadow: 0 0 10px rgba(0,217,255,0.3);
}

.radio-group{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label{
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f4f4f4;
    padding: 15px 20px;
    border-radius: 10px;
}

textarea{
    resize: vertical;
}

.button-group{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.send-btn{
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(to right, #00d9ff, #2563eb);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.send-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0,217,255,0.5);
}

.reset-btn{
    padding: 15px 35px;
    border-radius: 12px;
    border: 2px solid #00d9ff;
    background-color: transparent;
    color: #050b2c;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.reset-btn:hover{
    background-color: #00d9ff;
    color: white;
}

.contact-info{
    flex: 1;
    background-color: #09154f;
    padding: 50px;
    border-radius: 20px;
    color: white;
    height: fit-content;
}

.contact-info h2{
    margin-bottom: 40px;
    font-size: 2rem;
}

.info-box{
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.info-box i{
    font-size: 1.8rem;
    color: #00d9ff;
}

.info-box h3{
    margin-bottom: 10px;
}

.info-box p{
    color: #d1d5db;
    line-height: 1.7;
}

@media (max-width: 1100px){

    .contact-section{
        flex-direction: column;
    }

    .contact-form-container h1{
        font-size: 2.5rem;
    }

}
