@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Montserrat:wght@800&display=swap');


:root {
    --primary: #c84bfe;
    --primary-dark: #7a00cc;
    --bg-dark: #050505;
    --glass: rgba(20, 10, 30, 0.6);
    --border: rgba(200, 75, 254, 0.2);
    --text-muted: #a0a0a0;
}
/* --- ALAPBEÁLLÍTÁSOK --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    background-image: radial-gradient(circle at 50% 0%, #1a0b2e 0%, #050505 80%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
}

/* --- ÜVEGHATÁS ALAPOSZTÁLY --- */
.glass-panel {
    background: linear-gradient(135deg, rgba(30, 20, 45, 0.4) 0%, rgba(10, 5, 15, 0.6) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200, 75, 254, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* --- NAVIGÁCIÓ (MENÜ) --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 5, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(162, 0, 255, 0.3);
    z-index: 100;
}

.nav-logo .logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-logo span {
    color: #a200ff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #c84bfe;
    text-shadow: 0 0 10px rgba(200, 75, 254, 0.5);
}

/* --- GOMBOK --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #7a00cc, #c84bfe);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(162, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(200, 75, 254, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #a200ff;
}

.btn-outline {
    background: transparent;
    color: #c84bfe;
    border: 1px solid #c84bfe;
}

.btn-outline:hover {
    background: rgba(162, 0, 255, 0.1);
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.3);
}

/* --- HERO SZEKCIÓ (FEJLÉC) --- */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 40px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.main-title span {
    color: transparent;
    -webkit-text-stroke: 1px #c84bfe;
    background: linear-gradient(90deg, #c84bfe, #7a00cc);
    -webkit-background-clip: text;
    text-shadow: 0 0 30px rgba(162, 0, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* Szerver státusz kijelző */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 2s infinite;
}

.highlight {
    color: #c84bfe;
}

/* --- FUNKCIÓK SZEKCIÓ --- */
.features-section {
    padding: 100px 5%;
    text-align: center;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 40px 30px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-top: 1px solid rgba(200, 75, 254, 0.8);
}

.feature-icon {
    font-size: 2.5rem;
    color: #c84bfe;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(162, 0, 255, 0.4);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- LÁBLÉC --- */
.glass-footer {
    text-align: center;
    padding: 30px;
    background: rgba(10, 5, 15, 0.8);
    border-top: 1px solid rgba(162, 0, 255, 0.2);
    color: #777;
    font-size: 0.85rem;
}

/* --- ANIMÁCIÓK --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Mobilos nézet alapok */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Később csinálhatunk hamburger menüt */
    .main-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
}



/* =========================================
   SZABÁLYZAT OLDAL STÍLUSAI
   ========================================= */

.page-header {
    text-align: center;
    padding: 150px 20px 50px 20px;
    animation: fadeInUp 0.8s ease-out;
}

.rules-section {
    padding: 0 5% 100px 5%;
    display: flex;
    justify-content: center;
}

.rules-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Kategória doboz (Üveghatású) */
.rule-category {
    padding: 30px;
    animation: fadeInUp 1s ease-out;
}

.category-title {
    color: #c84bfe;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(200, 75, 254, 0.3);
    padding-bottom: 15px;
    text-shadow: 0 0 10px rgba(162, 0, 255, 0.3);
}

/* Lenyíló fülek (Accordion) dizájnja */
.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.accordion-btn:hover {
    background: rgba(162, 0, 255, 0.1);
}

.rule-name {
    text-align: left;
}

.arrow-icon {
    color: #c84bfe;
    transition: transform 0.3s ease;
}

/* Mi történik, ha kinyitod a fület? */
.accordion-content {
    max-height: 0;
    padding: 0 20px;
    opacity: 0;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
    color: #c0c0c0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Active Class (Amikor a JS rátrakja) */
.accordion-item.active {
    border-color: rgba(162, 0, 255, 0.5);
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.1);
}

.accordion-item.active .arrow-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Elegendő hely a szövegnek */
    padding: 20px;
    opacity: 1;
}

/* --- KATEGÓRIA SZŰRŐ GOMBOK --- */
.rules-layout {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(162, 0, 255, 0.3);
    color: #e0e0e0;
    padding: 10px 25px;
    border-radius: 30px; /* Kerekített gomb forma (pill) */
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.filter-btn:hover {
    background: rgba(162, 0, 255, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(90deg, #7a00cc, #c84bfe);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(162, 0, 255, 0.5);
}

/* =========================================
   TÁMOGATÁS (WEBSHOP) OLDAL STÍLUSAI
   ========================================= */

.store-section {
    padding: 0 5% 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Kártyák Rácsozata (Grid) */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

/* Termék Kártya Dizájn */
.product-card {
    overflow: hidden; /* Hogy a kép ne lógjon ki a lekerekítésből */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(162, 0, 255, 0.4);
    border-top: 1px solid rgba(200, 75, 254, 0.8);
}

.product-image {
    width: 100%;
    height: 200px;
    background-color: rgba(20, 10, 30, 0.8);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 2px solid rgba(162, 0, 255, 0.3);
}

/* Ha nincs kép, ez az ikon jelenik meg középen */
.product-image i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
}

.product-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 5, 15, 0.8);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c84bfe;
    border: 1px solid rgba(162, 0, 255, 0.3);
}

.product-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.product-desc {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1; /* Hogy a gombok mindig alulra kerüljenek */
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-tag {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00ff88; /* Zöld szín, ami kiemeli a fizetőeszközt */
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

/* ÁSZF Szekció */
.aszf-container {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    animation: fadeInUp 1.2s ease-out;
}

.aszf-text {
    color: #c0c0c0;
    line-height: 1.8;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.aszf-text p {
    margin-bottom: 15px;
}

.aszf-text p:last-child {
    margin-bottom: 0;
}

.aszf-text strong {
    color: #c84bfe;
}

/* =========================================
   SEGÍTSÉG ÉS TUTORIAL OLDAL STÍLUSAI
   ========================================= */

.help-section {
    padding: 0 5% 100px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- INTERAKTÍV BILLENTYŰZET --- */
.keyboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    align-items: center;
}

.virtual-keyboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.key-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Maga a Gomb */
.key {
    background: linear-gradient(180deg, rgba(40, 30, 50, 0.8) 0%, rgba(20, 15, 25, 0.9) 100%);
    border: 1px solid rgba(162, 0, 255, 0.4);
    color: #e0e0e0;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 0 rgba(10, 5, 15, 0.9), 0 5px 10px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    padding: 0 15px;
    user-select: none;
}

/* Gomb lenyomása / Hover */
.key:hover {
    background: linear-gradient(180deg, rgba(60, 40, 80, 0.9) 0%, rgba(30, 20, 40, 1) 100%);
    border-color: #c84bfe;
    box-shadow: 0 4px 0 rgba(10, 5, 15, 0.9), 0 0 15px rgba(162, 0, 255, 0.4);
}

.key:active, .active-key {
    transform: translateY(4px); /* Lenyomódik fizikailag */
    box-shadow: 0 0 0 rgba(10, 5, 15, 0.9), 0 0 20px #c84bfe;
    background: rgba(162, 0, 255, 0.3);
    color: white;
    border-color: #c84bfe;
}

/* Egyedi gomb méretek */
.key-space { width: 250px; }
.key-alt { width: 120px; }

/* Kijelző panel a gombok mellett */
.key-info-panel {
    flex: 1;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(162, 0, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
}

.key-info-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.key-info-content p {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    transition: opacity 0.2s ease;
}

.pulse-icon {
    font-size: 2.5rem;
    color: #c84bfe;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

/* --- VIDEÓK RÁCSOZATA --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.video-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-wrapper {
    width: 100%;
    /* 16:9 képarány tartása */
    aspect-ratio: 16 / 9; 
    background: #000;
    border-bottom: 2px solid rgba(162, 0, 255, 0.3);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: none;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #fff;
}

.video-info p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}