:root {
    --primary-color: #8b0070;
    --secondary-color: #ff6b6b;
    --bg-color: #2d1b38;
    --text-color: #ffffff;
    --heart-icon: '\f004';
    --accent-color: #634b66;
    --card-bg: #fff;
    --font-family: 'Arial', sans-serif;
    --input-bg: rgba(255, 255, 255, 0.1);
    --input-focus-bg: rgba(255, 106, 0, 0.15);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Modal Feedback Butonları */
.feedback-btn-modal:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3) !important;
}

/* Hakkımda Butonu */
.about-btn:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 15px rgba(139,0,112,0.4) !important;
}

/* Arkadaşımla teması */
.theme-friend {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --bg-color: #2c3e50;
    --text-color: #ecf0f1;
    --heart-icon: '\f500';
    --card-shadow: 0 4px 12px rgba(74, 144, 226, 0.2);
}

/* Ailemle teması */
.theme-family {
    --primary-color: #f39c12;
    --secondary-color: #e74c3c;
    --bg-color: #34495e;
    --text-color: #ecf0f1;
    --heart-icon: '\f015';
    --card-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
}

body:not(.register-page) {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    min-height: 100vh;
    margin: 0;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

.heart-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2d1b38 0%, #1a1a1a 100%);
    z-index: 1;
}

.heart-bg::before {
    content: '\f004';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    font-size: 800px;
    color: #FFB6D9;
    opacity: 0.5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    position: relative;
    z-index: 3;
}

.sub-title {
    text-align: left;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 0 0 25px rgba(255, 255, 255, 0.2);
    letter-spacing: 1.5px;
    font-family: 'Arial', sans-serif;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    background: linear-gradient(45deg, #c800a7, #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 4px 8px;
    border-radius: 5px;
    transform: rotate(-5deg);
}

.sub-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #c800a7, transparent);
}

.main-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3),
                 0 0 25px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
    position: relative;
    display: block;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(to right, transparent, #fff, transparent);
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 4rem;
}

