* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}
/* Mouse tracking background animation */
.mouse-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.3;
    background: radial-gradient(600px at var(--x, 50%) var(--y, 50%), 
                rgba(147, 51, 234, 0.4) 0%, 
                rgba(59, 130, 246, 0.2) 25%, 
                transparent 50%);
    transition: opacity 0.3s ease;
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(147, 51, 234, 0.5);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0; /* Ez volt -100%, ami eltolta */
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    opacity: 0; /* Alapból láthatatlan */
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px; /* hogy ne lógjon ki a sarkoknál */
}
.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1; /* Csak hover vagy aktív állapotban jelenik meg */
}
.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.5);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}
/* Main content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background-image: url('image/backgroungweb.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* ez rögzíti */ 
}
.section {
    display: none;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.5s ease-in-out;
}
.section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Hero section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    margin: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(147, 51, 234, 0.5);
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #3b82f6, #9333ea);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.6);
}
/* Server status */
.server-status {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.3);
}
.server-status h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #3b82f6;
}
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.status-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    backdrop-filter: blur(5px);
}
.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}
.online { background: #10b981; }
.offline { background: #ef4444; }
/* Content grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem;
}
.content-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}
.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}
.content-card h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}
.content-card p {
    opacity: 0.9;
    margin-bottom: 1rem;
}
.card-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, #3b82f6, #9333ea);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(147, 51, 234, 0.4);
}
/* Rules section */
.rules-container {
    margin: 2rem;
}
.rule-category {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    overflow: hidden;
}
.rule-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.rule-header:hover {
    background: rgba(59, 130, 246, 0.1);
}
.rule-header h3 {
    color: #3b82f6;
}
.rule-arrow {
    transition: transform 0.3s ease;
}
.rule-arrow.open {
    transform: rotate(180deg);
}
.rule-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.rule-content.open {
    max-height: 5000px;
}
.rule-content div {
    padding: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}
/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 1px solid rgba(147, 51, 234, 0.3);
}
/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
}

/* Marci */
.content-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem;
}
.content-card2 {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(147, 51, 234, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.content-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.card-button-youtube {
    display: inline-block;
    padding: 0.5rem 8.0rem;
    background: linear-gradient(45deg, #ff0101, #ff5100);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.9rem;
    transition: all 0.3s ease;
}

.card-button-tiktok {
    display: inline-block;
    padding: 0.5rem 8.0rem;
    background: linear-gradient(45deg, #000000, #2d0057);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.527);
}