:root {
    --bg-color: #ffffff;
    --bg-secondary: #f4f6f8;
    --text-main: #111111;
    --text-muted: #666666;
    --accent: #FF4500;
    --line-color: #e0e0e0;
}

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- Navigáció --- */
.nav-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.menu-btn {
    width: 50px;
    height: 50px;
    background: var(--text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: transform 0.3s;
}

.menu-btn:hover { transform: scale(1.1); }

.dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.menu-overlay {
    position: fixed;
    top: 0; right: 0; width: 0; height: 100vh;
    background: var(--accent);
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-overlay.active { width: 100%; }
.menu-items { list-style: none; text-align: center; }

.menu-link {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.menu-link:hover {
    color: var(--text-main);
    transform: translateX(20px);
}

.menu-overlay.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 30px; right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #ffffff 0%, #f0f0f0 100%);
}

.hero-content { text-align: center; z-index: 2; }

.main-title {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -5px;
    margin-bottom: 10px;
    color: var(--text-main);
    margin-right: -5px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-right: -4px;
}

.hero-graphic {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

.yoyo-shape {
    width: 500px; height: 500px;
    border: 2px solid var(--text-main);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s infinite;
}

.hero .string-line {
    position: absolute;
    top: auto;
    bottom: 50%;
    left: 50%;
    width: 2px;
    height: 60vh;
    background: linear-gradient(to top, transparent 0%, var(--text-main) 40%);
    transform: translateX(-50%);
    margin-bottom: 100px;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* --- Timeline Layout --- */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 100px 20px;
}

.string-track {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: var(--line-color);
    transform: translateX(-50%);
}

.section-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section-block.visible { opacity: 1; transform: translateY(0); }

.section-block.left { flex-direction: row-reverse; }
.section-block.left .content-box { margin-right: 55%; text-align: right; }
.section-block.right .content-box { margin-left: 55%; text-align: left; }

.content-box {
    width: 45%;
    background: white;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-radius: 4px;
    position: relative;
}

.content-box::after {
    content: '';
    position: absolute; top: 40px;
    width: 16px; height: 16px;
    background: var(--accent);
    border: 4px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--line-color);
    z-index: 2;
}

.left .content-box::after { right: -13.5%; }
.right .content-box::after { left: -13.5%; }

.section-number {
    font-size: 4rem; font-weight: 900;
    color: var(--bg-secondary);
    position: absolute; top: -20px; z-index: -1;
}
.left .section-number { right: 10px; }
.right .section-number { left: 10px; }

h2 { font-size: 2.5rem; margin-bottom: 15px; }

.info-card {
    background: var(--bg-secondary);
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid var(--accent);
}

.link-arrow {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: var(--accent);
}

.clean-list li { padding: 10px 0; border-bottom: 1px solid #eee; }

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    padding: 40px 20px 0 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    border-top: none;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 20px;
    z-index: 2;
}

.footer-inner::after {
    content: '';
    width: 2px;
    height: 60px;
    display: block;
    background: linear-gradient(to bottom, transparent 0%, var(--line-color) 100%);
}

/* --- Kapcsolat & Shop Elemek --- */
.contact-area { margin-top: 20px; }
.big-email-link {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 20px;
    word-break: break-all;
}
.big-email-link:hover { color: var(--accent); }

.social-links-block {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #333;
    color: white;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}
.social-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.shop-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--text-main);
    margin-top: 10px;
    font-weight: bold;
}
.shop-btn:hover { background: var(--text-main); color: white; }

/* --- Játékosok (Avatarok) --- */
.avatars {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-top: 25px;
}

.player-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    cursor: pointer;
}

.circle-avatar {
    width: 60px; height: 60px;
    background: #ddd;
    border-radius: 50%;
    transition: 0.3s;
    background-size: cover;
    background-position: center;
}

.player-name {
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-main);
    line-height: 1.2;
    transition: 0.3s;
}

.player-item:hover .circle-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.player-item:hover .player-name { color: var(--accent); }

/* --- Tags --- */
.tags { margin-top: 20px; }
.tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--text-main);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 2px;
}

/* --- Mobil Nézet --- */
@media (max-width: 768px) {
    .main-title { font-size: 4rem; word-wrap: break-word; }
    .string-track { left: 20px; }
    
    .section-block {
        flex-direction: column;
        margin-left: 40px;
    }
    .section-block.left { flex-direction: column; }
    
    .section-block.left .content-box,
    .section-block.right .content-box {
        width: 100%;
        margin: 0;
        text-align: left;
    }
    
    .left .content-box::after,
    .right .content-box::after {
        left: -48px;
        right: auto;
    }
    
    .avatars { justify-content: flex-start; }
    .big-email-link { font-size: 1.5rem; }
}