
        :root { --bg-color: #050508; --neon-blue: #00f3ff; --neon-pink: #ff00ea; --text-main: #e0e0e0; }
        body { background-color: var(--bg-color); color: var(--text-main); font-family: sans-serif; margin: 0; }
        
        .header-bar { padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; }
        .back-btn { color: var(--neon-blue); text-decoration: none; font-weight: bold; font-size: 1rem; }

        .player-wrapper { max-width: 1200px; margin: 20px auto; padding: 0 15px; }
        
        .support-box { text-align: center; margin-bottom: 25px; background: rgba(255,255,255,0.03); padding: 15px; border-radius: 15px; border: 1px solid rgba(255,0,234,0.2); }
        .revolut-mini { display: inline-block; padding: 10px 20px; background: #ff00ea; color: white; text-decoration: none; border-radius: 25px; font-weight: bold; font-size: 14px; margin-top: 10px; box-shadow: 0 0 15px rgba(255,0,234,0.4); }

        h1 { font-size: 1.5rem; text-align: center; margin-bottom: 20px; color: white; }
        @media (min-width: 768px) { h1 { font-size: 2.5rem; } }

        /* A LEJÁTSZÓ FIX KÓDJA */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 arány */
            height: 0;
            overflow: hidden;
            border: 2px solid var(--neon-blue);
            border-radius: 15px;
            background: #000;
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }


.discord-mini {
  display: inline-block;
  padding: 8px 14px;
  background-color: #5865F2;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.discord-mini:hover {
  background-color: #4752c4;
}


.youtube-mini {
  display: inline-block;
  padding: 8px 14px;
  background-color: #FF0000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.2s;
}

.youtube-mini:hover {
  background-color: #cc0000;
}

/* ÚJ: Autentikáció és Értékelés stílusok */
.auth-link {
    color: var(--neon-pink) !important;
    border: 1px solid var(--neon-pink);
    border-radius: 20px;
}

.review-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    color: var(--text-main);
}

.review-container h2 {
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.review-form { display: flex; flex-direction: column; gap: 15px; }
.review-form textarea {
    background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border);
    color: #fff; padding: 15px; border-radius: 10px; resize: vertical; min-height: 100px;
}

/* 5 Csillagos értékelő rendszer */
.rating { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 5px; }
.rating input { display: none; }
.rating label { font-size: 30px; color: #555; cursor: pointer; transition: 0.2s; }
.rating input:checked ~ label, .rating label:hover, .rating label:hover ~ label { color: #ffd700; text-shadow: 0 0 10px #ffd700; }

.submit-btn {
    background: var(--neon-blue); color: #000; font-weight: bold; padding: 10px 20px;
    border: none; border-radius: 10px; cursor: pointer; transition: 0.3s;
    align-self: flex-start;
}
.submit-btn:hover { background: #fff; box-shadow: 0 0 15px var(--neon-blue); }

.login-prompt { color: #aaa; background: rgba(255,0,234,0.1); padding: 15px; border-radius: 10px; border-left: 3px solid var(--neon-pink);}
.login-prompt a { color: var(--neon-pink); text-decoration: none; font-weight: bold; }

.reviews-list { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.review-item { background: rgba(0,0,0,0.3); padding: 20px; border-radius: 10px; border-left: 3px solid var(--neon-blue); }
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.review-header strong { color: #fff; font-size: 1.1rem; }
.stars { color: #ffd700; letter-spacing: 2px; }
.review-header small { color: #777; margin-left: auto; }

/* Form (Login/Register) konténer az új oldalakhoz */
.auth-container { max-width: 400px; margin: 100px auto; background: var(--glass-bg); padding: 40px; border-radius: 20px; border: 1px solid var(--glass-border); text-align: center;}
.auth-container input { width: 100%; padding: 12px; margin-bottom: 20px; background: rgba(0,0,0,0.5); border: 1px solid #333; color: #fff; border-radius: 8px;}
.auth-container button { width: 100%; padding: 12px; background: var(--neon-pink); color: #fff; border: none; border-radius: 8px; font-weight: bold; cursor: pointer;}


/* --- ÚJ VÁLASZ (REPLY) SZEKCIÓ STÍLUSAI --- */

.action-btn {
    background: transparent;
    color: #aaa;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 0;
    margin-top: 10px;
    transition: 0.2s;
    text-decoration: underline;
}

.action-btn:hover {
    color: var(--neon-blue);
}

.reply-btn {
    margin-bottom: 10px;
}

.reply-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
}

.reply-form textarea {
    background: rgba(0,0,0,0.5); 
    border: 1px solid var(--neon-pink);
    color: #fff; 
    padding: 10px; 
    border-radius: 8px; 
    resize: vertical; 
    min-height: 60px;
    font-family: inherit;
}

.small-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
}

.replies-container {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid rgba(0, 243, 255, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reply-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.latest-reply {
    border: 1px solid rgba(0, 243, 255, 0.1);
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.reply-header strong {
    color: var(--neon-pink);
}

.reply-header small {
    color: #666;
    margin-left: auto;
}

.reply-item p {
    margin: 5px 0 0 0;
    color: #ccc;
}

.toggle-replies-btn {
    align-self: flex-start;
    color: var(--neon-pink);
    font-size: 0.85rem;
    margin-top: 0;
}

.toggle-replies-btn:hover {
    color: #fff;
}


.tiktok-neon {
  display: inline-block;
  padding: 8px 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  background: linear-gradient(45deg, #ff0050, #00f2ea);
  box-shadow:
    0 0 5px #ff0050,
    0 0 10px #ff0050,
    0 0 20px #00f2ea,
    0 0 40px #00f2ea;
  transition: 0.3s ease;
}

.tiktok-neon:hover {
  box-shadow:
    0 0 10px #ff0050,
    0 0 20px #ff0050,
    0 0 40px #00f2ea,
    0 0 80px #00f2ea;
  transform: scale(1.05);
}