
        html, body {
            margin: 0;
            padding: 0;
            overflow-x: hidden; /* Prevent side scrolling */
            background-color: #101010;
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: url('https://rusticon.co/apply/assets/imgs/1920x1080.png') no-repeat center center fixed;
        }

        /* Navigation Bar */
        header {
            width: 100%;
            padding: 1rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: transparent; /* No background color */
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            width: 100%;
            max-width: 1200px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .nav-logo img {
            height: 50px; /* Adjust the height as needed */
            object-fit: contain;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }
        
        .nav-links li a {
            text-decoration: none;
            color: #f5f5f5;
            font-size: 1rem;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        
        .nav-links li a:hover {
            color: #1e88e5;
        }
        
        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        .steam-icon img {
            height: 24px;
            width: 24px;
            transition: transform 0.3s ease;
        }
        
        .steam-icon img:hover {
            transform: scale(1.1);
        }
        
        .login-button {
            text-decoration: none;
            color: #ffffff;
            background-color: #1e88e5;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-size: 0.9rem;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        
        .login-button:hover {
            background-color: #1565c0;
            transform: translateY(-2px);
        }
/* Profile Dropdown */
.profile-container {
    position: relative;
    display: inline-block;
}

.profile-container:hover .profile-dropdown {
    display: block;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    width: 163px;
    z-index: 1000;
}

.profile-dropdown a {
    display: block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.profile-dropdown a:hover {
    background-color: #333;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
}

/* Application Form */
.application-form {
    margin: 2rem auto;
    padding: 2rem;
    background-color: #1c1c1c;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    text-align: left;
    border: 1px solid #2e2e2e;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #444444;
    border-radius: 10px;
    background-color: #121212;
    color: #ffffff;
    resize: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-textarea:focus {
    border-color: #1e88e5;
    outline: none;
    box-shadow: 0 0 10px rgba(30, 136, 229, 0.6);
}

/* Submit button */
.form-submit-button {
    display: block;
    width: 15%;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #1e88e5;
    border: none;
    margin-left: 85%;
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.form-submit-button:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

main h1 {
    text-align: center;
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #b0b0b0;
    width: 100%;
    padding: 1rem;
    background-color: #101010;
}

footer a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}


        .roles .buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        .role-button {
            background-color: #1e1e1e;
            color: #ffffff;
            border: 1px solid #333333;
            padding: 0.8rem 2rem;
            font-size: 1rem;
            text-transform: uppercase;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            font-weight: bold;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem; 
            text-decoration: none; 
        }
        
        .role-button:hover {
            background-color: #333333;
            transform: translateY(-2px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
        }
        
        .role-button i {
            font-size: 1.2rem;
        }
        
            @media screen and (max-width: 768px) {
    /* Body adjustments for smaller screens */
    body {
        background-size: cover;
        overflow: auto;
    }

    /* Hide navigation links */
    .nav-links {
        display: none;
    }

    /* Adjust nav-actions for smaller screens */
    .nav-actions {
        justify-content: center;
        width: 100%;
    }

    .nav-actions .login-button {
        margin: 0 auto;
    }

    /* Ensure the navigation bar is minimal */
    nav {
        justify-content: center;
    }

    .nav-logo {
        display: none;
    }
    /* Main content adjustments */
    main {
        padding: 1rem;
        text-align: center;
    }

    h1, h2 {
        font-size: 1.5rem;
    }

    .roles .buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .role-button {
        width: 100%;
        font-size: 0.9rem;
    }

    /* FAQ section adjustments */
    .faqs {
        padding: 1rem;
        width: 100%;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .faq-answer {
        font-size: 0.8rem;
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }

    /* Footer adjustments */
    footer {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    /* Application form adjustments */
    .application-form {
        width: 90%;
        padding: 1rem;
    }

    .form-textarea, .form-submit-button {
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    /* Profile adjustments */
    .profile-container {
        width: 100%;
        text-align: center;
    }

    .profile-avatar {
        width: 28px;
        height: 28px;
    }

    .profile-dropdown {
        width: auto;
        right: auto;
        left: 0;
    }

    .profile-dropdown a {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    /* Role button and login button */
    .role-button, .login-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
   