body {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d !important;
    color: #fff;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

.login-card {
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.login-card h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

.login-card .uk-input {
    margin-bottom: 15px;
}

.login-card .uk-button {
    background-color: #FFB701;
    color: #ffffff;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

.login-card .uk-button:hover {
    background-color: #e69b00;
}

.login-card .uk-link {
    font-size: 14px;
    color: #333333;
}

.login-card .uk-link:hover {
    text-decoration: underline;
}

.about-header {
    background-color: #FFB701; /* Cor personalizada */
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
}

.about-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 18px;
}

.about-section {
    padding: 40px 20px;
}

.about-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-section img {
    max-width: 100%;
    border-radius: 10px;
}

.dashboard-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.dashboard-header h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.dashboard-header .uk-button-primary {
    background-color: #FFB701;
    border: none;
    font-size: 16px;
    font-weight: bold;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.dashboard-card {
    background: linear-gradient(135deg, #FFB701, #FF8C00);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.dashboard-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.dashboard-card .uk-icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.dashboard-card a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.dashboard-card a:hover {
    text-decoration: underline;
}

.poster-preview {
    max-width: 200px;
    max-height: 300px;
    margin-bottom: 20px;
    object-fit: cover;
    display: none;
}

.add-more-btn {
    margin-left: 10px;
    background-color: #e6e6e6;
    color: #333;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.add-more-btn:hover {
    background-color: #ccc;
}

.dropdown-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.dropdown-container .uk-select {
    flex: 1;
}



.movie-details-container {
    margin: 40px auto;
    width: 90%;
    max-width: 1200px;
    display: flex;
    gap: 20px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.movie-poster {
    flex: 1;
    max-width: 350px;
}

.movie-poster img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.movie-info {
    flex: 2;
    padding: 10px;
}

.movie-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffb701;
    margin: 0 0 20px;
}

.movie-meta {
    font-size: 16px;
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 20px;
}

.movie-description {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
}

.additional-info {
    margin-top: 20px;
    font-size: 14px;
    color: #bbb;
}

.button-container {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.action-button {
    background-color: #ffb701;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.action-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .movie-details-container {
        flex-direction: column;
        align-items: center;
    }

    .movie-poster {
        max-width: 100%;
    }

    .movie-info {
        text-align: center;
    }

    .button-container {
        justify-content: center;
    }
}

.privacy-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-container h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.privacy-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-container ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

.success-card {
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.success-card h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

.success-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555555;
}

.success-card .uk-button {
    background-color: #FFB701;
    color: #ffffff;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

.success-card .uk-button:hover {
    background-color: #e69b00;
}

.reset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

.reset-card {
    padding: 40px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.reset-card h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333333;
}

.reset-card .uk-input {
    margin-bottom: 15px;
}

.reset-card .uk-button {
    background-color: #FFB701;
    color: #ffffff;
    border: none;
    width: 100%;
    margin-bottom: 10px;
}

.reset-card .uk-button:hover {
    background-color: #e69b00;
}

.reset-card .uk-link {
    font-size: 14px;
    color: #333333;
}

.reset-card .uk-link:hover {
    text-decoration: underline;
}

.register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.register-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 30px 40px;
    max-width: 500px;
    width: 100%;
}

.register-card h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.register-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.register-card .uk-button {
    background-color: #FFB701;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.register-card .uk-button:hover {
    background-color: #e69b00;
}

.register-card .uk-link {
    font-size: 14px;
    color: #FFB701;
    text-decoration: none;
}

.register-card .uk-link:hover {
    text-decoration: underline;
}

.message-container {
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    text-align: center;
}
.message-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.2);
}
.message-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
.return-button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #FFB701;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.return-button:hover {
    background-color: #e6a600;
}

.terms-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.terms-container p, .terms-container ul li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Quase a altura total da tela */
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    width: 90%;
    height: 90%;
    border: none;
}

.video-title {
    text-align: center;
    color: white;
    margin: 20px 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.video-description {
    text-align: center;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 10%;
}