* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========== EGYÉNI SCROLLBAR ========== */

/* Chromium alapú böngészők (Chrome, Edge, Opera) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #2d1212;
    border-left: 1px solid rgba(255, 99, 99, 0.25);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b6b 0%, #ff4444 50%, #ff8c42 100%);
    border-radius: 10px;
    border: 2px solid #2d1212;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8888 0%, #ff6666 50%, #ffa366 100%);
}

::-webkit-scrollbar-corner {
    background: #2d1212;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #ff6666 #2d1212;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2d1212;
}

/* Felső sáv */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(45, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255, 99, 99, 0.35);
}

.logo-container .logo {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

.title-container .title-img {
    height: 50px;
    width: auto;
}

/* Hamburger menü ikon */
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #e2e8f0;
    border-radius: 10px;
    transition: 0.3s;
}

/* Oldalmenü */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: rgba(45, 18, 18, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    padding-top: 100px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-left: 1px solid rgba(255, 99, 99, 0.35);
}

.side-menu.open {
    right: 0;
}

.side-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 18px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    margin: 5px 0;
    border: 1px solid rgba(255, 99, 99, 0.2);
}

.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-link:hover {
    background-color: rgba(255, 99, 99, 0.25);
    transform: translateX(-5px);
    border-color: #ff6b6b;
    color: #ff6b6b;
}

/* Árnyék a menü mögött */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    z-index: 1001;
}

.menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Fő tartalom */
.content {
    margin-top: 80px;
    padding: 0;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Lapozó */
.carousel-container {
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Pontok a képen belül, alul */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background-color: rgba(45, 18, 18, 0.7);
    padding: 8px 16px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(226, 232, 240, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ff6b6b;
    width: 24px;
    border-radius: 10px;
}

.dot:hover {
    background-color: #ff8c42;
    transform: scale(1.2);
}

/* ========== CSATLAKOZÁS SZEKCIÓ ========== */
.connect-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #2d1212 0%, #3a1818 50%, #2d1212 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.connect-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.connect-header {
    text-align: center;
    margin-bottom: 60px;
}

.connect-header h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 2px;
}

.connect-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.connect-item {
    background: rgba(58, 24, 24, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 32px;
    padding: 50px 60px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    transition: all 0.4s ease;
}

.connect-item:hover {
    transform: translateY(-8px);
    border-color: #ff6b6b;
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.25);
    background: rgba(58, 24, 24, 0.9);
}

.connect-item.coming-soon {
    opacity: 0.8;
}

.connect-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.connect-title h2 {
    font-size: 36px;
    color: #ff8c42;
    margin: 0;
    font-weight: 700;
}

.server-address {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.server-address code {
    font-size: 28px;
    font-family: 'Courier New', monospace;
    color: #ff6b6b;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 24px;
    border-radius: 16px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.copy-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff4444);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.5);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #ff4444, #cc3333);
    color: #e2e8f0;
}

.server-version {
    margin-top: 15px;
}

.version-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(255, 107, 107, 0.08));
    color: #ff6b6b;
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 107, 0.45);
}

.soon-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.25), rgba(255, 140, 66, 0.08));
    color: #ff8c42;
    padding: 8px 24px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 140, 66, 0.45);
}

/* ========== SZABÁLYZAT SZEKCIÓ ========== */
.rules-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #3a1818 0%, #2d1212 50%, #3a1818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.rules-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.rules-header {
    text-align: center;
    margin-bottom: 50px;
}

.rules-header h1 {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 2px;
}

