body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: white;
    padding: 30px;
}

h1 {
    color: #ffd700;
}

a, button {
    background: #ffd700;
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    display: inline-block;
    font-weight: bold;
}

input, textarea {
    padding: 8px;
    width: 250px;
    border-radius: 5px;
    border: none;
}

.movie-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.movie-card {
    background: #1a1a1a;
    color: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #2b2b2b;
    min-height: 300px;
    transition: 0.3s;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.movie-card h2 {
    color: #ffd700;
    margin-top: 0;
}

.btn {
    background: #ffd700;
    color: black;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    font-weight: bold;
}

.btn:hover,
button:hover {
    background: #ffea70;
}

.poster {
    width: 220px;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.navbar {
    background: linear-gradient(90deg, #1a1a1a, #242424);
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #2b2b2b;
}

.navbar h2 {
    color: #ffd700;
    margin: 0;
}

.navbar a {
    margin-left: 10px;
    background: transparent;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    transition: 0.3s;
}

.navbar a:hover {
    background: #ffd700;
    color: black;
}

.movie-count {
    color: #bbb;
    margin-bottom: 20px;
    font-size: 18px;
}

.welcome {
    color: #ffd700;
    font-weight: bold;
    margin-left: 15px;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: #999;
    border-top: 1px solid #333;
}

@media (max-width: 700px) {
    body {
        padding: 15px;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar a {
        display: block;
        margin: 8px 0;
    }

    .movie-card {
        flex-direction: column;
    }

    .poster {
        width: 100%;
        height: 320px;
    }
}
.search-form {
    margin-bottom: 20px;
}
.search-form input {
    width: 300px;
    padding: 10px;
    background: #1a1a1a;
    color: white;
    border: 2px solid #ffd700;
    border-radius: 8px;
    outline: none;
}

.search-form input:focus {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.search-form input::placeholder {
    color: #888;
}
.rating-form {
    margin: 20px 0;
}

.rating-form select {
    padding: 10px;
    border-radius: 6px;
    background: #1a1a1a;
    color: #ffd700;
    border: 1px solid #ffd700;
    margin-right: 10px;
    font-weight: bold;
}

.rating-form select:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

textarea {
    background: #1a1a1a;
    color: white;
    border: 1px solid #ffd700;
}

textarea::placeholder {
    color: #aaa;
}

input {
    background: #1a1a1a;
    color: white;
    border: 1px solid #ffd700;
}

input::placeholder {
    color: #aaa;
}
/* Film Detay Sayfası */

.movie-detail {
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.movie-detail h1 {
    color: #ffd700;
    margin-top: 0;
    margin-bottom: 20px;
}

.movie-detail p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.section-title {
    color: #ffd700;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Yorum Kartları */

.comment-card {
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-card h3 {
    color: #ffd700;
    margin-top: 0;
}

.comment-card small {
    color: #999;
}

/* Çizgiler */

hr {
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0;
}
.movie-detail {
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.detail-poster {
    width: 260px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.detail-info h1 {
    margin-top: 0;
}

.detail-info p {
    font-size: 18px;
    line-height: 1.6;
}

.section-title {
    color: #ffd700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.comment-card {
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.comment-card h3 {
    color: #ffd700;
    margin-top: 0;
}

.comment-card small {
    color: #999;
}

hr {
    border: none;
    border-top: 1px solid #333;
    margin: 30px 0;
}

@media (max-width: 700px) {
    .movie-detail {
        flex-direction: column;
    }

    .detail-poster {
        width: 100%;
        height: 420px;
    }
}
.home-hero{
    background: linear-gradient(135deg, #1a1a1a, #2b2b2b);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.home-hero h1{
    margin-top: 0;
    font-size: 42px;
}

.home-hero p{
    color: #ddd;
    font-size: 20px;
}
.stats-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.stat-card{
    background: #1a1a1a;
    border: 1px solid #2b2b2b;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.stat-card h2{
    color: #ffd700;
    font-size: 42px;
    margin: 0;
}