body {
    background-color: #1a1814;
    background-image: linear-gradient(rgba(26, 24, 20, 0.85), rgba(26, 24, 20, 0.95)), url('../rajzok/rajz.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fffbf4;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    padding: 20px 15px;
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 768px) {
    body {
        padding: 40px;
    }
}

.nav-welcome {
    font-size: 0.8em;
    opacity: 0.8;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.nav-welcome a {
    color: #fffbf4;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 251, 244, 0.4);
    transition: all 0.25s ease;
}

.nav-welcome a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

h1 {
    font-size: 1.4em;
    font-weight: normal;
    border-bottom: 1px solid rgba(255, 251, 244, 0.25);
    display: inline-block;
    padding-bottom: 10px;
    letter-spacing: 3px;
    margin-top: 0;
    margin-bottom: 30px;
}

.intro-text {
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 0.95em;
}

.support-container {
    max-width: 900px;
    background: rgba(255, 251, 244, 0.01);
    border: 1px dashed rgba(255, 251, 244, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.support-title {
    font-size: 1.2em;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.support-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .support-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

.support-card {
    background: rgba(255, 251, 244, 0.02);
    border: 1px solid rgba(255, 251, 244, 0.12);
    border-radius: 6px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 140px;
}

.support-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.12);
    transform: translateY(-1px);
}

.card-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-desc {
    font-size: 0.85em;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 10px;
}

.action-btn {
    align-self: flex-start;
    padding: 4px 8px;
    border: 1px dashed #f59e0b;
    border-radius: 4px;
    color: #f59e0b;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 0.8em;
}

.support-card:hover .action-btn {
    background: #f59e0b;
    color: #1a1814;
    border-style: solid;
}

.back-btn-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 251, 244, 0.25);
    max-width: 900px;
}

.back-link {
    color: #fffbf4;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9em;
}

.back-link:hover {
    text-shadow: 0 0 15px #ffffff, 0 0 5px #ffffff;
    padding-left: 10px;
}

.labjegyzet {
    margin-top: 60px;
    font-size: 0.8em;
    opacity: 0.6;
}

/* Űrlap (Form) stílusok */
.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85em;
    color: rgba(255, 251, 244, 0.85);
    letter-spacing: 1px;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(26, 24, 20, 0.6);
    border: 1px dashed rgba(255, 251, 244, 0.25);
    border-radius: 4px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.9em;
    font-style: italic;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #f59e0b;
    border-style: solid;
    background: rgba(26, 24, 20, 0.9);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    align-self: flex-start;
    padding: 8px 16px;
    border: 1px dashed #f59e0b;
    border-radius: 4px;
    background: transparent;
    color: #f59e0b;
    font-weight: bold;
    font-family: inherit;
    font-style: italic;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #f59e0b;
    color: #1a1814;
    border-style: solid;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(1px);
}

