* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #050505; /* Nagyon sötét fekete */
    color: white;
    line-height: 1.6;
}

/* Navigáció */
.navbar {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    gap: 5px; /* Távolság a szavak között */
}

.logo .red {
    color: #ff4d4d; /* Szép piros */
}

.logo .white {
    color: #ffffff; /* Tiszta fehér */
}

.logo .green {
    color: #2ecc71; /* Chad zöld */
}

.change.up { color: #00ff88; }       /* Zöld a növekedésnek */
.change.down { color: #ff4444; }     /* Piros a csökkenésnek */
.change.neutral { color: #777777; }  /* Szürke, ha nincs változás */
.change.hot { 
    background: linear-gradient(90deg, #ff4d00, #ff9f1c);
    padding: 2px 0; /* Oldalsó padding törlése */
    border-radius: 4px;
    color: white;
    font-weight: bold;
    
    /* ÚJ RÉSZEK: */
    width: 60px;       /* Állítsd be olyan szélesre, ami tetszik */
    text-align: center; /* Hogy a szöveg középen legyen */
    display: inline-block; /* Hogy a szélesség érvényesüljön */
}

.menu a {
    color: #aaa;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.menu a.active, .menu a:hover {
    color: white;
}

.member-btn {
    background: #ff9f1c;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero szekció */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, #1a140a 0%, #050505 70%);
}

.update-tag {
    color: #ff9f1c;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.subtitle {
    color: #888;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Ranglista */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.ranking-header {
    display: grid;
    grid-template-columns: 50px 1fr 100px;
    padding: 15px;
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.rank-item {
    display: grid;
    grid-template-columns: 50px 1fr 100px;
    align-items: center;
    background: #111;
    margin-bottom: 8px;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.rank-item:hover {
    border-color: #ff9f1c;
    background: #151515;
    transform: scale(1.01);
}

.rank-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #333; /* Helykitöltő ha nincs kép */
    margin-right: 15px;
    object-fit: cover;
}

.name-box {
    display: flex;
    align-items: center;
}

.info h3 {
    font-size: 1rem;
}

.info p {
    font-size: 0.75rem;
    color: #ff9f1c;
}

.change.up { color: #00ff88; }
.change.hot { 
    background: #ff4d00;
    padding: 2px 8px;
    border-radius: 4px;
    color: white;
    font-size: 0.7rem;
}

/* Battle Oldal fejléc */
.battle-header {
    text-align: center;
    padding: 40px 0 20px;
}

.battle-header h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 5px;
    color: white;
}

.battle-header p {
    color: #555;
    text-transform: uppercase;
}

/* Battle Kártyák */
.battle-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
}

.battle-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.battle-card {
    position: relative;
    width: 380px;
    height: 550px;
    background: #111;
    border: 3px solid #222;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Kép középre igazítása és vágása */
.battle-card .img-container {
    width: 100%;
    height: 100%;
}

.battle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* EZ fontos: kitölti a teret és középre néz */
    object-position: center top;
}

/* HOVER effekt: Kiemelkedik és sárga keret */
.battle-card:hover {
    transform: scale(1.03) translateY(-10px);
    border-color: #ff9f1c;
    box-shadow: 0 10px 30px rgba(255, 159, 28, 0.4);
}

/* Szöveg a képen (Gradienttel) */
.battle-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

/* Progressbar */
.progress-container {
    width: 300px;
    margin: 20px auto;
    background: #222;
    height: 8px;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.progress-bar {
    height: 100%;
    background: #ff9f1c; /* Sárga/narancs mint az eredeti */
    width: 0%;
    border-radius: 10px;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(255, 159, 28, 0.5);
}

#progress-text {
    position: absolute;
    right: -45px;
    top: -6px;
    color: #888;
    font-size: 0.8rem;
    font-weight: bold;
}

/* VS elválasztó */
.vs-divider {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    color: #ff9f1c;
}

/* ANIMÁCIÓK a választáshoz */
.winner-effect {
    transform: scale(1.1);
    border-color: #ff9f1c !important;
    z-index: 10;
}

.loser-effect {
    filter: grayscale(1) brightness(0.5);
    transform: scale(0.9);
    opacity: 0.5;
}

.winner-box { text-align: center; }

/* Footer Design */
.footer {
    border-top: 1px solid #222;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #050505;
    margin-top: 100px;
    font-size: 0.8rem;
    color: #666;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    margin-right: 20px;
}

.footer-links a:hover { color: white; }

/* lexikon */
/* Lexikon Új Design */
.lexikon-header {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle, #1a1a1a 0%, #050505 100%);
}

.lexikon-header h1 {
    font-size: 3.5rem;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.search-box {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
    background: #111;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 10px 20px;
}

.search-box input {
    background: transparent;
    border: none;
    color: white;
    width: 90%;
    padding-left: 10px;
    outline: none;
}

.lexikon-list {
    max-width: 900px;
    margin: 40px auto;
}

.lex-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #222;
    transition: 0.3s;
}

.lex-row:hover {
    background: rgba(255, 159, 28, 0.05);
}

.lex-term {
    font-weight: 900;
    color: #ff9f1c;
    flex-basis: 30%;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.lex-def {
    flex-basis: 65%;
    color: #aaa;
    line-height: 1.6;
}

/* Zenelejátszó Widget a sarokba */
.music-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #111;
    border: 1px solid #ff9f1c;
    padding: 15px;
    border-radius: 15px;
    width: 200px;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.track-info {
    font-size: 0.7rem;
    color: #ff9f1c;
    margin-bottom: 10px;
    overflow: hidden;
    white-space: nowrap;
}

.controls {
    display: flex;
    justify-content: space-around;
}

.controls button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}

.controls button:hover { color: #ff9f1c; }

/* Rules Page Specific */
.rules-page {
    background-color: #000;
}

.rules-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.rules-main-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 15px;
    color: #fff;
    margin-bottom: 80px;
}

.rule-card {
    position: relative;
    margin-bottom: 100px; /* Nagyobb hely a kártyák között */
    display: flex;
    justify-content: center;
    align-items: center;
}

.rule-number-bg {
    position: absolute;
    font-size: 12rem; /* Brutál nagy szám a háttérben */
    font-weight: 900;
    color: rgba(255, 159, 28, 0.1); /* Halvány sárga/narancs */
    z-index: 1;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-style: italic;
}

.rule-box {
    position: relative;
    z-index: 2;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    padding: 40px;
    border-radius: 4px; /* Inkább szögletes, mint az eredeti */
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.rule-box h3 {
    color: #ff9f1c;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.rule-box p {
    color: #999;
    line-height: 1.6;
    font-size: 1.1rem;
}

.rule-card:hover .rule-number-bg {
    color: rgba(255, 159, 28, 0.2);
    transition: 0.3s;
}

.rule-card:hover .rule-box {
    border-color: #333;
}

/* Methodology / Rules Design */
.methodology-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.methodology-header p {
    font-size: 1.2rem;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Két oszlop továbbra is */
    gap: 20px;
}

.method-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    display: flex; /* Az ikon és a szöveg egymás mellé kerül */
    align-items: flex-start;
    gap: 20px;
    transition: 0.2s;
    height: auto; /* Téglalap forma a tartalomhoz igazodva */
}

.method-card:hover {
    border-color: #333;
    background: #0f0f0f;
}

.method-icon {
    color: #ff9f1c;
    font-size: 1.4rem;
    margin-top: 5px;
    flex-shrink: 0; /* Ne nyomódjon össze az ikon */
}

.method-text h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.method-text p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobilon egy oszlop */
@media (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

/* Scoring Factors Section */
.scoring-container {
    background: #050505; /* Nagyon sötét háttér a keretnek */
    border: 1px solid #1a1a1a;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 100px;
}

.scoring-main-title {
    color: #ff9f1c;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    text-align: left; /* Balra zárt cím, mint az eredetin */
}

.scoring-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 oszlopos elrendezés */
    gap: 20px;
}

.score-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.score-card:hover {
    border-color: #333;
    background: #111;
}

.score-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.score-card p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobilon egy oszlopba rendeződik */
@media (max-width: 768px) {
    .scoring-grid {
        grid-template-columns: 1fr;
    }
    .scoring-container {
        padding: 30px 20px;
    }
}

/* Community Guidelines Section */
.community-guidelines {
    max-width: 1100px;
    margin: 0 auto 100px; /* Alul hagyunk helyet a lábléc előtt */
}

.guidelines-box {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    padding: 50px;
    border-radius: 20px;
}

.guidelines-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.guidelines-header i {
    color: #ff9f1c;
    font-size: 2rem;
}

.guidelines-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guidelines-intro {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.guidelines-list li {
    color: #888;
    font-size: 1rem;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

/* Kis pontok a lista elé */
.guidelines-list li::before {
    content: "•";
    color: #ff9f1c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.guidelines-footer {
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
}

.guidelines-footer p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.6;
}

/* Mobilon kisebb padding */
@media (max-width: 768px) {
    .guidelines-box {
        padding: 30px;
    }
}

/* Vote Page Design */
.vote-page { background: #000; }

.vote-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    height: 80vh;
    gap: 20px;
    padding: 0 20px;
}

/* Bal oldali lista */
.vote-sidebar {
    flex: 1;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header { padding: 20px; border-bottom: 1px solid #1a1a1a; }
.sidebar-header h2 { font-size: 1.2rem; color: #fff; margin-bottom: 5px; }
.sidebar-header p { font-size: 0.8rem; color: #555; }

.chad-selection-list {
    overflow-y: auto;
    padding: 10px;
}

.selection-item {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.2s;
    border: 1px solid transparent;
    margin-bottom: 5px;
}

.selection-item:hover { background: #111; border-color: #333; }
.selection-item img { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.selection-info h4 { font-size: 0.95rem; color: #eee; margin-bottom: 2px; }
.selection-info span { font-size: 0.75rem; color: #666; }

/* Sárga aktív állapot */
.active-selection {
    background: rgba(255, 159, 28, 0.1) !important;
    border-color: #ff9f1c !important;
}

/* Jobb oldali panel */
.vote-panel {
    flex: 2;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.empty-state { text-align: center; color: #444; }
.empty-state i { font-size: 3rem; margin-bottom: 20px; }

/* Aktív panel elemei */
.active-vote-header { width: 100%; display: flex; align-items: center; gap: 20px; margin-bottom: 30px; }
.header-img { width: 80px; height: 80px; border-radius: 15px; object-fit: cover; border: 2px solid #ff9f1c; }
.header-text h2 { color: #fff; font-size: 1.8rem; }
.header-text p { color: #ff9f1c; font-weight: bold; }

/* --- JAVÍTOTT SZAVAZÁS RÉSZLEG --- */

/* Vastagabb, olvasható % sáv */
.stats-bar {
    width: 100%;
    height: 60px; /* Megemeltük 60-ra, hogy jó vaskos legyen */
    background: #111;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid #1a1a1a; /* Erősebb keret */
}

.stat-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Nagyobb számok */
    font-weight: 900;
    color: #fff; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: width 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.no-votes {
    height: 60px;
    line-height: 60px;
    background: #0a0a0a;
    color: #444;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rising { background: #2ecc71; border-right: 1px solid rgba(0,0,0,0.2); }
.overrated { background: #e74c3c; }

/* Választó gombok stílusa (Vízszintes téglalapok) */
.vote-actions { 
    display: flex; 
    gap: 20px; 
    width: 100%; 
    margin-bottom: 40px; 
}

.vote-btn-select {
    flex: 1;
    padding: 15px;
    background: #0d0d0d;
    border: 1px solid #222;
    color: #666;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Kijelölt állapotok */
.selected-up {
    background: rgba(46, 204, 113, 0.1) !important;
    border-color: #2ecc71 !important;
    color: #2ecc71 !important;
}

.selected-down {
    background: rgba(231, 76, 60, 0.1) !important;
    border-color: #e74c3c !important;
    color: #e74c3c !important;
}

/* Nagy Küldés gomb */
.submit-comment {
    background: #ff9f1c;
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    width: 25%; /* Hogy ne legyen batár nagy a beviteli mező mellett */
}

.submit-comment:hover {
    background: #ffa500;
    transform: scale(1.02);
}

/* Komment rész */
.comment-section { width: 100%; border-top: 1px solid #1a1a1a; padding-top: 30px; }
.comment-section input {
    background: #111;
    border: 1px solid #222;
    padding: 12px;
    border-radius: 5px;
    color: #fff;
    width: 70%;
    margin-right: 10px;
}
.submit-comment {
    background: #ff9f1c;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.comment-item span { 
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* Már szavaztál üzenet */
.already-voted {
    color: #ff9f1c;
    font-weight: bold;
    margin-bottom: 25px;
    background: rgba(255, 159, 28, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px inset rgba(255, 159, 28, 0.2);
}

/* Komment lista mint az eredetin */
.comment-list {
    width: 100%;
    margin-top: 20px;
    max-height: 250px; /* Itt állítod be, mikor kezdjen görgetni */
    overflow-y: auto;
    padding-right: 10px;
}

.comment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a; /* Vékony elválasztó csík */
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-item strong {
    color: #eee;
    font-size: 0.95rem;
}

/* Ikonok színei */
.vote-icon-up {
    color: #2ecc71; /* Zöld like ikon */
    font-size: 1.1rem;
}

.vote-icon-down {
    color: #e74c3c; /* Piros dislike ikon */
    font-size: 1.1rem;
}

/* Görgetősáv (Scrollbar) szépítése */
.comment-list::-webkit-scrollbar {
    width: 5px;
}
.comment-list::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

/* --- MEMBERSHIP PAGE STYLES --- */
.membership-page {
    background-color: #0d1117; /* Sötétkék alap, mint az eredeti képeden */
    color: white;
}

.membership-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
}

.membership-header {
    text-align: center;
    margin-bottom: 60px;
}

.membership-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.membership-header p {
    color: #8b949e;
    font-size: 1.2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: 0.3s;
}

/* Arany keret a középsőnek */
.pricing-card.featured {
    border: 2px solid #ff9f1c;
    transform: scale(1.05);
    background: #1c2128;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff9f1c;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.card-icon {
    font-size: 2.5rem;
    color: #ff9f1c;
    margin-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    color: #8b949e;
}

.subtitle {
    color: #8b949e;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #c9d1d9;
}

.features li i {
    color: #2ecc71;
    font-size: 0.8rem;
}

/* Discord Gomb */
.discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ff9f1c;
    color: #000;
    text-decoration: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: lowercase; /* Mivel a disc neved kisbetűs */
    transition: 0.2s;
}

.discord-btn:hover {
    background: #ffa500;
    transform: translateY(-3px);
}

.btn-info {
    text-align: center;
    font-size: 0.75rem;
    color: #8b949e;
    margin-top: 15px;
}

/* Disabled kártya (Tera Chad) */
.pricing-card.disabled {
    opacity: 0.6;
}

.pricing-card.disabled .features li i {
    color: #ff9f1c;
}

@media (max-width: 900px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
}

/* --- RÓLUNK OLDAL --- */
.about-page {
    background-color: #0d1117;
    color: #e6edf3;
}

.about-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-icon {
    font-size: 2.5rem;
    color: #ff9f1c;
    margin-bottom: 15px;
}

.about-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-header p {
    color: #8b949e;
    font-size: 1.1rem;
}

.about-card {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
}

.about-card h3 {
    color: #ff9f1c;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-card p {
    line-height: 1.6;
    color: #c9d1d9;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.about-grid .about-card {
    margin-bottom: 0;
    padding: 25px;
}

.about-grid .icon {
    font-size: 1.5rem;
    color: #ff9f1c;
    margin-bottom: 15px;
    display: block;
}

.about-grid h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Miért létezünk kártya egyedi kerettel */
.about-card.existence {
    border: 1px solid rgba(255, 159, 28, 0.3);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ANALITIKA OLDAL --- */
.analytics-page {
    background-color: #0b0e14;
    color: white;
}

.analytics-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
}

.analytics-header {
    text-align: center;
    margin-bottom: 40px;
}

.analytics-header h1 {
    font-size: 2.5rem;
    color: #ff9f1c;
    margin-bottom: 10px;
}

.analytics-header p {
    color: #8b949e;
}

/* Stat rács */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon.yellow { color: #ff9f1c; }
.stat-icon.orange { color: #f39c12; }
.stat-icon.blue { color: #3498db; }
.stat-icon.green { color: #2ecc71; }

.stat-info span {
    color: #8b949e;
    font-size: 0.9rem;
    display: block;
}

.stat-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
}

/* AdSense kártya */
.adsense-card {
    background: rgba(46, 204, 113, 0.05);
    border: 1px solid #2ecc7133;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.adsense-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.adsense-status i {
    color: #2ecc71;
    font-size: 2rem;
}

/* Szponzor kártya */
.sponsorship-card {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.sponsorship-card a {
    color: #ff9f1c;
    font-weight: bold;
    text-decoration: none;
}

/* Acquisition Box */
.acquisition-box {
    background: #161b22;
    border: 1px solid #ff9f1c33;
    padding: 40px;
    border-radius: 15px;
}

.acq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ff9f1c;
}

.acq-desc {
    color: #c9d1d9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.acq-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.acq-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c9d1d9;
}

.acq-list i { color: #ff9f1c; font-size: 0.9rem; }

.acq-footer {
    border-top: 1px solid #30363d;
    padding-top: 25px;
}

.acq-link {
    color: #ff9f1c;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin: 15px 0;
}

.disclaimer {
    font-size: 0.8rem;
    color: #8b949e;
}

@media (max-width: 600px) {
    .stats-grid { grid-template-columns: 1fr; }
}

/* --- ADATVÉDELMI OLDAL --- */
.privacy-page {
    background-color: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
}

.privacy-container {
    max-width: 800px; /* Keskenyebb konténer az olvashatóságért */
    margin: 80px auto;
    padding: 0 20px;
}

.privacy-container h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #30363d;
    padding-bottom: 20px;
}

.privacy-content h3 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.privacy-content a {
    color: #58a6ff;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* --- KAPCSOLAT OLDAL --- */
.contact-page {
    background-color: #0b0e14;
    color: white;
}

.contact-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.contact-container h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-container .subtitle {
    color: #8b949e;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #161b22;
    border: 1px solid #30363d;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: #ff9f1c;
}

.contact-card i {
    font-size: 2rem;
    color: #ff9f1c;
    width: 40px;
    text-align: center;
}

.contact-info span {
    display: block;
    color: #8b949e;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-info a, .contact-info p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff9f1c;
    text-decoration: none;
}

.social-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 0.9rem !important;
    color: #58a6ff !important;
    font-weight: normal !important;
}

.response-time {
    margin-top: 40px;
    color: #8b949e;
    font-size: 0.95rem;
}

.social-btn {
    background: #4791f8;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.f-logo {
    height: 30px;      /* Ez a legfontosabb: rögzíti a magasságot */
    width: auto;       /* Megtartja az eredeti arányokat */
    margin-right: 10px; /* Hogy ne tapadjon rá a felirat */
    vertical-align: middle; /* Hogy egy vonalba kerüljön a szöveggel */
}

.footer-left {
    display: flex;
    align-items: center; /* Függőlegesen középre rakja a logót és a nevet */
}

.battle-leaderboard {
    background: #151921;
    border-radius: 12px;
    padding: 20px;
    max-width: 800px;
    margin: 40px auto;
    border: 1px solid #222;
}

.leaderboard-title {
    color: #ff9f1c;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #222;
}

.leaderboard-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.l-rank { font-weight: bold; color: #ff9f1c; width: 20px; }
.l-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.l-name { font-weight: 500; color: white; }
.l-wins { color: #ff9f1c; font-weight: 900; }

/* Preloader Alapstílus */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000; /* Teljes fekete */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Minden felett legyen */
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #ff0000, #ffffff, #00ff00); /* Magyar színek diszkréten */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

.loader-text {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
}

.loader-bar {
    width: 100px;
    height: 2px;
    background: #fff;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff0000;
    animation: loading 2s linear infinite;
}

/* Animációk */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Eltüntetéshez szükséges osztály */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.trends-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

.trend-box {
    flex: 1;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 15px;
}

.trend-box.risers { border-left: 4px solid #00ff88; }
.trend-box.drops { border-left: 4px solid #ff4444; }

.trend-header {
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.risers .trend-header { color: #00ff88; }
.drops .trend-header { color: #ff4444; }

.trend-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.trend-item:last-child { border-bottom: none; }

.trend-name {
    font-size: 1rem;
    color: #eee;
}

.trend-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.badge-up { background: rgba(0, 255, 136, 0.15); color: #00ff88; }
.badge-down { background: rgba(255, 68, 68, 0.15); color: #ff4444; }
.badge-hot { background: #ffaa00; color: #000; text-transform: uppercase; }

/* Profil Oldal Design */
.profile-page {
    background: #0a0a0c;
}

.profile-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.profile-card-large {
    background: #121216;
    border: 1px solid #222;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.profile-header-main {
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(to right, #16161d, #121216);
}

.profile-img-container {
    position: relative;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #333;
}

.rank-badge-large {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #ffaa00;
    color: #000;
    padding: 5px 12px;
    border-radius: 8px;
    font-weight: 900;
    font-size: 1.2rem;
}

.profile-title-section h1 {
    font-size: 2.5rem;
    margin: 0;
}

.sub-title {
    color: #888;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 10px;
}

.score-tag {
    display: inline-block;
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid rgba(255, 170, 0, 0.3);
}

.profile-navigation {
    display: flex;
    border-bottom: 1px solid #222;
    background: #16161d;
}

.nav-tab {
    flex: 1;
    background: none;
    border: none;
    color: #888;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.nav-tab.active {
    color: #fff;
    border-bottom: 2px solid #ffaa00;
}

.profile-body {
    padding: 40px;
}

.bio-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
    background: #1a1a20;
    padding: 20px;
    border-radius: 10px;
}

.stats-section { margin-top: 30px; }

.full-bar {
    height: 12px;
    background: #ff4444; /* Ez lesz az Overrated (piros) alap */
    border-radius: 6px;
    margin-top: 10px;
    overflow: hidden;
}

.fill-bar {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00bd65); /* Ez marad a Rising Star (zöld) */
}

/* Nyíl ikon a főoldali listához */
.rank-right-side {
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-icon {
    color: #444;
    transition: 0.3s;
}

.rank-item:hover .arrow-icon {
    color: #ffaa00;
    transform: translateX(5px);
}

.rank-right-side {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto; /* Ez tolja ki teljesen jobbra */
}

.arrow-icon {
    color: #333;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.rank-item:hover .arrow-icon {
    color: #ffaa00;
    transform: translateX(5px);
}

.community-main { max-width: 900px; margin: 40px auto; padding: 20px; }
.comm-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.red-text { color: #ff4444; font-size: 0.9rem; }

.post-item {
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
}

.post-tag-badge {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-right: 10px;
}

.post-author { color: #8b949e; font-size: 0.85rem; }
.post-item h3 { margin: 15px 0 10px 0; font-size: 1.2rem; }
.post-item p { color: #c9d1d9; line-height: 1.5; }

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    color: #8b949e;
}

.delete-icon {
    cursor: pointer;
    transition: 0.3s;
}

.delete-icon:hover { color: #ff4444; }

.comm-input, .comm-textarea, .comm-select {
    width: 100%;
    background: #0d1117;
    border: 1px solid #30363d;
    color: white;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.comm-textarea { height: 100px; resize: none; }

.login-banner {
    background: #161b22;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    border: 1px dashed #444;
}

/* Auth & Community Modernizáció */
.auth-page, .community-page {
    background-color: #0a0a0c;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.auth-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-card {
    background: #121216;
    border: 1px solid #222;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.auth-logo {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.auth-card h2 { margin-bottom: 10px; font-weight: 700; }
.auth-card p { color: #888; margin-bottom: 25px; font-size: 0.9rem; }

.auth-card input, .comm-input, .comm-textarea, .comm-select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    background: #1a1a20;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-family: inherit;
    transition: 0.3s;
}

.auth-card input:focus { border-color: #ffaa00; outline: none; }

.auth-btn {
    width: 100%;
    padding: 14px;
    background: #ffaa00;
    color: #000;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-btn:hover { background: #e69900; transform: translateY(-2px); }

.auth-footer { margin-top: 20px; color: #888; }
.auth-footer a { color: #ffaa00; text-decoration: none; font-weight: bold; }

/* Community Speciális */
.community-main { max-width: 800px; margin: 100px auto 40px; padding: 0 20px; }
.comm-header { margin-bottom: 40px; }
.post-item {
    background: #121216;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.post-item:hover { border-color: #444; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.post-tag-badge {
    background: rgba(255, 170, 0, 0.1);
    color: #ffaa00;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}
.delete-icon { color: #444; cursor: pointer; float: right; }
.delete-icon:hover { color: #ff4444; }

/* Komment szekció stílusa */
.comments-section {
    animation: fadeIn 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Egyedi komment box */
.comment-item {
    border-left: 2px solid #00ff88;
    margin-bottom: 12px;
    padding-left: 10px;
}

/* Komment input mező */
.comment-input-wrapper input {
    width: 100%;
    background: #111 !important;
    border: 1px solid #333 !important;
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    outline: none;
    transition: 0.3s;
}

.comment-input-wrapper input:focus {
    border-color: #00ff88 !important;
}

@media (max-width: 768px) {

    /* 1. ZENELEJÁTSZÓ ELTÜNTETÉSE */
    .music-player {
        display: none !important;
    }

    /* 2. NAVBAR */
    .navbar {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 8px 0 10px !important;
        gap: 8px !important;
    }

    .menu {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 4px !important;
        width: 95% !important;
        margin: 0 auto !important;
    }

    .menu a {
        font-size: 0.68rem !important;
        padding: 9px 4px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important;
        background: rgba(255,255,255,0.04) !important;
        border: 1px solid rgba(255,215,0,0.15) !important;
        border-radius: 6px !important;
        white-space: nowrap !important;
    }

    .menu a i {
        font-size: 0.9rem !important;
    }

    /* 3. BATTLE HEADER */
    .battle-header {
        padding: 15px 0 10px !important;
    }

    .battle-header h1 {
        font-size: 1.6rem !important;
        letter-spacing: 3px !important;
    }

    .battle-header p {
        font-size: 0.75rem !important;
        margin: 4px 0 !important;
    }

    .progress-container {
        width: 80% !important;
        margin: 10px auto !important;
    }

    /* 4. BATTLE SECTION */
    .battle-section {
        min-height: unset !important;
        padding: 0 8px !important;
    }

    .battle-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: center !important;
        gap: 8px !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .battle-card {
        width: 42vw !important;
        height: 56vw !important;
        max-width: 200px !important;
        max-height: 266px !important;
        border-radius: 12px !important;
        padding: 0 !important;
    }

    .battle-card .img-container {
        width: 100% !important;
        height: 100% !important;
    }

    .battle-card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
        border-radius: 0 !important;
    }

    .battle-info {
        padding: 20px 8px 8px !important;
    }

    .battle-info h2 {
        font-size: clamp(0.6rem, 3.5vw, 0.95rem) !important;
        margin: 0 0 2px !important;
        line-height: 1.2 !important;
    }

    .battle-info p {
        font-size: clamp(0.5rem, 2.8vw, 0.75rem) !important;
        margin: 0 !important;
        opacity: 0.85 !important;
    }

    .vs-divider {
        font-size: 1.3rem !important;
        align-self: center !important;
        flex-shrink: 0 !important;
        padding: 0 2px !important;
    }

    /* ========================
       5. SZAVAZÁS OLDAL
       ======================== */

    /* Sidebar + panel egymás alá, teljes szélességű */
    .vote-container {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        overflow: visible !important;
    }

    /* Sidebar: vízszintes görgethető lista */
    .vote-sidebar {
        width: 100% !important;
        height: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #222 !important;
        padding: 10px !important;
    }

    .vote-sidebar .sidebar-header h2 {
        font-size: 1rem !important;
        margin: 0 0 4px !important;
    }

    .vote-sidebar .sidebar-header p {
        font-size: 0.7rem !important;
        margin: 0 0 8px !important;
    }

    /* Chad lista: vízszintesen görgethető csíkok */
    .chad-selection-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 8px !important;
        padding-bottom: 6px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }

    .chad-selection-list::-webkit-scrollbar {
        display: none !important; /* Chrome */
    }

    /* Minden chad elem: kis kártya vízszintes sorban */
    .selection-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-width: 70px !important;
        max-width: 70px !important;
        gap: 4px !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
    }

    .selection-item img {
        width: 52px !important;
        height: 52px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        border: 2px solid #333 !important;
    }

    .selection-item.active-selection img {
        border-color: #ff9f1c !important;
    }

    .selection-info h4 {
        font-size: 0.58rem !important;
        text-align: center !important;
        color: #eee !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }

    .selection-info span {
        display: none !important; /* titulus elrejtése, nem fér el */
    }

    /* Vote panel: teljes szélességű alatta */
    .vote-panel {
        width: 100% !important;
        padding: 12px !important;
        overflow-y: visible !important;
        height: auto !important;
    }

    /* Header (kép + név) */
    .active-vote-header {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 12px !important;
    }

    .header-img {
        width: 60px !important;
        height: 60px !important;
        border-radius: 10px !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }

    .header-text h2 {
        font-size: 1.1rem !important;
        margin: 0 0 2px !important;
        line-height: 1.2 !important;
    }

    .header-text p {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    /* Stat sáv */
    .stats-bar {
        height: 40px !important;
        margin-bottom: 15px !important;
    }

    .stat-segment {
        font-size: 1rem !important;
    }

    /* Szavazó gombok: egymás mellé, teljes sor */
    .vote-actions {
        flex-direction: row !important;
        gap: 8px !important;
        margin-bottom: 15px !important;
    }

    .vote-btn-select {
        flex: 1 !important;
        padding: 12px 6px !important;
        font-size: 0.78rem !important;
        gap: 5px !important;
    }

    /* Input + gomb egy sorba */
    .comment-section {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        padding-top: 15px !important;
    }

    .comment-section input {
        flex: 1 !important;
        width: auto !important;
        margin-right: 0 !important;
        font-size: 0.85rem !important;
        padding: 10px !important;
    }

    .submit-comment {
        width: auto !important;
        padding: 10px 12px !important;
        font-size: 0.72rem !important;
        white-space: nowrap !important;
    }

    /* Komment lista: nem görgetős, mindent mutat */
    .comment-list {
        max-height: none !important;
        overflow-y: visible !important;
        margin-top: 15px !important;
    }

    .comment-item {
        padding: 8px 0 !important;
        gap: 8px !important;
    }

    .comment-item strong {
        font-size: 0.85rem !important;
    }

    /* 6. FOOTER ÉS BODY RESET */
    body {
        padding-bottom: 20px !important;
    }

    footer {
        margin-bottom: 0 !important;
    }
}