:root {
    --primary-gold: #C4A068;
    --gold-hover: #D4B078;
    --gold-dark: #A08050;
    --dark-bg: #0E0E0E;
    --darker-bg: #080808;
    --content-bg: #1A1A1A;
    --border-color: #3A3A3A;
    --text-light: #E8E8E8;
    --text-muted: #999999;
    --accent-brown: #6B5D4F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', 'Noto Serif', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    background: #101014 url('../images/bg.png') repeat center center fixed;
    background-size: cover;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header & Navigation
   ======================================== */

.main-header {
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
    letter-spacing: 2px;
}

.logo .subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-top: -3px;
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.5px;
}

.main-nav a:hover {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

/* ========================================
   Page Layout
   ======================================== */

.page-container {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 20px;
    max-width: 1400px;
    margin: 25px auto;
    padding: 0 20px;
}

.main-content {
    background: transparent;
    border: none;
    padding: 0;
}

/* ========================================
   Sidebars
   ======================================== */

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

.widget {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 20px;
}

.widget-gold {
    border-color: var(--primary-gold);
}

.widget-brown {
    background: rgba(107, 93, 79, 0.1);
}

.widget-dark {
    background: var(--darker-bg);
}

.widget-title {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.widget-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.widget-item {
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    transition: all 0.3s ease;
}

.widget-item:hover {
    background: rgba(196, 160, 104, 0.1);
    transform: translateX(3px);
}

.widget-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
}

.widget-item a:hover {
    color: var(--primary-gold);
}

.widget-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 5px;
}



/* ========================================
   Buttons
   ======================================== */

.btn-gold, .btn-join, .btn-create-clan, .btn-discord {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 10px 25px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--primary-gold);
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn-gold:hover, .btn-join:hover, .btn-create-clan:hover, .btn-discord:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
}

.btn-back {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    padding: 8px 15px;
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(196, 160, 104, 0.1);
}

.btn-info {
    background: transparent;
    color: var(--text-light);
    padding: 10px 25px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-info:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* ========================================
   Featured Panels
   ======================================== */

.featured-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    align-items: start; 
}

.panel {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 25px;
    transition: all 0.3s ease;
}

.panel-gold {
    border-color: var(--primary-gold);
}

.panel-brown {
    background: rgba(107, 93, 79, 0.1);
}

.panel-dark {
    background: var(--darker-bg);
}

.panel h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.panel-content {
    margin-bottom: 15px;
}

.news-item, .guide-item {
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.news-item:hover, .guide-item:hover {
    background: rgba(196, 160, 104, 0.05);
}

.news-item h4, .guide-item h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.news-item h4 a, .guide-item h4 a {
    color: var(--text-light);
    text-decoration: none;
}

.news-item h4 a:hover, .guide-item h4 a:hover {
    color: var(--primary-gold);
}

.date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.difficulty {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
}

.difficulty-könnyű { 
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    color: #4CAF50;
}
.difficulty-közepes { 
    background: rgba(255, 152, 0, 0.2);
    border-color: #FF9800;
    color: #FF9800;
}
.difficulty-haladó { 
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
    color: #F44336;
}

.panel-link {
    display: block;
    text-align: right;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.panel-link:hover {
    color: var(--gold-hover);
}

.community-list {
    list-style: none;
    padding: 0;
}

.community-list li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.community-list strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Folytatás következik... */
/* ========================================
   Content Header
   ======================================== */

.content-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.content-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.content-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ========================================
   News & Articles
   ======================================== */

.news-grid, .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.news-card, .guide-card {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
	overflow:hidden;
    padding: 25px;
    transition: all 0.3s ease;
}

.news-card:hover, .guide-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-gold);
}

.news-card h3, .guide-card h3 {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.news-card h3 a, .guide-card h3 a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card h3 a:hover, .guide-card h3 a:hover {
    color: var(--primary-gold);
}

.card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.category-badge {
    background: rgba(196, 160, 104, 0.2);
    padding: 3px 10px;
    border-radius: 0;
    color: var(--primary-gold);
    font-weight: 500;
    border: 1px solid var(--primary-gold);
}

.read-more {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--gold-hover);
    transform: translateX(3px);
}

.single-article {
    background: var(--content-bg);
    padding: 30px;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.single-article h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-meta {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    margin-bottom: 25px;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
}

.article-meta span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}
.article-content a {
	color: var(--primary-gold);
    text-decoration: none;
}
.article-content p {
    margin-bottom: 15px;
}

.difficulty-badge {
    padding: 5px 12px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid;
}

/* ========================================
   Clans
   ======================================== */

.clans-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.clan-card {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clan-card:hover {
    transform: translateY(-3px);
}

.clan-header {
    background: var(--darker-bg);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clan-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.member-count {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.clan-body {
    padding: 20px;
}

.clan-body p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.clan-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 0;
}

.clan-footer {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid var(--border-color);
}

.create-clan-section {
    text-align: center;
    padding: 40px;
    background: var(--content-bg);
    border: 1px solid var(--primary-gold);
    border-radius: 0;
}

.create-clan-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.create-clan-section p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

/* ========================================
   Game Info
   ======================================== */

.game-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section {
    background: var(--content-bg);
    padding: 30px;
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(255,255,255,0.02);
    padding: 20px;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--primary-gold);
}

.info-card h3 {
    font-family: 'Noto Sans', sans-serif;
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.info-content {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.updated {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 10px;
}

.helpful-section {
    text-align: center;
    padding: 30px;
    background: rgba(196, 160, 104, 0.05);
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    margin-top: 25px;
}

.helpful-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 600;
}

.helpful-section a {
    color: var(--primary-gold);
    font-weight: 500;
}

/* ========================================
   Filter Bar
   ======================================== */

.filter-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--content-bg);
    border-radius: 0;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
}

.filter-btn {
    padding: 8px 18px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
}

/* ========================================
   Sidebar Widgets (további)
   ======================================== */

.event-item {
    padding: 15px;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    border-left: 2px solid var(--primary-gold);
    margin-bottom: 12px;
}

.event-item h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.event-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.event-reward {
    display: block;
    color: var(--primary-gold);
    font-size: 0.8rem;
    font-style: italic;
}

.clan-rank-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 0;
    margin-bottom: 8px;
}

.rank {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: 700;
    min-width: 30px;
}

.clan-info {
    display: flex;
    flex-direction: column;
}

.clan-info strong {
    color: var(--text-light);
    font-size: 0.95rem;
}


.discord-stats span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: 8px;
}