.rules-intro {
    background: rgba(58, 24, 24, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 30px 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.rules-intro p {
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.6;
    margin: 12px 0;
}

.rules-category {
    background: rgba(58, 24, 24, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.rules-category:hover {
    border-color: rgba(255, 107, 107, 0.45);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.category-header:hover {
    background: rgba(0, 0, 0, 0.5);
}

.category-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ff8c42;
    margin: 0;
}

.toggle-btn {
    font-size: 28px;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.category-header.active .toggle-btn {
    transform: rotate(180deg);
}

.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-content.open {
    max-height: 2000px;
}

.category-content ul {
    list-style: none;
    padding: 25px 35px;
}

.category-content li {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.category-content li:last-child {
    border-bottom: none;
}

/* ========== EVENTEK SZEKCIÓ ========== */
.events-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #2d1212 0%, #3a1818 50%, #2d1212 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.events-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.events-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-header h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 2px;
}

.current-event, .current-season {
    margin-bottom: 40px;
}

.current-event h2, .current-season h2 {
    font-size: 32px;
    color: #ff8c42;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid #ff8c42;
}

.event-card, .season-card {
    background: rgba(58, 24, 24, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 28px;
    padding: 35px;
    border: 1px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
}

.event-card:hover, .season-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c42;
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.2);
}

.event-name, .season-name {
    font-size: 32px;
    font-weight: 800;
    color: #ff8c42;
    margin-bottom: 20px;
}

.event-date, .season-date {
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.event-description, .season-features {
    font-size: 16px;
    color: #f1f5f9;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Várható eventek és seasonök lenyíló stílusok */
.upcoming-events-wrapper, .upcoming-seasons-wrapper {
    margin-bottom: 30px;
    background: rgba(58, 24, 24, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.25);
}

.upcoming-events-header, .upcoming-seasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.upcoming-events-header:hover, .upcoming-seasons-header:hover {
    background: rgba(0, 0, 0, 0.5);
}

.upcoming-events-header h2, .upcoming-seasons-header h2 {
    font-size: 24px;
    color: #ff6b6b;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #ff6b6b;
}

.upcoming-toggle {
    font-size: 24px;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

.upcoming-events-header.open .upcoming-toggle,
.upcoming-seasons-header.open .upcoming-toggle {
    transform: rotate(180deg);
}

.upcoming-events-content, .upcoming-seasons-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.upcoming-events-content.open, .upcoming-seasons-content.open {
    max-height: 2000px;
}

.upcoming-events-grid, .upcoming-seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 25px 30px;
}

.upcoming-event-card, .upcoming-season-card {
    background: rgba(255, 107, 107, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.upcoming-event-card:hover, .upcoming-season-card:hover {
    transform: translateY(-3px);
    border-color: #ff6b6b;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.upcoming-event-name, .upcoming-season-name {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 12px;
}

.upcoming-event-date, .upcoming-season-date {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.upcoming-event-desc, .upcoming-season-features {
    font-size: 14px;
    color: #f1f5f9;
    line-height: 1.5;
}

/* Régi eventek és seasonök lenyíló stílusok */
.past-events-wrapper, .past-seasons-wrapper {
    margin-bottom: 50px;
    background: rgba(58, 24, 24, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

.past-events-header, .past-seasons-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.past-events-header:hover, .past-seasons-header:hover {
    background: rgba(0, 0, 0, 0.5);
}

.past-events-header h2, .past-seasons-header h2 {
    font-size: 24px;
    color: #94a3b8;
    margin: 0;
    padding-left: 10px;
    border-left: 4px solid #94a3b8;
}

.past-toggle {
    font-size: 24px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.past-events-header.open .past-toggle,
.past-seasons-header.open .past-toggle {
    transform: rotate(180deg);
}

.past-events-content, .past-seasons-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.past-events-content.open, .past-seasons-content.open {
    max-height: 2000px;
}

.past-events-grid, .past-seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    padding: 25px 30px;
}

.past-event-card, .past-season-card {
    background: rgba(58, 24, 24, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 140, 66, 0.2);
    transition: all 0.3s ease;
}

.past-event-card:hover, .past-season-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 140, 66, 0.35);
}

.past-event-name, .past-season-name {
    font-size: 20px;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 12px;
}

.past-event-date, .past-season-date {
    font-size: 14px;
    color: #e2e8f0;
    margin-bottom: 10px;
}

.past-event-desc, .past-season-features {
    font-size: 14px;
    color: #f1f5f9;
    line-height: 1.5;
}

.event-loading {
    color: #e2e8f0;
    text-align: center;
    padding: 20px;
}

/* ========== GALÉRIA SZEKCIÓ ========== */
.gallery-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #3a1818 0%, #2d1212 50%, #3a1818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.gallery-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 2px;
}

.gallery-header p {
    font-size: 18px;
    color: #e2e8f0;
    margin-top: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    background: rgba(58, 24, 24, 0.6);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: #ff6b6b;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-loading {
    text-align: center;
    color: #e2e8f0;
    font-size: 18px;
    padding: 50px;
    grid-column: 1 / -1;
}

.load-more-btn {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.25), rgba(255, 107, 107, 0.08));
    border: 1px solid rgba(255, 107, 107, 0.45);
    padding: 14px 40px;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 600;
    color: #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.load-more-btn:hover {
    background: rgba(255, 107, 107, 0.3);
    transform: scale(1.02);
    border-color: #ff6b6b;
    color: #f1f5f9;
}

/* Kép nagyító */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 18, 18, 0.98);
    z-index: 2000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    border: 2px solid #ff6b6b;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 50px;
    color: #e2e8f0;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover {
    color: #ff8c42;
}

/* ========== DISCORD SZEKCIÓ ========== */
.discord-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #2d1212 0%, #3a1818 50%, #2d1212 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.discord-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.discord-header {
    margin-bottom: 50px;
}

.discord-header h1 {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 50%, #5865F2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    letter-spacing: 2px;
}

.discord-header p {
    font-size: 18px;
    color: #e2e8f0;
    margin-top: 15px;
}

.discord-content {
    background: rgba(58, 24, 24, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 32px;
    padding: 50px 40px;
    border: 1px solid rgba(88, 101, 242, 0.3);
    transition: all 0.3s ease;
}

.discord-content:hover {
    border-color: #5865F2;
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.2);
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-decoration: none;
    background: linear-gradient(135deg, #5865F2, #4752C4);
    padding: 18px 35px;
    border-radius: 60px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.discord-link:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.45);
}

.discord-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.discord-link span {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.discord-ticket {
    font-size: 18px;
    color: #f1f5f9;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    margin: 0;
}

.discord-ticket strong {
    color: #5865F2;
    font-weight: 700;
}

@media (max-width: 768px) {
    .title-container .title-img {
        height: 35px;
    }
    
    .logo-container .logo {
        height: 45px;
    }
    
    .topbar {
        padding: 0 15px;
    }
    
    .carousel-dots {
        gap: 8px;
        padding: 6px 12px;
        bottom: 15px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 18px;
    }
    
    .nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .nav-link {
        font-size: 16px;
        padding: 12px 20px;
        gap: 10px;
    }
    
    .side-menu {
        width: 280px;
        right: -280px;
    }
    
    .connect-header h1 {
        font-size: 32px;
    }
    
    .connect-title h2 {
        font-size: 24px;
    }
    
    .server-address code {
        font-size: 18px;
        word-break: break-all;
        padding: 10px 16px;
    }
    
    .server-address {
        flex-direction: column;
        align-items: stretch;
    }
    
    .copy-btn {
        justify-content: center;
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .connect-item {
        padding: 30px 25px;
    }
    
    .connect-section {
        padding: 60px 20px;
    }
    
    .rules-header h1 {
        font-size: 32px;
    }
    
    .rules-intro {
        padding: 20px 25px;
    }
    
    .rules-intro p {
        font-size: 15px;
    }
    
    .category-header {
        padding: 18px 25px;
    }
    
    .category-header h2 {
        font-size: 22px;
    }
    
    .category-content ul {
        padding: 18px 25px;
    }
    
    .category-content li {
        font-size: 14px;
    }
    
    .toggle-btn {
        font-size: 24px;
    }
    
    .rules-section {
        padding: 60px 20px;
    }
    
    .events-header h1 {
        font-size: 36px;
    }
    
    .current-event h2, .current-season h2 {
        font-size: 24px;
    }
    
    .event-name, .season-name {
        font-size: 24px;
    }
    
    .event-card, .season-card {
        padding: 25px;
    }
    
    .upcoming-events-header h2, .upcoming-seasons-header h2,
    .past-events-header h2, .past-seasons-header h2 {
        font-size: 18px;
    }
    
    .upcoming-events-header, .upcoming-seasons-header,
    .past-events-header, .past-seasons-header {
        padding: 15px 20px;
    }
    
    .upcoming-events-grid, .upcoming-seasons-grid,
    .past-events-grid, .past-seasons-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .events-section {
        padding: 60px 20px;
    }
    
    .gallery-header h1 {
        font-size: 36px;
    }
    
    .gallery-header p {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .load-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .gallery-section {
        padding: 60px 20px;
    }
    
    .lightbox-close {
        font-size: 36px;
        right: 20px;
        top: 15px;
    }
    
    .discord-header h1 {
        font-size: 36px;
    }
    
    .discord-header p {
        font-size: 14px;
    }
    
    .discord-content {
        padding: 35px 25px;
    }
    
    .discord-link {
        padding: 14px 25px;
        gap: 12px;
    }
    
    .discord-logo {
        width: 30px;
        height: 30px;
    }
    
    .discord-link span {
        font-size: 18px;
    }
    
    .discord-ticket {
        font-size: 14px;
    }
    
    .discord-section {
        padding: 60px 20px;
    }
}

/* ========== LÁBLÉC ========== */
.footer {
    background: linear-gradient(135deg, #2d1212 0%, #3a1818 100%);
    color: #e2e8f0;
    padding: 60px 40px 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 107, 107, 0.25);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.motto {
    font-size: 18px;
    font-style: italic;
    color: #f1f5f9;
    position: relative;
    display: inline-block;
}

.motto::before {
    font-size: 30px;
    position: absolute;
    left: -15px;
    top: -10px;
    opacity: 0.5;
}

.motto::after {
    font-size: 30px;
    position: absolute;
    right: -15px;
    bottom: -25px;
    opacity: 0.5;
}

.footer-nav h4, .footer-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ff8c42;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 140, 66, 0.45);
    display: inline-block;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav ul li a:hover {
    color: #ff6b6b;
    transform: translateX(5px);
}

.footer-info p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-info a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    font-size: 14px;
    color: #94a3b8;
}

/* Beállítások a lábléchez */
@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand h3 {
        font-size: 24px;
    }
    
    .motto {
        font-size: 16px;
    }
    
    .footer-nav h4, .footer-info h4 {
        font-size: 18px;
    }
    
    .footer-nav ul li a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}