* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #141414;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.logo {
    height: 40px;
    margin-right: 15px;
}

.netflix-text {
    font-family: 'Bebas Neue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #e50914;
    letter-spacing: 2px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    display: block;
    line-height: 1;
}

.header h1 {
    font-size: 28px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.5px;
    margin-left: 10px;
}

.search-container {
    background-color: #181818;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.search-mode {
    margin-bottom: 15px;
}

.search-mode label {
    margin-right: 10px;
    font-weight: 600;
    color: #b3b3b3;
}

.search-mode select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #333;
    color: #ffffff;
    width: 150px;
    cursor: pointer;
}

.input-container {
    display: flex;
    margin-bottom: 15px;
}

.input-container input {
    flex: 1;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    background-color: #333;
    color: #ffffff;
}

.input-container input:focus {
    outline: none;
    border-color: #e50914;
}

.input-container button {
    padding: 12px 20px;
    background-color: #e50914;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.input-container button:hover {
    background-color: #c40812;
}

.options {
    display: flex;
    gap: 10px;
}

.options button {
    padding: 8px 12px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff;
    transition: background-color 0.3s;
}

.options button:hover {
    background-color: #444;
}

.status-bar {
    background-color: #333;
    color: #b3b3b3;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.results-container {
    background-color: #181818;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    min-height: 200px;
}

.movie-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.imdb-link a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #e50914;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.imdb-link a:hover {
    background-color: #c40812;
}

.subtitles-list h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 18px;
}

.subtitle-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #222;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.subtitle-item:hover {
    background-color: #2a2a2a;
}

.subtitle-name {
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 16px;
}

.subtitle-link a {
    color: #e50914;
    text-decoration: none;
    word-break: break-all;
    font-size: 14px;
}

.subtitle-link a:hover {
    text-decoration: underline;
}

.no-subtitles {
    text-align: center;
    padding: 30px 20px;
    color: #b3b3b3;
}

.no-subtitles p {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .netflix-text {
        font-size: 32px;
    }
    
    .header h1 {
        margin-left: 0;
        margin-top: 5px;
    }
    
    .input-container {
        flex-direction: column;
    }
    
    .input-container input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .input-container button {
        border-radius: 4px;
    }
    
    .options {
        flex-direction: column;
    }
}