.link-list a {
    color: var(--text-light);
    text-decoration: none;
    padding: 8px;
    display: block;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.link-list a:hover {
    color: var(--primary-gold);
    background: rgba(196, 160, 104, 0.05);
    padding-left: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-indicator.online {
    background: #4CAF50;
    box-shadow: 0 0 8px #4CAF50;
}

/* ========================================
   Footer
   ======================================== */

.main-footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
	font-size: 0.7em;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* ========================================
   Kiemelt képek - News
   ======================================== */

.article-featured-image {
    margin-bottom: 25px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    line-height: 0; 
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block; 
    vertical-align: bottom; 
    transition: transform 0.3s ease;
}

.article-featured-image:hover img {
    transform: scale(1.02);
}


/* News card képek */
.news-card-image {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 0.3s ease;
}

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

/* News thumbnail a panelben */
.news-thumb {
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.news-item:hover .news-thumb {
    border-color: var(--primary-gold);
}

/* Képfeltöltés placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 3rem;
}

/* Lazy loading effect */
img[data-src] {
    filter: blur(5px);
    transition: filter 0.3s;
}

img.loaded {
    filter: blur(0);
}
/* ========================================
   SLIDER - JAVÍTOTT VERZIÓ
   ======================================== */
/* ========================================
   SLIDER - UPGRADED MODERN DESIGN
   ======================================== */

.slider-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgba(196, 160, 104, 0.2);
    background: var(--darker-bg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease, transform 0.8s ease;
}

.slide.active {
    display: flex;
    opacity: 1;
    animation: slideZoom 10s ease-in-out infinite;
}

/* Ken Burns effect (zoom animáció) */
@keyframes slideZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Finomabb gradient (alulról felfelé fade) */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(14, 14, 14, 0.95) 0%,
        rgba(14, 14, 14, 0.4) 40%,
        rgba(14, 14, 14, 0) 70%
    );
    z-index: 1;
}

/* Vignette hatás (szélek sötétítés) */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(14, 14, 14, 0) 0%,
        rgba(14, 14, 14, 0.4) 80%,
        rgba(14, 14, 14, 0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    text-align: center;
    padding: 50px 40px;
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: slideContentFade 0.8s ease;
}

@keyframes slideContentFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(196, 160, 104, 0.3);
    line-height: 1.2;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9),
                     0 0 30px rgba(196, 160, 104, 0.3);
    }
    to {
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9),
                     0 0 40px rgba(196, 160, 104, 0.5);
    }
}

.slide-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    font-weight: 400;
}

/* Modern gombok (rounded, backdrop blur) */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 160, 104, 0.15);
    color: var(--text-light);
    border: 2px solid rgba(196, 160, 104, 0.4);
    padding: 15px 20px;
    font-size: 1.8rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(196, 160, 104, 0.9);
    color: var(--dark-bg);
    border-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(196, 160, 104, 0.5);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* Modern dots (pill shape) */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(14, 14, 14, 0.5);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.slider a {
    text-decoration: none;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot:hover {
    background: rgba(196, 160, 104, 0.7);
    transform: scale(1.3);
    border-color: var(--primary-gold);
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
    width: 30px;
    border-radius: 10px;
    border-color: var(--gold-hover);
    box-shadow: 0 0 15px rgba(196, 160, 104, 0.6);
}

/* Progress bar (opcionális, mutatja a slide időtartamát) */
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gold);
    width: 0;
    transition: width 5s linear;
    z-index: 11;
}

