/* General Styles */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #e50914;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    gap: 20px;
    margin-right: auto;
}

.nav-links a {
    font-size: 14px;
    color: #e5e5e5;
    transition: color 0.3s;
    font-weight: bold;
}

.nav-links a:hover {
    color: #b3b3b3;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector select {
    padding: 5px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.contact-button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #e50914;
    color: #e50914;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: #e50914;
    color: white;
}

.login-button {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #e50914;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #f40612;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    background-image: url('https://images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com/f/f562aaf4-5dbb-4603-a32b-6ef6c2230136/dh0w8qv-9d8ee6b2-b41a-4681-ab9b-8a227560dc75.jpg/v1/fit/w_828,h_466,q_70,strp/the_netflix_login_background__canada__2024___by_logofeveryt_dh0w8qv-414w-2x.jpg?token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJ1cm46YXBwOjdlMGQxODg5ODIyNjQzNzNhNWYwZDQxNWVhMGQyNmUwIiwiaXNzIjoidXJuOmFwcDo3ZTBkMTg4OTgyMjY0MzczYTVmMGQ0MTVlYTBkMjZlMCIsIm9iaiI6W1t7ImhlaWdodCI6Ijw9NzIwIiwicGF0aCI6IlwvZlwvZjU2MmFhZjQtNWRiYi00NjAzLWEzMmItNmVmNmMyMjMwMTM2XC9kaDB3OHF2LTlkOGVlNmIyLWI0MWEtNDY4MS1hYjliLThhMjI3NTYwZGM3NS5qcGciLCJ3aWR0aCI6Ijw9MTI4MCJ9XV0sImF1ZCI6WyJ1cm46c2VydmljZTppbWFnZS5vcGVyYXRpb25zIl19.LOYKSxIDqfPwWHR0SSJ-ugGQ6bECF0yO6Cmc0F26CQs');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero h1 {
    font-size: 48px;
    margin: 0;
    z-index: 1;
}

.hero p {
    font-size: 24px;
    margin: 20px 0;
    z-index: 1;
}

.hero button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #e50914;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #f40612;
}

.auth-section {
    margin-top: 20px;
    text-align: center;
    z-index: 1;
}

.auth-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.auth-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.auth-buttons input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 300px;
}

.auth-buttons button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #e50914;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.auth-buttons button:hover {
    background-color: #f40612;
}

/* Categories */
.categories {
    padding: 20px 50px;
    position: relative;
    background-color: rgba(0, 0, 0, 0.7);
}

.categories h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.category {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}

.category::-webkit-scrollbar {
    display: none;
}

.category {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category img {
    width: 220px;
    border-radius: 4px;
    transition: transform 0.3s;
    cursor: pointer;
}

.category img:hover {
    transform: scale(1.1);
}

.scroll-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.scroll-button.left {
    left: 10px;
}

.scroll-button.right {
    right: 10px;
}

/* Footer */
footer {
    padding: 50px;
    background-color: #000;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #808080;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e5e5e5;
}

.kurdish-text {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 700;
    font-size: 1.2em;
}

/* More Reasons to Join Section */
.reasons-section {
    padding: 50px;
    background-color: #000;
    text-align: center;
}

.reasons-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.reasons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.reason {
    max-width: 250px;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.reason img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.reason h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

.reason p {
    font-size: 14px;
    color: #b3b3b3;
    margin: 0;
}

/* Login and Signup Containers */
.login-container, .signup-container, .contact-container {
    max-width: 400px;
    margin: 150px auto;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    text-align: center;
}

.login-container h1, .signup-container h1, .contact-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #b3b3b3;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

.form-group.terms {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.form-group.terms input {
    width: auto;
    margin-right: 10px;
}

.form-group.terms label {
    margin: 0;
    font-size: 14px;
    color: #b3b3b3;
}

.form-group.terms a {
    color: #e50914;
    text-decoration: none;
}

.form-group.terms a:hover {
    text-decoration: underline;
}

button[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    background-color: #e50914;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #f40612;
}

.login-container p, .signup-container p, .contact-container p {
    margin-top: 15px;
    font-size: 14px;
    color: #b3b3b3;
}

.login-container a, .signup-container a, .contact-container a {
    color: #e50914;
    text-decoration: none;
}

.login-container a:hover, .signup-container a:hover, .contact-container a:hover {
    text-decoration: underline;
}