/* ==========================================================================
   AZ EREDETI ALAP VISSZAÁLLÍTÁSA ÉS FEJLESZTÉSE
   ========================================================================== */
:root {
    --primary-color: #c90000;
    --primary-hover: #ff1a1a;
    --bg-dark: #0f0f13;
    --bg-light: #18181f;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --discord: #5865F2;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

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

/* ==========================================================================
   Navigáció
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(15, 15, 19, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a:not(.discord-btn) {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:not(.discord-btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.discord-btn):hover::after {
    width: 100%;
}

.discord-btn {
    background-color: var(--discord);
    padding: 10px 20px;
    border-radius: 6px;
    color: white !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    background: url('images/hero.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-glow {
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(201,0,0,0.15) 0%, rgba(15,15,19,0) 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,15,19,0.7) 0%, rgba(15,15,19,0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-shadow: 0px 5px 15px rgba(0,0,0,0.8);
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201, 0, 0, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 26, 26, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 0, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(201, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 0, 0, 0); }
}
.pulse-effect { animation: pulse 2s infinite; }

.ip-copied-msg {
    margin-top: 20px;
    font-size: 1rem;
    color: #4cd137;
    opacity: 0;
    font-weight: bold;
    transition: opacity 0.3s;
}
.ip-copied-msg.show { opacity: 1; }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

.scroll-down a:hover {
    opacity: 1;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* ==========================================================================
   Szekció Címek
   ========================================================================== */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.section-title span {
    color: var(--primary-color);
}

.underline {
    height: 4px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.about-card {
    background-color: var(--bg-light);
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::after {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    background-color: #1a1a24;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(201, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.about-card:hover .card-icon-wrapper {
    background-color: var(--primary-color);
}

.card-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.about-card:hover .card-icon-wrapper i {
    color: var(--white);
}

.about-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

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

/* ==========================================================================
   Features Section (FEJLESZTETT KÉPES KÁRTYÁK AZ EREDETI STÍLUSBAN)
   ========================================================================== */
.features {
    background-color: var(--bg-light);
}

.features-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-with-bg {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    border-radius: 8px;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
    background-size: cover;
    background-position: center;
    min-height: 150px;
}

.feature-with-bg:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.feature-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(15,15,19,0.95) 0%, rgba(15,15,19,0.8) 50%, rgba(15,15,19,0.4) 100%);
    z-index: 1;
}

.feature-with-bg .feature-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-with-bg .feature-text {
    position: relative;
    z-index: 2;
    padding: 30px 30px 30px 0;
}

.feature-text h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-text p {
    color: #cfcfcf;
    font-size: 1.05rem;
}

/* Discord Promo Doboz */
.discord-promo {
    background: linear-gradient(135deg, #181824 0%, #0d0d14 100%);
    max-width: 900px;
    margin: 60px auto 0;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(88, 101, 242, 0.3);
}

.discord-promo h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.discord-promo p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-discord {
    background-color: var(--discord);
    color: white;
    font-size: 1.2rem;
    padding: 16px 40px;
    display: inline-flex;
}

.btn-discord:hover {
    background-color: #4752C4;
    transform: translateY(-5px);
}

@keyframes pulse-discord {
    0% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(88, 101, 242, 0); }
    100% { box-shadow: 0 0 0 0 rgba(88, 101, 242, 0); }
}
.pulse-discord { animation: pulse-discord 2s infinite; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #08080a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-size: 2.5rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--text-muted);
    margin-top: 5px;
}

.footer-links a {
    font-size: 1.8rem;
    margin-left: 25px;
    color: var(--text-muted);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    color: #666;
    font-size: 0.9rem;
}

/* ==========================================================================
   Reszponzív (Mobil)
   ========================================================================== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background-color: rgba(15, 15, 19, 0.98);
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero-title { font-size: 3.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .feature-with-bg { flex-direction: column; text-align: center; }
    .feature-overlay { background: rgba(15,15,19,0.85); }
    .feature-with-bg .feature-text { padding: 0 20px 30px; }
    
    .footer-content { flex-direction: column; text-align: center; gap: 30px; }
    .footer-links a { margin: 0 15px; }
}

/* PROGRESS BAR */
.donation-progress {
    background-color: var(--bg-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
}
.donation-progress h3 { color: white; margin-bottom: 15px; }
.progress-track {
    width: 100%;
    height: 25px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c90000 0%, #ff4d4d 100%);
    border-radius: 15px;
    transition: width 1s ease-in-out;
}
.progress-text {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px black;
}

/* COUNTDOWN TIMER */
.countdown-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}
.countdown-box {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
}
.countdown-box span {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: white;
    line-height: 1;
}
.countdown-box small {
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
}

/* THEME TOGGLE BUTTON */
.theme-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.theme-btn:hover { background: rgba(255,255,255,0.1); }

/* LIGHT MODE OVERRIDES */
body.light-mode {
    --bg-dark: #f5f6fa;
    --bg-light: #ffffff;
    --text-color: #2f3640;
    --white: #111111;
    background-color: var(--bg-dark);
    color: var(--text-color);
}
body.light-mode .navbar { background-color: rgba(255,255,255,0.95); box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
body.light-mode .nav-links a { color: #333; }
body.light-mode .nav-links a:hover { color: var(--primary-color); }
body.light-mode .page-header { background: linear-gradient(to bottom, rgba(255,255,255,0.9), var(--bg-dark)), url('images/hero.jpg') center/cover; }
body.light-mode .page-header h1 { color: #111; text-shadow: none; }
body.light-mode .feature-card, body.light-mode .vip-card, body.light-mode .job-card, body.light-mode .faq-item {
    border-color: #ddd; box-shadow: 0 5px 15px rgba(0,0,0,0.05); background-color: #fff;
}
body.light-mode .faq-question { color: #111; }
body.light-mode .btn-outline { color: #333; border-color: #999; }
body.light-mode .btn-outline:hover { background: #eee; }
body.light-mode footer { background-color: #eaeaea; }
body.light-mode footer p { color: #555; }
body.light-mode .theme-btn { color: #333; border-color: #ccc; }
body.light-mode .donation-progress h3 { color: #333; }


 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
        D V  Z L P  S P L A S H   S C R E E N 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . w e l c o m e - s p l a s h   { 
         p o s i t i o n :   f i x e d ; 
         t o p :   0 ; 
         l e f t :   0 ; 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 v h ; 
         b a c k g r o u n d :   # 0 f 0 f 1 3   u r l ( ' i m a g e s / h e r o . j p g ' )   n o - r e p e a t   c e n t e r   c e n t e r / c o v e r ; 
         b a c k g r o u n d - b l e n d - m o d e :   m u l t i p l y ; 
         z - i n d e x :   9 9 9 9 9 ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         a l i g n - i t e m s :   c e n t e r ; 
         t r a n s i t i o n :   t r a n s f o r m   0 . 8 s   c u b i c - b e z i e r ( 0 . 7 7 ,   0 ,   0 . 1 7 5 ,   1 ) ,   o p a c i t y   0 . 8 s   e a s e ; 
 } 
 . w e l c o m e - s p l a s h : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ; 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 2 0 1 , 0 , 0 , 0 . 1 5 )   0 % ,   r g b a ( 1 5 , 1 5 , 1 9 , 0 . 9 5 )   1 0 0 % ) ; 
 } 
 . w e l c o m e - c o n t e n t   { 
         p o s i t i o n :   r e l a t i v e ; 
         z - i n d e x :   2 ; 
         t e x t - a l i g n :   c e n t e r ; 
         m a x - w i d t h :   8 0 0 p x ; 
         p a d d i n g :   5 0 p x ; 
         b a c k g r o u n d :   r g b a ( 2 4 ,   2 4 ,   3 1 ,   0 . 8 5 ) ; 
         b o r d e r - r a d i u s :   1 5 p x ; 
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 0 1 ,   0 ,   0 ,   0 . 3 ) ; 
         b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 8 ) ; 
 } 
 . w e l c o m e - t i t l e   { 
         f o n t - s i z e :   3 . 5 r e m ; 
         f o n t - w e i g h t :   9 0 0 ; 
         l e t t e r - s p a c i n g :   3 p x ; 
         m a r g i n - b o t t o m :   1 0 p x ; 
         f o n t - f a m i l y :   ' O s w a l d ' ,   s a n s - s e r i f ; 
 } 
 . w e l c o m e - t i t l e   s p a n   { 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
 } 
 . w e l c o m e - d i v i d e r   { 
         w i d t h :   6 0 p x ; 
         h e i g h t :   4 p x ; 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r ) ; 
         m a r g i n :   0   a u t o   2 0 p x   a u t o ; 
         b o r d e r - r a d i u s :   2 p x ; 
 } 
 . w e l c o m e - c o n t e n t   h 2   { 
         f o n t - s i z e :   1 . 8 r e m ; 
         m a r g i n - b o t t o m :   1 5 p x ; 
         c o l o r :   w h i t e ; 
 } 
 . w e l c o m e - c o n t e n t   p   { 
         f o n t - s i z e :   1 . 1 r e m ; 
         c o l o r :   # a 0 a 0 a 0 ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
         l i n e - h e i g h t :   1 . 6 ; 
 } 
 . w e l c o m e - s p l a s h . h i d d e n   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 0 % ) ; 
         o p a c i t y :   0 ; 
         p o i n t e r - e v e n t s :   n o n e ; 
 } 
 b o d y . l o c k e d   { 
         o v e r f l o w :   h i d d e n ; 
 } 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . w e l c o m e - c o n t e n t   { 
                 p a d d i n g :   3 0 p x   2 0 p x ; 
                 m a r g i n :   2 0 p x ; 
         } 
         . w e l c o m e - t i t l e   { 
                 f o n t - s i z e :   2 . 5 r e m ; 
         } 
 } 
  
 