.movie-selection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.movie-box {
    background-color: #6a0056;
    border-radius: 15px;
    padding: 0;
    width: 200px;
    height: 340px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.movie-box h2 {
    color: white;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    order: 1;
    padding: 0.5rem;
}

.preview-container {
    order: 2;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    width: 100%;
    margin: 0;
}

.movie-preview {
    display: flex;
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
    transition: transform 0.2s ease;
    width: 100%;
    height: 100%;
}

.movie-preview.placeholder {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.movie-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.movie-input {
    width: 90%;
    background-color: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 8px;
    color: rgb(201, 201, 201);
    padding: 0.6rem;
    margin: 0.2rem auto;
    font-size: 0.9rem;
    order: 3;
    margin-top: auto;
    margin-bottom: 10px;
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

.movie-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.movie-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.25);
    color: white;
}

.pick-movie-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pick-movie-btn:hover {
    background-color: white;
    color: #2D1B38;
}

.plus-sign {
    font-size: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.random-section {
    text-align: center;
    margin: 2rem 0;
}

.or-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.random-btn {
    background-color: white;
    color: #E31C5F;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.random-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.recommendations-wrapper {
    position: relative;
    margin-top: 3rem;
    padding: 0 40px;
}

.recommendations-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recommendations-container::-webkit-scrollbar {
    display: none;
}

.movie-card {
    flex: 0 0 auto;
    width: 200px;
    background-color: #2D1B38;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    margin-right: 15px;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.poster-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.movie-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.movie-card:hover .movie-poster {
    transform: scale(1.05);
}

.movie-info {
    padding: 10px;
    width: 100%;
    overflow: hidden;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
}

.movie-title {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.similarity-score {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    font-size: 0.85rem;
    width: 100%;
}

.score-label {
    margin-right: 5px;
    color: #ccc;
}

.score-value {
    color: #e7fc00;
    font-weight: bold;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    color: #E31C5F;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1;
}

.scroll-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 0;
}

.scroll-right {
    right: 0;
}

@media (max-width: 992px) {
    .movie-box {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .main-content {
        padding: 1rem;
    }

    .main-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .sub-title {
        font-size: 1rem;
        top: 8px;
        left: 8px;
        letter-spacing: 1px;
        padding: 3px 6px;
    }

    .movie-selection {
        flex-direction: column;
        gap: 15px;
    }

    .movie-box {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .preview-container {
        height: 240px;
    }

    .movie-input {
        font-size: 14px;
        padding: 8px;
    }

    .plus-sign {
        margin: 10px 0;
        transform: rotate(90deg);
    }

    .random-section {
        margin: 1.5rem 0;
    }

    .random-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .recommendations-wrapper {
        padding: 0 15px;
    }

    .recommendations-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .movie-card {
        width: 140px;
    }

    .poster-container {
        height: 210px;
    }

    .movie-title {
        font-size: 12px;
    }

    .scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .social-links {
        bottom: 15px;
        left: 15px;
    }

    .social-links i {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.2rem;
    }

    .sub-title {
        font-size: 1rem;
    }

    .movie-box {
        height: 280px;
    }

    .preview-container {
        height: 220px;
    }

    .movie-input {
        font-size: 12px;
    }

    .recommendations-container {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .movie-card {
        width: 120px;
    }

    .poster-container {
        height: 180px;
    }

    .social-links i {
        font-size: 32px;
    }
}

/* Yatay mod için ek düzenlemeler */
@media (max-height: 600px) and (orientation: landscape) {
    .main-content {
        padding: 0.5rem;
    }

    .movie-selection {
        flex-direction: row;
        gap: 10px;
    }

    .movie-box {
        height: 200px;
    }

    .preview-container {
        height: 160px;
    }

    .plus-sign {
        transform: none;
        margin: 0 10px;
    }
}

.placeholder-text {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.movie-preview:hover {
    transform: translateY(-2px);
}

.movie-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 0;
}

.rating {
    color: #ffd700;
    font-weight: bold;
    font-size: 0.9em;
}

.year {
    color: #aaa;
    font-size: 0.9em;
}

.original-title {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.overview {
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 15px;
}

.trailer-btn {
    display: inline-block;
    padding: 8px 15px;
    background: #e50914;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.trailer-btn:hover {
    background: #ff0a16;
}

.no-results, .error {
    text-align: center;
    padding: 2rem;
    margin: 1rem auto;
    color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.no-results i, .error i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    display: block;
}

.no-results p, .error p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.error i {
    color: #f44336;
}

/* Autocomplete styles */
input::-webkit-calendar-picker-indicator {
    display: none;
}

datalist {
    display: none;
}

/* Modal Styles - Basitleştirildi */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.modal-content {
    position: relative;
    background-color: #2D1B38;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #c800a7;
}

.modal h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

/* Notification - Tek tanım */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.notification.success {
    background-color: #4CAF50;
}

.notification.error {
    background-color: #f44336;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.btn-pink {
    background-color: #c800a7;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-pink:hover {
    background-color: #a00084;
    color: white;
}

.notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #4CAF50;
    color: white;
    padding: 1rem;
    text-align: center;
    z-index: 1000;
    display: none;
    animation: slideDown 0.5s ease-out;
}

.notification-banner.error {
    background-color: #f44336;
}

.notification-banner .notification-message {
    margin-right: 1rem;
}

.notification-banner .close-notification {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Form Stilleri - Birleştirildi */
.contact-container,
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-container h2,
.contact-form h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: #333333;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn,
.contact-container button {
    width: 100%;
    padding: 1rem;
    background-color: #c800a7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover,
.contact-container button:hover {
    background-color: #a00084;
}

.success-message {
    background-color: #4caf50;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-message {
    background-color: #f44336;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.find-btn {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: bold;
    padding: 12px 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.find-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
}

/* Social Links - Temizlenmiş */
.social-links {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links i {
    font-size: 40px;
    color: #c800a7;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
    color: #ff6b6b;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Instagram Logo - Eski Hal */
.instagram-logo {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
}

.instagram-logo i {
    font-size: 50px;
    color: #E1306C;
}

.instagram-logo .username {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: white;
    font-weight: bold;
    pointer-events: none;
}


/* ==============================================
   FILM DETAY MODAL - PROFESSIONAL DESIGN
   ============================================== */

#movieDetailModal .modal-content {
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%) !important;
    color: white !important;
    border: 1px solid #555 !important;
    max-width: 900px;
    width: 100%;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    overflow: hidden;
}

#movieDetailModal .modal-dialog {
    max-width: 900px;
    margin-top: 3rem !important;
}

#movieDetailModal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 1.5rem 2rem !important;
    background: rgba(255, 255, 255, 0.05);
}

#movieDetailModal .modal-title {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
}

#movieDetailModal .modal-body {
    color: white !important;
    padding: 2rem !important;
}

#movieDetailModal .modal-poster {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

#movieDetailModal .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 1.5rem 2rem !important;
    background: rgba(255, 255, 255, 0.05);
}

#movieDetailModal .rating-label,
#movieDetailModal .genres-label {
    color: #999 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
}

#movieDetailModal .rating-value {
    color: #ffd700 !important;
    font-size: 1.4rem !important;
    font-weight: 700 !important;
}