.slide.active .slide-progress {
    width: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .slider-btn.prev { left: 15px; }
    .slider-btn.next { right: 15px; }
    
    .slider-dots {
        bottom: 20px;
        padding: 8px 12px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* Kicsi mobil */
@media (max-width: 480px) {
    .slider-container {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.4rem;
    }

    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
}
.slide-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #C4A068; /* arany */
    width: 0;
    transition: width 5s linear;
    z-index: 11;
    box-shadow: 0 0 10px rgba(196, 160, 104, 0.8);
}

.slide.active .slide-progress {
    width: 100%;
}

/* ========================================
   ARTICLE META BOX 
   ======================================== */

.article-meta-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Szerző rész */
.meta-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.author-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Cinzel', serif;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    font-size: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Divider */
.meta-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Meta item (dátum, kategória) */
.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-icon {
    color: var(--primary-gold);
    flex-shrink: 0;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(196, 160, 104, 0.15);
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .article-meta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .meta-author,
    .meta-item {
        width: 100%;
    }
}
/* ========================================
   ICONIC HEADER - Kompakt verzió
   ======================================== */

.iconic-header {
    background: transparent;
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid rgba(196, 160, 104, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(14, 14, 14, 0.95) 0%,
        rgba(14, 14, 14, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    z-index: -1;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo - kisebb */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    display: block;
    height: 60px; /* 75px → 60px */
    width: auto;
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Iconic Navigation - kompaktabb */
.iconic-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px; /* 12px → 8px */
    flex: 1;
}

/* Nav Item - kisebb */
.nav-item-iconic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; /* 6px → 4px */
    padding: 8px 14px; /* 10px 16px → 8px 14px */
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(196, 160, 104, 0.15);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-item-iconic:hover {
    background: rgba(196, 160, 104, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-2px); /* -3px → -2px */
}

/* Icon - kisebb */
.nav-icon {
    color: var(--primary-gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 28px; /* 40px → 28px */
    height: 28px;
}

.nav-item-iconic:hover .nav-icon {
    color: var(--gold-hover);
    transform: scale(1.08); /* 1.1 → 1.08 */
}

/* Label - kisebb */
.nav-label {
    color: var(--text-light);
    font-size: 0.8rem; /* 0.85rem → 0.8rem */
    font-weight: 500;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-item-iconic:hover .nav-label {
    color: var(--primary-gold);
}

/* Active state */
.nav-item-iconic.active {
    background: rgba(196, 160, 104, 0.12);
    border-color: var(--primary-gold);
}

.nav-item-iconic.active .nav-label {
    color: var(--primary-gold);
}

/* TOOLTIP TÖRLÉSE */
.nav-item-iconic::before,
.nav-item-iconic::after {
    display: none !important;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .logo img {
        height: 50px;
    }
    
    .iconic-nav {
        gap: 6px;
    }
    
    .nav-item-iconic {
        padding: 6px 12px;
    }
    
    .nav-icon {
        width: 24px;
        height: 24px;
    }
    
    .nav-label {
        font-size: 0.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .iconic-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        width: 100%;
    }
    
    .nav-item-iconic {
        padding: 6px 10px;
        flex: 0 0 calc(20% - 5px);
        min-width: 65px;
    }
    
    .nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .nav-label {
        font-size: 0.7rem;
    }
}

/* Nagyon kicsi mobil */
@media (max-width: 480px) {
    .nav-item-iconic {
        flex: 0 0 calc(33.333% - 5px);
    }
    
    .nav-label {
        font-size: 0.65rem;
    }
}
/* ========================================
   RESPONSIVE JAVÍTÁSOK - TELJES
   ======================================== */

/* ========================================
   TABLET (1024px alatt)
   ======================================== */
@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Page Layout - 3 oszlop → 1 oszlop */
    .page-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    /* Sidebar jobbra/balra rejtése mobilon */
    .sidebar-left,
    .sidebar-right {
        display: none;
    }
    
    /* Featured Panels - 3 oszlop → 2 oszlop */
    .featured-panels {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }
    
    /* Slider kisebb */
    .slider-container {
        height: 400px;
        margin-bottom: 20px;
    }
    
    .slide-content {
        padding: 30px 20px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    /* News/Guides grid - 2 oszlop */
    .news-grid,
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Clans grid - 2 oszlop */
    .clans-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Info grid - 2 oszlop */
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Footer - 2 oszlop */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ========================================
   MOBIL (768px alatt)
   ======================================== */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 10px;
    }
    
    /* Page Layout - 1 oszlop */
    .page-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
        margin: 15px auto;
    }
    
    /* Sidebar rejtése */
    .sidebar-left,
    .sidebar-right {
        display: none !important;
    }
    
    /* Header */
    .main-header .container {
        padding: 10px;
    }
    
    /* Featured Panels - 1 oszlop (stack) */
    .featured-panels {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .panel {
        padding: 18px;
    }
    
    .panel h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    /* Slider */
    .slider-container {
        height: 350px;
        margin-bottom: 15px;
    }
    
    .slide-content {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.4rem;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    /* News/Guides Grid - 1 oszlop */
    .news-grid,
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .news-card,
    .guide-card {
        padding: 18px;
    }
    
    .news-card h3,
    .guide-card h3 {
        font-size: 1.2rem;
    }
    
    /* Clans Grid - 1 oszlop */
    .clans-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .clan-card {
        margin-bottom: 0;
    }
    
    .clan-header {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .clan-header h3 {
        font-size: 1.3rem;
    }
    
    .clan-body {
        padding: 15px;
    }
    
    .clan-footer {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    /* Info Grid - 1 oszlop */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    /* Single Article */
    .single-article {
        padding: 20px;
    }
    
    .single-article h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .article-content {
        font-size: 1rem;
    }
    
    /* Article Meta Box */
    .article-meta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .meta-divider {
        display: none;
    }
    
    .meta-author,
    .meta-item {
        width: 100%;
    }
    
    /* Content Header */
    .content-header {
        margin-bottom: 20px;
    }
    
    .content-header h1 {
        font-size: 1.6rem;
    }
    
    .content-header p {
        font-size: 0.95rem;
    }
    
    /* Filter Bar */
    .filter-bar {
        padding: 12px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* Footer - 1 oszlop */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .main-footer {
        padding: 30px 0 20px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    /* Buttons */
    .btn-gold,
    .btn-join,
    .btn-create-clan,
    .btn-discord {
        padding: 10px 20px;
        font-size: 0.85rem;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .btn-back {
        display: block;
        text-align: center;
        margin-top: 15px;
    }
}

/* ========================================
   KICSI MOBIL (480px alatt)
   ======================================== */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 8px;
    }
    
    /* Page Layout */
    .page-container {
        gap: 10px;
        padding: 0 8px;
        margin: 10px auto;
    }
    
    /* Featured Panels */
    .panel {
        padding: 15px;
    }
    
    .panel h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .news-item,
    .guide-item {
        padding: 10px;
    }
    
    .news-item h4,
    .guide-item h4 {
        font-size: 0.9rem;
    }
    
    /* Slider */
    .slider-container {
        height: 300px;
    }
    
    .slide-content {
        padding: 15px 10px;
    }
    
    .slide-content h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .btn-gold {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .slider-btn {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    /* Cards */
    .news-card,
    .guide-card,
    .clan-card {
        padding: 15px;
    }
    
    .news-card h3,
    .guide-card h3 {
        font-size: 1.1rem;
    }
    
    /* Single Article */
    .single-article {
        padding: 15px;
    }
    
    .single-article h2 {
        font-size: 1.4rem;
    }
    
    .article-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Article Meta */
    .article-meta-box {
        padding: 12px;
        gap: 12px;
    }
    
    .author-avatar,
    .author-avatar-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .meta-value {
        font-size: 0.9rem;
    }
    
    /* Content Header */
    .content-header h1 {
        font-size: 1.4rem;
    }
    
    .content-header p {
        font-size: 0.9rem;
    }
    
    /* Filter Bar */
    .filter-bar {
        padding: 10px;
        gap: 6px;
    }
    
    .filter-btn {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    /* Footer */
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
    
    /* Community List */
    .community-list li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
}

/* ========================================
   LANDSCAPE MOBIL (max-height: 500px)
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .slider-container {
        height: 280px;
    }
    
    .slide-content h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .slide-content p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }
}

/* ========================================
   NAGYON SZÉLES KÉPERNYŐ (1600px felett)
   ======================================== */
@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
    }
    
    .page-container {
        max-width: 1600px;
    }
    
    .slider-container {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}
/* ========================================
   TIMER WIDGET
   ======================================== */
.widget.timerek {
	background: #0a0a0a;
}
.timers-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timer-compact {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 8px 10px;
    transition: all 0.3s ease;
}

.timer-compact:hover {
    border-color: var(--primary-gold);
}

.timer-special {
    border-color: rgba(196, 160, 104, 0.3);
}

.timer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.timer-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.timer-value {
font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timer-subtext {
    font-size: 0.7rem;
    color: #61c0d7;
    text-align: right;
    margin-top: 3px;
}

.events-compact {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 8px 10px;
    margin-top: 5px;
}

.events-title {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border-color);
}

.event-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 0;
}

.event-line:hover {
    color: var(--primary-gold);
}

.event-time {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.6rem;
}

@keyframes pulse {
    0%, 100% {
        border-color: var(--primary-gold);
        box-shadow: 0 0 5px rgba(196, 160, 104, 0.3);
    }
    50% {
        border-color: var(--gold-hover);
        box-shadow: 0 0 10px rgba(196, 160, 104, 0.5);
    }
}

.timer-compact.active {
    animation: pulse 2s infinite;
}


.mirage {
    background: url('../images/mirage.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.mirage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(138, 43, 226, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    border-radius: inherit;
    pointer-events: none;
    transition: all 1.3s ease;
}

.mirage:hover::before {
    background: linear-gradient(
        135deg,
        rgba(178, 128, 255, 0.4) 0%,    
        rgba(138, 43, 226, 0.35) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.mirage:hover {
    border-color: #b280ff;
}

/* FIREWORKS SHOW - Sárga/Narancs gradient */
.fworks {
    background: url('../images/fireworks-show.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.fworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 200, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    border-radius: inherit;
    pointer-events: none;
    transition: all 1.3s ease;
}

.fworks:hover::before {
    background: linear-gradient(
        135deg,
        rgba(255, 200, 0, 0.4) 0%,       /* Világosabb sárga hover */
        rgba(255, 165, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.fworks:hover {
    border-color: #ffc800;
}

/* Tartalom Z-index fix (hogy látszódjon a gradient fölött) */
.mirage > *,
.fworks > * {
    position: relative;
    z-index: 1;
}
/* News Meta (dátum + views) */
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.news-meta .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-meta .views {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Népszerűségi badge (opcionális) */
.popular-badge {
    display: inline-block;
    background: rgba(255, 69, 0, 0.2);
    color: #ff4500;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid #ff4500;
    margin-left: 5px;
}
/* ========================================
   PAGINATION
   ======================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.page-link {
    display: inline-block;
    padding: 10px 15px;
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.page-link:hover {
    background: rgba(196, 160, 104, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 700;
}

/* News meta (views) */
.news-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 5px;
}

.news-meta .views {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.card-meta .views {
    font-size: 0.8rem;
    color: var(--primary-gold);
}

/* Responsive pagination */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 40px;
    }
}
/* ========================================
   BEVÁLTHATÓ KÓDOK - KOMPAKT
   ======================================== */

.redeem-codes-compact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.code-item-compact {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    position: relative;
}

.code-item-compact:hover {
    background: rgba(196, 160, 104, 0.05);
}

.code-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.code-name {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.copy-btn-compact {
    background: var(--primary-gold);
    border: none;
    border-radius: 3px;
    padding: 5px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.copy-btn-compact svg {
    color: var(--dark-bg);
}

.copy-btn-compact:hover {
    background: var(--gold-hover);
    transform: scale(1.05);
}

.copy-btn-compact:active {
    transform: scale(0.95);
}

.code-rewards-compact {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Verified badge (csak sikeres másolásnál) */
.verified-mini {
    position: relative;
    font-size: 0.7rem;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid #4CAF50;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 600;
}

/* Sikeres másolás animáció */
@keyframes copyFlash {
    0% { background: var(--primary-gold); }
    50% { background: #4CAF50; }
    100% { background: var(--primary-gold); }
}

.copy-btn-compact.copied {
    animation: copyFlash 3s ease;
}

/* Fade animációk */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}
.guide-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.guide-filters span {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-right: 10px;
}

.filter-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(196, 160, 104, 0.1);
    color: var(--primary-gold);
}

.filter-btn.active {
    border-color: var(--primary-gold);
    background: rgba(196, 160, 104, 0.2);
    color: var(--primary-gold);
    font-weight: 600;
}
/* TinyMCE / WYSIWYG tartalom alap stílusai */
.wysiwyg-content {
    padding: 20px 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Képek reszponzívra */
.wysiwyg-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 15px auto;
    border-radius: 4px;
}

/* Listák – normál beljebb húzás, margók */
.wysiwyg-content ul,
.wysiwyg-content ol {
    margin: 10px 0 10px 1.5rem;
    padding-left: 1rem;
}

.wysiwyg-content li {
    margin-bottom: 5px;
}

/* Címsorok */
.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4 {
    margin: 20px 0 10px;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
}

.wysiwyg-content p {
    margin: 10px 0;
}

/* Mobil finomítás */
@media (max-width: 768px) {
    .wysiwyg-content {
        padding: 15px;
        font-size: 0.9rem;
    }

    .wysiwyg-content ul,
    .wysiwyg-content ol {
        margin-left: 1.2rem;
    }
}
/* Discord widget */
.widget-discord {
    position: relative;
    background: radial-gradient(circle at top left, rgba(88, 101, 242, 0.18), transparent 55%),
                radial-gradient(circle at bottom right, rgba(88, 101, 242, 0.12), transparent 55%),
                #18181f;
    border: 1px solid rgba(88, 101, 242, 0.35);
    border-radius: 6px;
    overflow: hidden;
}

/* Halvány Discord logó a háttérben (absztrakt alak) */
.widget-discord::before {
    content: '';
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border-radius: 40% 60% 55% 45%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 65%);
    opacity: 0.12;
    pointer-events: none;
}

.widget-discord .widget-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 12px;
}

.widget-discord .widget-content p {
    margin-bottom: 15px;
}

/* Discord gomb */
.btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 4px;
    background: #5865F2; /* Discord kék */
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.btn-discord:hover {
    background: #6f7bff;
    box-shadow: 0 6px 18px rgba(88, 101, 242, 0.6);
    transform: translateY(-1px);
}

.btn-discord:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(88, 101, 242, 0.4);
}

/* Mobilon kicsit szellősebben */
@media (max-width: 768px) {
    .widget-discord {
        border-radius: 5px;
    }

    .btn-discord {
        font-size: 0.85rem;
        padding: 9px 12px;
    }
}
/* Event widget */
.widget-events .events-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-item {
    padding: 8px 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.event-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.event-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.event-tag {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Tag színek */
.event-tag.limited {
    background: rgba(230, 152, 80, 0.18);
    color: #f8c27a;
    border: 1px solid rgba(230, 152, 80, 0.5);
}

.event-tag.season {
    background: rgba(120, 167, 255, 0.16);
    color: #a8c5ff;
    border: 1px solid rgba(120, 167, 255, 0.5);
}

.event-tag.permanent {
    background: rgba(120, 255, 187, 0.08);
    color: #9debb9;
    border: 1px solid rgba(120, 255, 187, 0.4);
}

.event-tag.campaign {
    background: rgba(196, 160, 104, 0.16);
    color: var(--primary-gold);
    border: 1px solid rgba(196, 160, 104, 0.6);
}

.event-tag.guide {
    background: rgba(180, 180, 255, 0.12);
    color: #d0d5ff;
    border: 1px solid rgba(180, 180, 255, 0.4);
}

.event-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.event-date {
    font-weight: 500;
}

.event-note {
    opacity: 0.9;
}

/* Szekció cím */
.event-separator {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
/* Ko-fi panel */
.widget-kofi {
    position: relative;
    background: radial-gradient(circle at top left, rgba(244, 93, 34, 0.25), transparent 55%),
                #151015;
    border-radius: 6px;
    border: 1px solid rgba(244, 93, 34, 0.6);
    overflow: hidden;
    padding: 14px 16px 16px;
}


.widget-kofi::before {
    content: '';
    position: absolute;
    right: -25px;
    bottom: -35px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at 30% 30%, rgba(244,93,34,0.4), transparent 65%);
    opacity: 0.22;
    pointer-events: none;
    border-radius: 45% 55% 60% 40%;
}

.widget-kofi-header {
    margin-bottom: 10px;
}


.kofi-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(244, 93, 34, 0.15);
    border: 1px solid rgba(244, 93, 34, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #ffd8c4;
}

.widget-kofi-body p {
    margin: 0 0 10px;
	font-size: 0.7rem;
    color: var(--text-light);
	font-weight: 600;
}

.btn-kofi {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f45d22;
    color: #190c08;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

.btn-kofi:hover {
    background: #ff6d34; /* világosabb árnyalat */
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 93, 34, 0.65);
}

.btn-kofi:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(244, 93, 34, 0.45);
}

.kofi-heart {
    width: 20px;
    height: 20px;
}

.kofi-label {
    white-space: nowrap;
	color: var(--text-light);
}

@media (max-width: 768px) {
    .widget-kofi {
        padding: 12px 14px 14px;
    }
    .btn-kofi {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}
.site-footer-meta {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.7;
}

.site-footer-meta span {
    margin: 0 4px;
}
/* Modern Filter Panel */
.items-filter-panel {
    background: linear-gradient(135deg, rgba(196,160,104,0.05) 0%, rgba(26,26,26,0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Keresés */
.filter-search-bar {
    margin-bottom: 25px;
}

.search-form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    font-size: 1.1rem;
    pointer-events: none;
    opacity: 0.6;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 45px;
    background: var(--darker-brown);
    border: 2px solid var(--border-color);
    color: var(--text-light);
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(196,160,104,0.15);
}

.search-clear {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.search-clear:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.btn-search-submit {
    padding: 12px 24px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-search-submit:hover {
    background: #d4b078;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196,160,104,0.3);
}

/* Szekció címek */
.filter-section-title {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(196,160,104,0.2);
}

/* Kategória gombok */
.filter-categories {
    margin-bottom: 25px;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--darker-brown);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.cat-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(196,160,104,0.1);
    transform: translateY(-2px);
}

.cat-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
}

.cat-icon {
    font-size: 1.2rem;
}

.cat-label {
    white-space: nowrap;
}

/* Ritkaság checkboxok */
.filter-rarity {
    margin-bottom: 0;
}

.rarity-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.rarity-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--darker-brown);
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
}

.rarity-checkbox:hover {
    transform: translateY(-1px);
}

.rarity-checkbox input {
    display: none;
}

.rarity-box {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.rarity-checkbox input:checked + .rarity-box {
    background: currentColor;
}

.rarity-checkbox input:checked + .rarity-box::after {
    content: '✓';
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 0.9rem;
}

.rarity-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Ritkaság színek */
.rarity-checkbox.rarity-common {
    color: #9e9e9e;
    border-color: rgba(158,158,158,0.3);
}

.rarity-checkbox.rarity-common:hover,
.rarity-checkbox.rarity-common input:checked ~ .rarity-label {
    border-color: #9e9e9e;
}

.rarity-checkbox.rarity-uncommon {
    color: #4caf50;
    border-color: rgba(76,175,80,0.3);
}

.rarity-checkbox.rarity-uncommon:hover,
.rarity-checkbox.rarity-uncommon input:checked ~ .rarity-label {
    border-color: #4caf50;
}

.rarity-checkbox.rarity-rare {
    color: #2196f3;
    border-color: rgba(33,150,243,0.3);
}

.rarity-checkbox.rarity-rare:hover,
.rarity-checkbox.rarity-rare input:checked ~ .rarity-label {
    border-color: #2196f3;
}

.rarity-checkbox.rarity-epic {
    color: #9c27b0;
    border-color: rgba(156,39,176,0.3);
}

.rarity-checkbox.rarity-epic:hover,
.rarity-checkbox.rarity-epic input:checked ~ .rarity-label {
    border-color: #9c27b0;
}

.rarity-checkbox.rarity-legendary {
    color: #ff9800;
    border-color: rgba(255,152,0,0.3);
}

.rarity-checkbox.rarity-legendary:hover,
.rarity-checkbox.rarity-legendary input:checked ~ .rarity-label {
    border-color: #ff9800;
}

.btn-clear-rarity {
    padding: 8px 14px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear-rarity:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

/* Mobil responsive */
@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
    }

    .btn-search-submit {
        width: 100%;
    }

    .category-buttons {
        gap: 8px;
    }

    .cat-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .rarity-checkboxes {
        gap: 8px;
    }

    .rarity-checkbox {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}
/* SVG ikonok alapértelmezett színe */
.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-clear {
    position: absolute;
    right: 12px;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}

.search-clear:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.cat-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.cat-btn:hover .cat-icon {
    color: var(--primary-gold);
}

.cat-btn.active .cat-icon {
    color: var(--dark-bg);
}

/* Rarity checkbox SVG ha kell a pipának */
.rarity-box {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
}

.rarity-checkbox input:checked + .rarity-box {
    background: currentColor;
}

.rarity-checkbox input:checked + .rarity-box::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid var(--dark-bg);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 2px;
}

.btn-clear-rarity {
    padding: 8px 14px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-clear-rarity:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-clear-rarity svg {
    opacity: 0.7;
}
.page-hero h1 {    padding-top: 0.5em;}
.btn-featured-link {
	margin-top: 1em;
    display: block;
    padding: 10px 24px;
    background: var(--primary-gold);
    color: #000000;
    font-weight: bold;
    font-family: 'Cinzel';
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-featured-link:hover {
    background: #e1bb7d;
    color: #151112;
    transform: translateY(-2px) scale(1.03);
}
.news-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
    padding: 15px 20px;
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.filter-btn {
    padding: 8px 18px;
    background: var(--darker-brown);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary-gold);
    background: rgba(196,160,104,0.1);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 600;
}

@media (max-width: 768px) {
    .news-filter-bar {
        gap: 8px;
        padding: 12px 15px;
    }
    
    .filter-btn {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}
hr {
	    border: 1px solid #333333;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    margin-bottom: 2em;
}

/* ===== Lazy YouTube Video Embed ===== */
.wwm-video-lazy {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #000;
  margin-bottom: 16px;
}

.wwm-video-lazy img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.wwm-video-lazy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
}

.wwm-video-lazy-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 2px solid #f5b042;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.wwm-video-lazy:hover .wwm-video-lazy-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.wwm-video-lazy-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #f5b042;
  margin-left: 3px;
}

.wwm-video-lazy-title {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: #f5f5f5;
  font-size: 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
  padding-right: 16px;
}

.wwm-video-lazy iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}/* ===== Discord Widget – kompakt, ikon balra, statok jobbra ===== */
/* ===== Discord Widget – kompakt kártya ===== */
.discord-widget-content {
  text-align: left;
}

.discord-server-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  background: radial-gradient(circle at top, #25273a 0, #181921 55%, #101018 100%);
  margin-bottom: 14px;
}

.discord-icon-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discord-icon {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    border: 1px solid #87877d;
    object-fit: cover;
    background: #2c2f33;
}

.discord-stats {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.discord-server-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2px;
}

.discord-stat-row {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}

.discord-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.discord-stat-value {
  font-size: 17px;
  font-weight: 700;
}

.discord-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.7;
}

.discord-stat.online .discord-stat-value {
  color: #43b581;
}

.discord-stat.members .discord-stat-value {
  color: #d4d7ff;
}

/* gomb: kicsit „kártyásabb” */
.btn-discord {
  border-radius: 6px;
  width: 100%;
  justify-content: center;
  font-size: 0.8em;
}

.clans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.clan-card {
    background: var(--darker-brown);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.clan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(196, 160, 104, 0.2);
}

.clan-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(196, 160, 104, 0.05) 0%, var(--darker-brown) 100%);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.clan-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.clan-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid var(--border-color);
}

.clan-logo-placeholder {
    width: 60px;
    height: 60px;
    background: var(--content-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 2px solid var(--border-color);
}

.clan-title h3 {
    margin: 0 0 5px 0;
    color: var(--primary-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
}

.clan-card-body {
    margin-bottom: 15px;
}

.clan-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
}

.recruiting-badge-small {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.clan-card-footer {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.btn-details {
    flex: 1;
    padding: 8px 16px;
    background: var(--content-bg);
    color: var(--primary-gold);
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-details:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Clan Stats */
.clan-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px;
    background: var(--darker-brown);
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    font-weight: 700;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Single Clan View */
.back-link {
    display: inline-block;
    color: var(--primary-gold);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-hover);
}

.badge-featured {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 15px;
}

.clan-single {
    background: var(--darker-brown);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-bottom: 40px;
}

.clan-single-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.clan-logo-large {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    border: 3px solid var(--primary-gold);
}

.clan-logo-placeholder-large {
    width: 150px;
    height: 150px;
    background: var(--content-bg);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 3px solid var(--border-color);
}

.clan-single-info {
    flex: 1;
}

.clan-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.recruiting-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: block;
    text-align: center;
}

.clan-single-description {
    margin-bottom: 30px;
}

.clan-single-description h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.clan-single-description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.clan-single-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-join {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #5865F2;
    color: white;
}

.btn-primary:hover {
    background: #4752C4;
}

.btn-secondary {
    background: var(--content-bg);
    color: var(--primary-gold);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-join {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-join:hover {
    background: var(--gold-hover);
}

/* Create Clan Section */
.create-clan-section {
    text-align: center;
    padding: 0.5em;
    background: linear-gradient(135deg, rgba(196, 160, 104, 0.05) 0%, var(--darker-brown) 100%);
    border: 0;
    border-radius: 4px;
}

.create-clan-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.create-clan-section p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.8rem;
}

.btn-create-clan {
	display: inline-block;
    padding: 10px 20px;
    background: #000000;
    color: #fdfdfd;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 0px;
}

.btn-create-clan:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 160, 104, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .clans-grid {
        grid-template-columns: 1fr;
    }

    .clan-stats {
        flex-direction: column;
        gap: 15px;
    }

    .clan-single {
        padding: 20px;
    }

    .clan-single-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .clan-meta {
        grid-template-columns: 1fr;
    }
}
.clans-notice {
	background: #5b4300;
    border: 1px solid #816411;
    color: #fff;
    border-radius: 5px;
    font-size: 0.7em;
    display: block;
    text-align: center;
    padding: 0.5em;
}
.recruiting-grid {
	max-width: 30%;
    margin-left: auto;
    margin-right: auto;
}
small {
	font-size: 0.6em;
}
.clan-level-small {
  font-size: 0.8em;
  color: #f5d472;
  margin-left: 4px;
}

.clan-members-line {
  font-size: 0.8em;
  color: #c0c0c0;
}

.clan-members-note {
  font-size: 0.7em;
  opacity: 0.7;
  margin-left: 4px;
}
/* ===== Top klán – minimalista, vékony kiemelés ===== */
.clan-card-top {
  position: relative;
}

.clan-card-top::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(223, 190, 129, 0.25);
  pointer-events: none;
}

/* SINGLE nézet – ugyanez */
.clan-single-top {
  position: relative;
  border: 1px solid rgba(223, 190, 129, 0.8);
}

.clan-single-top::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(223, 190, 129, 0.3);
  pointer-events: none;
}

/* nincs animáció */
@keyframes clan-top-subtle {}

/* Top badge – egyszerű, vékony keretes pill */
.clan-top-badge,
.featured-badge.top-badge {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 3px 10px 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #2a2018;
  color: #e2bf7d;
  border: 1px solid rgba(223, 190, 129, 0.7);
}

.clan-top-icon {
  margin-left: 4px;
  color: #e2bf7d;
}

/* Featured klán – ugyanez még halványabb arannyal */
.clan-card-featured {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(196, 160, 104, 0.6);
  background: linear-gradient(145deg, #191310, #100c0a);
}

.clan-single-featured {
  position: relative;
  border-radius: 12px;
  border: 1px solid rgba(196, 160, 104, 0.7);
  background: linear-gradient(145deg, #1b1411, #100c0a);
}

.clan-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  background: transparent;
  color: #f6e4bc;
  border: 1px solid rgba(196, 160, 104, 0.6);
}
.clan-logo-wrapper.logo-celestial {
  position: relative;
  display: inline-block;
  border-radius: 6px;
  overflow: hidden;
}

.clan-logo-wrapper.logo-celestial .clan-logo {
  display: block;
  border-radius: 6px;
}

.clan-logo-wrapper.logo-celestial::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 9px;
  pointer-events: none;

  /* élénk arany-fehér vonal, 4px vastag */
  background:
    linear-gradient(to right,  #fffbe6, rgba(255,215,128,0)) 0 0 / 0% 4px          no-repeat, /* top */
    linear-gradient(to bottom, #fffbe6, rgba(255,215,128,0)) 100% 0 / 4px 0%      no-repeat, /* right */
    linear-gradient(to left,   #fffbe6, rgba(255,215,128,0)) 100% 100% / 0% 4px   no-repeat, /* bottom */
    linear-gradient(to top,    #fffbe6, rgba(255,215,128,0)) 0 100% / 4px 0%      no-repeat; /* left */

  /* erős külső és belső glow – ettől látszik fehér ikonnál is */
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.9),
    0 0 14px rgba(255, 215, 128, 0.9);

  animation: clan-logo-border-glow 4.2s linear infinite;
  opacity: 1;
}

@keyframes clan-logo-border-glow {
  /* pihenő – ne villogjon folyamatosan */
  0% {
    background-size: 0% 4px, 4px 0%, 0% 4px, 4px 0%;
    box-shadow:
      0 0 6px rgba(0, 0, 0, 0.8),
      0 0 8px rgba(255, 215, 128, 0.6);
  }
  10% {
    background-size: 0% 4px, 4px 0%, 0% 4px, 4px 0%;
  }

  /* felső él */
  25% {
    background-size: 100% 4px, 4px 0%, 0% 4px, 4px 0%;
    box-shadow:
      0 0 8px rgba(0, 0, 0, 0.9),
      0 0 16px rgba(255, 215, 128, 1);
  }

  /* jobb él */
  45% {
    background-size: 100% 4px, 4px 100%, 0% 4px, 4px 0%;
  }

  /* alsó él */
  65% {
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 0%;
  }

  /* bal él */
  80% {
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
  }

  /* vissza nullára, glow is enyhül */
  100% {
    background-size: 0% 4px, 4px 0%, 0% 4px, 4px 0%;
    box-shadow:
      0 0 6px rgba(0, 0, 0, 0.8),
      0 0 8px rgba(255, 215, 128, 0.6);
  }
}
.clan-logo-wrapper.logo-celestial::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  pointer-events: none;

  /* fix irányú, sugaras godray – nem forgatjuk, csak pulzál */
  background:
    radial-gradient(circle at 50% 30%,
        rgba(255, 255, 255, 0.6),
        transparent 60%),
    conic-gradient(
        from -30deg,
        rgba(255, 255, 255, 0) 0deg,
        rgba(255, 255, 255, 0.22) 15deg,
        rgba(255, 255, 255, 0) 30deg,
        rgba(255, 255, 255, 0.26) 50deg,
        rgba(255, 255, 255, 0) 70deg,
        rgba(255, 255, 255, 0.22) 90deg,
        rgba(255, 255, 255, 0) 110deg,
        rgba(255, 255, 255, 0.24) 130deg,
        rgba(255, 255, 255, 0) 150deg,
        rgba(255, 255, 255, 0.22) 170deg,
        rgba(255, 255, 255, 0) 190deg,
        rgba(255, 255, 255, 0.2) 210deg,
        rgba(255, 255, 255, 0) 230deg,
        rgba(255, 255, 255, 0.22) 250deg,
        rgba(255, 255, 255, 0) 270deg,
        rgba(255, 255, 255, 0.2) 290deg,
        rgba(255, 255, 255, 0) 310deg,
        rgba(255, 255, 255, 0.24) 330deg,
        rgba(255, 255, 255, 0) 360deg
    );

  mix-blend-mode: screen;
  opacity: 0.25;
  transform-origin: 50% 50%;
  animation: clan-logo-godray 3.2s ease-in-out infinite;
}

@keyframes clan-logo-godray {
  0%   { opacity: 0.25; transform: scale(0.96); }
  50%  { opacity: 0.7;  transform: scale(1.04); }
  100% { opacity: 0.25; transform: scale(0.96); }
}
.clans-notice {
  display: block;
  max-width: 960px;
  margin: 0.75rem auto 0.5rem;
  padding: 0.45rem 0.75rem;
  background: #141414;
  border-radius: 4px;
  border: 1px solid #202020; 
  color: #bfbfbf;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
  box-shadow: none;
}

.clans-notice::before {
  content: "Fontos megjegyzés";
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b0b0b0;
}
/* ========================================
   Reset Helper – layout
   ======================================== */

.reset-helper-container {
    max-width: 1100px;
    margin: 25px auto 40px;
}

.reset-helper-timers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

/* timer box – a sidebar widget/event box stílusára építve */
.reset-timer-box {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
}

.reset-timer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: var(--text-light);
}

.reset-timer-label {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.reset-timer-value {
    font-family: "Roboto Mono", monospace;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--primary-gold);
}

.reset-timer-sub {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================
   Main panels (Daily / Weekly / Season & BP)
   ======================================== */

.reset-helper-panels {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* panel – ugyanaz a look, mint info-section / game-info panelek */
.reset-panel {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    padding: 20px 22px;
}

.reset-panel h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 600;
}

.reset-panel-subtitle {
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* enyhe különbség a három panel között, de minimalistán tartva */
.reset-panel-daily {
    border-left: 2px solid var(--primary-gold);
}

.reset-panel-weekly {
    border-left: 2px solid var(--accent-brown);
}

.reset-panel-season {
    border-left: 2px solid rgba(196,160,104,0.7);
}

/* ========================================
   Task list
   ======================================== */

.reset-task-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reset-task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(58,58,58,0.8);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.reset-task-item:hover {
    background: rgba(196,160,104,0.10);
    border-color: var(--primary-gold);
    transform: translateY(-1px);
}

.reset-task-name {
    font-size: 0.92rem;
    color: var(--text-light);
}

.reset-task-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.reset-task-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.reset-task-check {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

/* remove gomb csak a custom taskoknál lesz látható */
.reset-task-remove {
    border: none;
    background: none;
    color: #d38a6b;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
}

.reset-task-remove:hover {
    color: #ffb395;
}

/* custom task megkülönböztetése */
.reset-task-item-custom {
    border-style: dashed;
    border-color: rgba(196,160,104,0.7);
}

/* ========================================
   Add-row (új task hozzáadása)
   ======================================== */

.reset-add-row {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

.reset-add-input {
    flex: 1;
    background: #121212;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 7px 9px;
    font-size: 0.88rem;
}

.reset-add-input::placeholder {
    color: var(--text-muted);
}

.reset-add-btn {
    padding: 7px 14px;
    border: 1px solid var(--primary-gold);
    background: transparent;
    color: var(--primary-gold);
    font-size: 0.86rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.reset-add-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* ========================================
   Season & Battle Pass – szekciók egymás alatt
   ======================================== */

.reset-season-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* kis címkék Season / BP belül */
.reset-section-label {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 6px;
}

/* ========================================
   Reszponzív
   ======================================== */

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

    .reset-panel {
        padding: 16px;
    }

    .reset-timer-box {
        padding: 12px 13px;
    }
}
.sidebar-reset-helper {
    display: block;
    text-decoration: none;
    margin-top: 10px;
}

.sidebar-reset-helper-inner {
    background: var(--content-bg);
    border: 1px solid var(--border-color);
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.sidebar-reset-helper-inner:hover {
    background: rgba(196,160,104,0.14);
    border-color: var(--primary-gold);
    box-shadow: 0 0 18px rgba(0,0,0,0.7);
    transform: translateY(-1px);
}

.srh-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.srh-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 0.4px;
}

.srh-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ikon */
.srh-icon {
    flex: 0 0 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srh-icon-svg {
    width: 24px;
    height: 24px;
    display: block;
}

/* hoverre picit erősebb arany */
.sidebar-reset-helper-inner:hover .srh-icon-svg rect {
    stroke: var(--primary-gold);
}

.sidebar-reset-helper-inner:hover .srh-icon-svg polyline {
    stroke: #ffe2aa;
}
/* ========================================
   Weekly Caps Tracker – ÚJ
   ======================================== */

.reset-panel-caps {
    border-left: 2px solid rgba(139, 195, 215, 0.7);
}

.weekly-caps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.cap-tracker {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(58,58,58,0.8);
    padding: 12px 14px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.cap-tracker:hover {
    background: rgba(139, 195, 215, 0.08);
    border-color: rgba(139, 195, 215, 0.6);
}

.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.cap-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.3px;
}

.cap-limit {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.cap-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cap-input {
    flex: 0 0 100px;
    background: #121212;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 6px 8px;
    font-size: 0.88rem;
    font-family: "Roboto Mono", monospace;
}

.cap-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.cap-progress {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: "Roboto Mono", monospace;
}

.cap-auto-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.cap-bar {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(58,58,58,0.8);
    position: relative;
    overflow: hidden;
}

.cap-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), #ffd580);
    transition: width 0.4s ease;
}

.cap-bar-auto {
    background: linear-gradient(90deg, rgba(139, 195, 215, 0.8), rgba(139, 195, 215, 0.5));
}

/* Harmony Charms tracker (auto-calculated, így kicsit más layout) */
.cap-tracker[data-cap-id="harmony_charms"] .cap-progress {
    margin-top: 6px;
    display: block;
    text-align: right;
}
.reset-task-tag.multiplayer {
	background: #5c576c;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: -0.7px;
    font-size: 0.8em;
}
.reset-task-tag.solo {
	background: #666666;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: -0.7px;
    font-size: 0.8em;
}
.reset-task-tag.vendor {
	background: #196049;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: -0.7px;
    font-size: 0.8em;
}
.reset-task-tag.event {
	background: #816a53;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: -0.7px;
    font-size: 0.8em;
}
.reset-task-tag.klan {
	background: #815353;
    padding-left: 0.5em;
    padding-right: 0.5em;
    letter-spacing: -0.7px;
    font-size: 0.8em;
}
.task-icon {
	height:32px;
	width:32px;
	vertical-align:middle;
	padding:0.2em;
	border-radius: 5px;
    background: #0f0f0f;
    border: 1px solid #333333;
    margin-right: 0.5em;
}
@media (max-width: 768px) {
    .weekly-caps-grid {
        grid-template-columns: 1fr;
    }
}

/* Lazy YouTube */

.wwm-video-lazy {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #000;
}

.wwm-video-lazy .wwm-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: center center;
}



.wwm-video-lazy .wwm-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
	border: 1px solid #393939;
    border-radius: 9px;
}


.wwm-video-lazy .wwm-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 2px solid #bba17b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wwm-video-lazy .wwm-video-play-icon {
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #bba17b;
    margin-left: 3px;
}


.wwm-video-lazy .wwm-video-title {
    position: absolute;
    left: 16px;
    bottom: 12px;
    right: 16px;
    color: #f5f5f5;
    font-size: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
	font-weight: 600;
}


@media (max-width: 600px) {
    .wwm-video-lazy .wwm-video-play {
        width: 56px;
        height: 56px;
    }
    .wwm-video-lazy .wwm-video-play-icon {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 16px;
    }
}
.mystic-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  margin: 20px auto;
  background: #0b0d11;              
  border: 1px solid #221910;        
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
}

.mystic-table th,
.mystic-table td {
  border: 1px solid #221910;        
  padding: 6px 10px;
  text-align: center;
  white-space: nowrap;
  color: #f4e3bf;                   
}

.mystic-table thead th {
  background: linear-gradient(90deg, #2a1c10, #3a2715);
  color: #f8ecd0;
  font-weight: 600;
}

.mystic-table tbody tr:nth-child(odd) {
  background: #111318;
}

.mystic-table tbody tr:nth-child(even) {
  background: #151820;
}


.mystic-table tbody td:last-child {
  font-weight: 600;
  color: #f4e3bf;
  background: rgba(215, 180, 106, 0.07);
}


.mystic-table tbody tr:nth-child(14) td:last-child,
.mystic-table tbody tr:nth-child(13) td:last-child,
.mystic-table tbody tr:nth-child(12) td:last-child {
  background: linear-gradient(90deg, #2b1416, #3a181b);
  color: #ff9797;
}


.mystic-table tbody tr:nth-child(11) td:last-child,
.mystic-table tbody tr:nth-child(10) td:last-child,
.mystic-table tbody tr:nth-child(9) td:last-child,
.mystic-table tbody tr:nth-child(8) td:last-child,
.mystic-table tbody tr:nth-child(7) td:last-child,
.mystic-table tbody tr:nth-child(6) td:last-child,
.mystic-table tbody tr:nth-child(5) td:last-child {
  background: linear-gradient(90deg, #3b2a14, #463017);
  color: #f3ce7a;
}


.mystic-table tbody tr:nth-child(4) td:last-child,
.mystic-table tbody tr:nth-child(3) td:last-child,
.mystic-table tbody tr:nth-child(2) td:last-child,
.mystic-table tbody tr:nth-child(1) td:last-child {
  background: linear-gradient(90deg, #173323, #1f3f2b);
  color: #a8f2bf;
}


.mystic-table tbody tr:hover {
  background: #1b1f27;
}

.mystic-table-wrap {
  width: 100%;
  overflow-x: auto;
}


.mystic-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.mystic-table-wrap::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 3px;
}

.mystic-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 900px;     
  margin: 20px auto;
}


.mystic-table th,
.mystic-table td {
  white-space: normal;
}
@media (max-width: 768px) {
  .mystic-table {
    font-size: 12px;
  }

  .mystic-table th,
  .mystic-table td {
    padding: 4px 6px;
  }
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #1a1a1a;          /* sötét háttér, mint a kártyák */
  color: #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.95rem;
}

.article-content thead {
  background: #252525;           /* enyhén világosabb fejléc */
  border-bottom: 2px solid #333;
}

.article-content thead th {
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-align: left;
  color: #f5f5f5;
}

.article-content tbody tr:nth-child(odd) {
  background: #1e1e1e;          /* váltott sorok */
}

.article-content tbody tr:nth-child(even) {
  background: #181818;
}

.article-content td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid #2a2a2a;
}

.article-content tbody tr:last-child td {
  border-bottom: none;
}

.article-content tbody tr:hover {
  background: #252525;          /* hover = fejléchez közeli szín */
}

/* arany kiemelés a jutalom oszlopra */
.article-content td:nth-child(2) {
  color: #d4a644;               /* arany, mint a rank számok (#1, #2...) */
  font-weight: 500;
}

/* opcionális: baloldali cellák világosabb szöveg */
.article-content td:first-child {
  color: #bbb;
}
.clan-leader {
	font-weight: 700;
    font-size: 0.75em;
    color: #cfb970;
}
/* Klán vezető badge stílus - FLAT */
.clan-leader-badge {
    display: inline-block;
    background: #d4af3752;
    color: #cdb892;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    border: 1px solid #B8941F;
}

/* Klán típus badge-ek - FLAT */
.clan-type-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.58em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Combat típus (piros) - FLAT */
.clan-type-combat {
    background: #8b2a2a6b;
    border: 1px solid #8b2a2a;
    color: #e1a2a2;
}

/* Exploration típus (barna) - FLAT */
.clan-type-exploration {
    background: #6b44236e;
    border: 1px solid #6B4423;
    color: #c5a991;
}

/* Leisure típus (zöld) - FLAT */
.clan-type-leisure {
    background: #4a7c2e4f;
    border: 1px solid #4A7C2E;
    color: #abc99b;
}

/* PvP típus (piros - Combat) - FLAT */
.clan-type-pvp {
    background: #8B2A2A;
    color: #FFF;
}

/* PvE típus (zöld - Leisure) - FLAT */
.clan-type-pve {
    background: #4A7C2E;
    color: #FFF;
}

/* PvX típus (barna - Exploration/Mixed) - FLAT */
.clan-type-pvx {
    background: #6B4423;
    color: #FFF;
}

/* Meta item módosítás a badge-hez */
.meta-item .meta-value {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Info item módosítás (grid kártyákhoz) */
.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
/* ====================================
   GUIDES - SINGLE VIEW IMPROVEMENTS
   ==================================== */

/* Breadcrumb Navigation - Diszkrét */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: #666;
    padding: 0.5rem 0;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #aaa;
}

.breadcrumb span {
    color: #999;
}

/* Article Header - NE VÁLTOZZON */
.article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: center;
}

.date-badge {
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Table of Contents - Kompakt & Letisztult */
.table-of-contents {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.table-of-contents h3 {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-of-contents li:last-child {
    border-bottom: none;
}

.table-of-contents a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    font-size: 0.95rem;
}

.table-of-contents a:hover {
    color: #fff;
    padding-left: 0.5rem;
}

/* Guide Footer Section */
.guide-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Helpful Box - "Hasznos volt ez az útmutató?" */
.helpful-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.helpful-box h4 {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

.feedback-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-feedback {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-feedback:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.btn-yes:hover {
    border-color: #4CAF50;
    color: #4CAF50;
}

.btn-no:hover {
    border-color: #f44336;
    color: #f44336;
}

/* Share Section - "Megosztás" */
.share-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.share-section h4 {
    margin: 0 0 1rem 0;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.share-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Related Guides - Kompakt */
.related-guides {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.related-guides h3 {
    color: #fff;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.related-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.related-card h4 {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 500;
}

.related-card:hover h4 {
    color: #fff;
}

.related-card .difficulty-badge {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
}

/* Article Navigation - Kompakt */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    flex-wrap: wrap;
}

.btn-back {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ccc;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    font-size: 0.9rem;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-top {
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-top:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Heading anchor offset */
.article-content h2[id],
.article-content h3[id] {
    scroll-margin-top: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-navigation {
        flex-direction: column;
        padding: 1rem;
    }
    
    .btn-back,
    .btn-top {
        width: 100%;
        text-align: center;
    }
    
    .feedback-buttons,
    .share-buttons {
        flex-direction: column;
    }
    
    .btn-feedback,
    .share-btn {
        width: 100%;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .table-of-contents,
    .helpful-box,
    .share-section,
    .related-guides {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
}

/* SHARE BUTTON FIX – FELÜLÍRÁS */

.share-section {
    display: block;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #ccc;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ha valahol van .facebook / .twitter ikon CSS, ne tűnjön el a szöveg */
.share-btn.facebook,
.share-btn.twitter {
    background-image: none;
}
.related-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.widget-top-clans {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.top-clans-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(196,160,104,0.35);
    padding-bottom: 4px;
}

.top-clans-tab {
    flex: 1 1 auto;
    max-width: 25%;
    background: #141414;
    border: 1px solid rgba(196,160,104,0.4);
    border-radius: 4px;
    color: #d9aa6d;
    font-size: 0.7rem;
    padding: 5px 2px;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.top-clans-tab:hover {
    background: #191919;
}

.top-clans-tab.active {
    background: #202020;
    color: #ffe7b3;
    border-color: #e0b973;
}


.clan-rank-item {
    padding: 8px 10px;
    margin-bottom: 6px;
    border-radius: 4px;
    background: #161616;
    border-left: 2px solid #3a3a3a;
}

.clan-rank-item .clan-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.clan-rank-item .clan-info strong {
    font-size: 0.85rem;
    color: #f8f8f8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.clan-level-small {
    font-size: 0.7rem;
    color: #f0cf7a;
}
.clan-members-line {
    font-size: 0.75rem;
    color: #cfcfcf;
}

.clan-type-line {
    margin-top: 2px;
}

.clan-type-badge-small {
    display: inline-block;
padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.58em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clan-type-combat .clan-type-badge-small,
.clan-type-badge-small.clan-type-combat {
    background: #8b2a2a6b;
    border: 1px solid #8b2a2a;
    color: #e1a2a2;
}

.clan-type-pvx .clan-type-badge-small,
.clan-type-badge-small.clan-type-pvx {
   background: #6b44236e;
    border: 1px solid #6B4423;
    color: #c5a991;
}

.clan-type-leisure .clan-type-badge-small,
.clan-type-badge-small.clan-type-leisure {
   background: #4a7c2e4f;
    border: 1px solid #4A7C2E;
    color: #abc99b;
}

.top-clans-note {
    display: block;
    margin-top: 4px;
}
