body {
    margin: 0;
    font-family: 'Lora', serif; /* Alap mindenhez */
    background-size: cover;
    color: #000;
    display: flex;
}

nav {
    width: 220px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    min-height: 100vh;
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

nav .logo {
    font-family: 'Anton', sans-serif;
    font-size: 8rem;
    font-weight: bold;
    letter-spacing: 5px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 3rem;
}

nav h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 0.5rem 0;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

nav a:hover {
    background: #333;
}

.film-perforation {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.film-perforation span {
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
}

main {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    background: none;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 60px;
    background: rgba(255, 255, 255, 0.7);
    margin: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    width: 2px;
    height: 100%;
    background: #000;
}

.post {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.post time {
    width: 80px;
    text-align: right;
    margin-right: 20px;
    font-size: 0.9rem;
    color: #111;
    font-weight: bold;
}

.post .content {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 6px;
    max-width: 900px;
}

.post img {
    max-width: 100%;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.try-tool-link {
    margin-top: 0.5rem;
    display: inline-block;
    background: #e53935;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.try-tool-link:hover {
    background: #d32f2f;
}

.two-col {
    display: flex;
    gap: 2rem;
}

.two-col > div {
    flex: 1;
}

.hu {
    font-weight: 300;
    font-style: italic;
    color: #555;
}

.main-title {
    text-align: left;
    margin: 2rem 0;
    position: relative;
}

.main-title h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    background: repeating-linear-gradient(
            45deg,
            #888888,
            #888888 10px,
            #444444 10px,
            #eeeeee 20px
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 15px;
    text-align: center;
    font-family: sans-serif;
    z-index: 1000;
}

#cookie-banner button {
    margin-left: 10px;
    padding: 5px 10px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

#cookie-banner button.reject {
    background: #f44336;
}

#cookie-banner button:hover {
    opacity: 0.9;
}