#movieDetailModal .genres-value {
    color: #e0e0e0 !important;
}

#movieDetailModal .movie-overview h6 {
    color: #999 !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    margin-bottom: 1rem !important;
}

#movieDetailModal .movie-overview p {
    color: #d0d0d0 !important;
    line-height: 1.8 !important;
    font-size: 1rem !important;
}

#movieDetailModal .btn {
    background: linear-gradient(135deg, #8b0070 0%, #6a0056 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 0, 112, 0.3);
}

#movieDetailModal .btn:hover {
    background: linear-gradient(135deg, #a0007d 0%, #8b0070 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 0, 112, 0.5);
}

#movieDetailModal .btn i {
    font-size: 1.1rem;
}

#movieDetailModal .movie-rating,
#movieDetailModal .movie-genres {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #8b0070;
}




/* ==============================================
   TOP RIGHT BUTTONS
   ============================================== */

.top-right-buttons {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.top-right-buttons a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    padding: 0;
}

.top-right-buttons a:hover {
    opacity: 0.7;
    transform: scale(1.05);
}

.mobile-buttons {
    display: none;
}

@media (max-width: 768px) {
    .top-right-buttons {
        display: none !important;
    }
    
    .mobile-buttons {
        display: block;
        text-align: center;
        margin: 20px 0;
    }
    
    .mobile-buttons .top-right-buttons {
        display: flex !important;
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin: 0;
        gap: 15px;
        z-index: 1001;
    }
    
    .mobile-buttons .top-right-buttons a {
        font-size: 14px;
        background: rgba(0, 0, 0, 0.7);
        padding: 8px 16px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        color: white !important;
    }
}

@media (max-width: 576px) {
    .mobile-buttons {
        margin: 15px 0;
    }
    
    .mobile-buttons .top-right-buttons {
        gap: 10px;
    }
    
    .mobile-buttons .top-right-buttons a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ==============================================
   WELCOME MODAL STYLES
   ============================================== */

#welcomeModal .modal-content {
    background-color: var(--bg-color);
    color: white;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
}

#welcomeModal .modal-header {
    border-bottom: 1px solid var(--primary-color);
    padding: 1.5rem;
}

#welcomeModal .modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 100%;
}

#welcomeModal .modal-body {
    padding: 2rem;
}

.welcome-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.welcome-option {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.welcome-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ==============================================
   THEME BACKGROUND EMOJIS
   ============================================== */

/* Arkadaş Teması - Mavi - El Sıkışma */
body.theme-friend .heart-bg::before {
    content: '\f2b5'; /* El Sıkışma */
    color: #008364;
}

body.theme-friend .movie-box {
    background-color: #B8860B !important; /* Koyu sarı */
}

/* Aile Teması - Yeşil - Ev */
body.theme-family .heart-bg::before {
    content: '\f015'; /* Ev */
    color: #ffa200;
}

body.theme-family .movie-box {
    background-color: #249900ae !important; /* Koyu beyaz/açık gri */
    color: #333 !important; /* Koyu yazı rengi */
}

body.theme-family .movie-box h2 {
    color: #333 !important; /* Başlık için koyu renk */
}

body.theme-family .movie-input {
    color: #333 !important; /* Input yazı rengi */
    background-color: rgba(0, 0, 0, 0.1) !important; /* Hafif koyu arka plan */
}

body.theme-family .movie-input::placeholder {
    color: rgba(0, 0, 0, 0.6) !important; /* Placeholder rengi */
}

/* Sevgili Teması - Pembe - Kalp (varsayılan) */
body.theme-lover .heart-bg::before,
.heart-bg::before {
    content: '\f004'; /* Kalp */
    color: #8d0832;
}

body.theme-lover .movie-box {
    background-color: #6a0056 !important; /* Varsayılan pembe/mor */
}

/* Tema geçişleri için animasyon */
.heart-bg::before {
    transition: all 0.8s ease-in-out;
}

.movie-box {
    transition: background-color 0.5s ease-in-out !important;
}