/* CSS Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Színpaletta - sötét lila és fekete témával */
    --primary-dark: #0a0a0f;
    --secondary-dark: #12121a;
    --primary-purple: #6a11cb;
    --secondary-purple: #2575fc;
    --accent-purple: #8a2be2;
    --light-purple: #a855f7;
    --text-primary: #f8f8f8;
    --text-secondary: #b0b0c0;
    --text-muted: #8888a0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Árnyékok */
    --shadow-sm: 0 2px 8px rgba(106, 17, 203, 0.1);
    --shadow-md: 0 4px 16px rgba(106, 17, 203, 0.2);
    --shadow-lg: 0 8px 32px rgba(106, 17, 203, 0.3);
    
    /* Áttűnések */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    --gradient-dark: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    
    /* Animációk */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animált háttér - halálfejek */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.skull {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.03;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a855f7"><path d="M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm-5 7c0-2.8 2.2-5 5-5s5 2.2 5 5c0 2.9-2.9 7.2-5 9.9-2.1-2.7-5-7-5-9.9z"/><circle cx="9" cy="9" r="1.5"/><circle cx="15" cy="9" r="1.5"/><path d="M9 15c0 1.7 1.3 3 3 3s3-1.3 3-3h-6z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 25s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) translateX(40px) rotate(180deg);
    }
    75% {
        transform: translateY(20px) translateX(20px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

/* Navigáció */
.navbar {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
}

.logo i {
    color: var(--light-purple);
    font-size: 2rem;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-accent {
    color: var(--light-purple);
    -webkit-text-fill-color: var(--light-purple);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(138, 43, 226, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Fő tartalom */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 3rem;
}

/* Hero szekció */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 4rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--light-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--light-purple);
    -webkit-text-fill-color: var(--light-purple);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: rgba(138, 43, 226, 0.1);
    color: var(--light-purple);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(138, 43, 226, 0.2);
    min-width: 150px;
    transition: var(--transition-normal);
}

.stat-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--light-purple);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Section stílusok */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Script szekció */
.script-container {
    background: var(--secondary-dark);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    overflow: hidden;
    margin-bottom: 2rem;
}

.script-header {
    background: rgba(10, 10, 15, 0.9);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.script-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    color: var(--light-purple);
}

.copy-btn {
    background: rgba(138, 43, 226, 0.2);
    color: var(--light-purple);
    border: 1px solid rgba(138, 43, 226, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.copy-btn:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.script-content {
    padding: 1.5rem;
    max-height: 500px;
    overflow-y: auto;
    background: #0a0a12;
}

.script-content code {
    font-family: 'Courier New', monospace;
    color: #e2e2f0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.script-content pre {
    margin: 0;
}

.script-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--light-purple);
    margin-bottom: 1rem;
}

.info-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Letöltés szekció */
.download-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.download-card {
    background: var(--gradient-dark);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    text-align: center;
}

.download-icon {
    font-size: 4rem;
    color: var(--light-purple);
    margin-bottom: 1.5rem;
}

.download-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.download-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.download-features i {
    color: var(--success-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.download-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.system-requirements {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.system-requirements h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.system-requirements ul {
    list-style: none;
    margin-bottom: 2rem;
}

.system-requirements li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.system-requirements li i {
    color: var(--light-purple);
    width: 20px;
}

.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-box i {
    color: var(--error-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.warning-box p {
    color: #fca5a5;
    font-size: 0.9rem;
}

/* Javaslat szekció */
.suggestion-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.suggestion-form {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--light-purple);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2);
}

.form-info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-info i {
    color: var(--info-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.form-info p {
    color: #93c5fd;
    font-size: 0.9rem;
}

.result-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.result-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    display: block;
}

.result-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
    display: block;
}

.suggestion-info {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.suggestion-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.suggestion-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.suggestion-info li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.suggestion-info li:before {
    content: "•";
    color: var(--light-purple);
    font-weight: bold;
}

.recent-suggestions {
    margin-top: 2rem;
}

.recent-suggestions h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.suggestion-item {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--light-purple);
}

.suggestion-item strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.suggestion-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Játékok szekció */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.game-card {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.game-icon {
    font-size: 2rem;
    color: var(--light-purple);
    margin-bottom: 1rem;
}

.game-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.game-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.status-beta {
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
}

/* Kulcsok szekció */
.keys-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.key-category {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.key-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.key-category h3 i {
    color: var(--light-purple);
}

.keys-scroll-container {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.keys-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.keys-scroll-container::-webkit-scrollbar-track {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 3px;
}

.keys-scroll-container::-webkit-scrollbar-thumb {
    background: var(--light-purple);
    border-radius: 3px;
}

.key-item {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.key-text {
    font-family: 'Courier New', monospace;
    color: var(--text-primary);
    font-size: 0.9rem;
    word-break: break-all;
}

.copy-key-btn {
    background: rgba(138, 43, 226, 0.2);
    color: var(--light-purple);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.copy-key-btn:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: scale(1.1);
}

/* Kulcs igénylés szekció */
.request-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.request-form {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.request-info {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
}

.faq-item h5 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats-box {
    margin-top: 2rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.stats-box h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat {
    flex: 1;
}

.stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--light-purple);
    margin-bottom: 0.25rem;
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Discord szekció */
.discord-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.discord-card {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    text-align: center;
}

.discord-header {
    margin-bottom: 2rem;
}

.discord-icon {
    font-size: 4rem;
    color: #5865F2;
    margin-bottom: 1rem;
}

.discord-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.members-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(88, 101, 242, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #b2b8ff;
    font-size: 0.9rem;
}

.discord-features {
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature i {
    font-size: 1.5rem;
    color: var(--light-purple);
    margin-top: 0.25rem;
}

.feature h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.btn-discord {
    background: #5865F2;
    color: white;
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

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

.discord-preview {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    overflow: hidden;
}

.preview-header {
    background: rgba(10, 10, 15, 0.9);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
}

.preview-title {
    color: var(--text-primary);
    font-weight: 600;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.preview-messages {
    padding: 1.5rem;
    height: 300px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.message-content {
    flex: 1;
}

.message-author {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.message-time {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: normal;
}

.message-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.preview-input {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(138, 43, 226, 0.3);
    background: rgba(10, 10, 15, 0.5);
}

.preview-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(18, 18, 26, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Exo 2', sans-serif;
}

/* Frissítések oldal */
.updates-page {
    padding-top: 7rem;
}

.updates-hero {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.updates-hero h1 {
    font-size: 3.5rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--light-purple), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.updates-hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.updates-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.updates-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.update-item {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: var(--transition-normal);
    position: relative;
}

.update-item:hover {
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}

.update-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 0 2px 2px 0;
}

.update-header {
    margin-bottom: 1.5rem;
}

.update-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.update-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge.major {
    background: rgba(168, 85, 247, 0.2);
    color: var(--light-purple);
}

.badge.minor {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

.badge.bugfix {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.badge.security {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.update-date, .update-version {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.update-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.update-changes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.update-changes li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.update-changes li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
}

.update-note {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #fcd34d;
    font-size: 0.9rem;
}

.updates-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(18, 18, 26, 0.7);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.sidebar-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.version-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 15, 0.5);
    border-radius: 8px;
    margin-top: 1rem;
}

.version-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.bugs-list li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.bugs-list li:before {
    content: "⚠";
    color: var(--warning-color);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.5rem;
    justify-content: center;
}

/* Lábléc */
.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--light-purple);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--light-purple);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: rgba(138, 43, 226, 0.3);
    color: var(--light-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    border-top: 1px solid rgba(138, 43, 226, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666 !important;
}

/* Értesítések */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 9999;
    max-width: 400px;
    animation: slideIn 0.3s ease forwards;
    box-shadow: var(--shadow-lg);
}

.notification.success {
    background: rgba(16, 185, 129, 0.9);
    border-left: 4px solid var(--success-color);
}

.notification.error {
    background: rgba(239, 68, 68, 0.9);
    border-left: 4px solid var(--error-color);
}

.notification.warning {
    background: rgba(245, 158, 11, 0.9);
    border-left: 4px solid var(--warning-color);
}

.notification.info {
    background: rgba(59, 130, 246, 0.9);
    border-left: 4px solid var(--info-color);
}

.notification i {
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notification-message {
    font-size: 0.9rem;
    opacity: 0.9;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.notification-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}