body {
    margin: 0;
    padding: 20px;
    background-color: #121212;
    color: #ffffff;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #ff3333;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #000;
    margin-bottom: 5px;
}

h2 {
    color: #ffcc00;
    font-size: 2rem;
    text-shadow: 2px 2px 0px #000;
    margin-top: 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 képarány */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border: 4px solid #ff3333;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.quote-box {
    background: #222;
    border-left: 5px solid #ffcc00;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    font-size: 1.3rem;
}

.features {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.card {
    background: #1e1e1e;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
    min-width: 200px;
    font-family: Arial, sans-serif;
}

.card h3 {
    color: #ffcc00;
    margin-top: 0;
}

button {
    background-color: #ff3333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.5rem;
    font-family: 'Impact', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
}

button:hover {
    background-color: #cc0000;
    transform: scale(1.05);
}