body {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
}

.vortex-nav {
    background: linear-gradient(90deg, #161b22 0%, #0d1117 100%);
    border-bottom: 1px solid #30363d;
    padding: 16px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.nav-logo {
    height: 44px;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.2);
}
.nav-title {
    color: #f0f6fc;
    letter-spacing: 1px;
}
.nav-links a {
    color: #8b949e;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
    background-color: #21262d;
}

.content-wrapper {
    min-height: calc(100vh - 80px);
}

.btn-vortex {
    background: linear-gradient(135deg, #0078d7, #00b4ff);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}
.btn-vortex:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 180, 255, 0.4);
    color: white;
}
.movie-card {
    position: relative;
    background: #161b22;
    transition: 0.3s;
}

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

/* A zöld sáv alul */
.available-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(35, 134, 54, 0.9); /* Zöld */
    color: white;
    font-size: 0.7rem;
    text-align: center;
    padding: 4px 0;
    font-weight: bold;
    text-transform: uppercase;
}

/* Zöld keret */
.border-success {
    border: 3px solid #238636 !important;
}
