/* Reset some default styles */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Accessibility styles */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    color: #333;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {

    height: 70px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: darkblue;
}

.current-page a {
    color: darkblue;
}


.hamburger-menu {
    display: none;
    font-size: 20px;
    cursor: pointer;
}

.hamburger-menu {
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1;
    font-size: small;
    width: 120px;
}
.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

/* Main section styles */
.main-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: white;
    margin-bottom: 50px;
}

.main-content {
    display: flex; /* Added this line */
    align-items: center; /* Added this line */
    flex-direction: row-reverse; /* Added this line */
    flex: 1;
}

.main-content h1 {
    font-size: 43px;
    font-weight: bold;
    margin-right: 20px; /* Added this line */
}

.main-content img {
    max-width: 100%;
}

.we-turn-section {
    text-align: center;
    padding: 100px;
    
}

.we-turn-section img {
    max-width: 100%;
}


.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background-color: white;
    margin: 0 40px;
}

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

.game-group .stat-number {
    font-size: 36px;
    font-weight: bold;
}

/* Image text group styles */
.image-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
   
    margin: 40px;
}

.group, .group-reversed {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.group img {
    max-width: 200px;
    margin-right: 40px;
    margin-left: 40px;
    padding: 40px;

}

.apps-section {
    text-align: center;
    padding: 60px 0;
}

.apps-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px , 1fr));
    gap: 20px;
    justify-items: center;
    padding: 20px;
}

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

.app-item img {
    max-width: 100%;
    height: 150px;
}

.app-item h2 {
    font-size: 24px;
    margin-top: 10px;
    padding: 20px;
}

.store-badges {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.store-badges img {
    max-width: 100%;
    height: 30px;
    margin: 0 5px;
}

.imprint-section {
    text-align: left;
    padding: 60px;
}

.imprint-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.imprint-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.imprint-section a {
    color: darkblue;
    text-decoration: underline;
}


.deleteuser-section
{
    font-family: DM Sans;
    text-align: center;
    padding: 30px;
        
}

.deleteuser-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 20px;
}

.deleteuser-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.deleteuser-section p {
    font-size: 16px;
    line-height: 1.6;
 
    margin-bottom: 20px;
    margin-left: 50px;
    margin-right: 50px;
}

.deleteuser-section button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #222222;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-family: DM Sans;
    font-weight: 400;
    
    font-size: 21px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 50px;
   
    transition: background-color 0.2s ease-in-out;
}

.deleteuser-section button:hover {
    background-color: #0056b3;
}

#email, #verificationCode {
    width: 400px; /* Set the width as desired */
    padding: 15px; /* Add padding for a larger appearance */
    margin-bottom: 30px; 
    font-size: 16px;
    font-family: DM Sans;
    background-color: rgb(243, 243, 243);

}
.g-recaptcha {
    display:flex;
    justify-content: center;
    align-items: center;


}

footer {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 50px;
}

footer p {
    margin: 0 0 10px 0;
    font-weight: 300;
    font-size: 16px;
    color: #666;
}

footer a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: darkblue;
}


/* Responsive styles */
@media screen and (max-width: 770px) {
    header {
        /*flex-direction: column;
        align-items: flex-start;*/
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        flex-direction: row;
    }
    .logo img{
    
        height: 45px;
        padding-top: 10px;
     
    }

    .hamburger-menu {
        
        display: block;
        margin-right: 20px;
    }

    .main-section,
    .we-turn-section,
    .game-info,
    .image-text-group {
        padding: 20px;
    }
    .main-section {
        flex-direction: column;
        align-items: flex-start;
    
    }

    .main-content {
        flex-direction: column;
    }

    .main-content h1 {
        margin-left: 0;
        text-align: center;
        display: block;
    }

    .we-turn-section img {
        max-width: 40%;
        margin-bottom: 10px;
    }

    .game-info {
        flex-direction: column;
        align-items: center;
        margin: 20px;
    }

    .game-group {
        margin: 20px;
    }

    .image-text-group {
        margin: 20px 20px;
    }

    .group {
        text-align: center;
        flex-direction: column;
    }
.group-reversed {
    flex-direction: column-reverse;
}
    .group img {
        margin: 20px;
        
    }

    .apps-section {
        text-align: center;
        
        
}

.app-grid {

    grid-template-columns: repeat(auto-fit, minmax(300px , 1fr));
    gap: 0px;

    padding: 0px;
}
}