* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    background: #0f2a21;
    color: #fcf7f0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.ethno-header {
    background: linear-gradient(145deg, #7a1a2c 0%, #1b4d3b 100%);
    border-bottom: 5px solid #f2c94c;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.header-overlay {
    background: rgba(0, 0, 0, 0.2);
    padding: 70px 0 60px;
}

.brand-name {
    font-size: 4.2rem;
    font-weight: 700;
    color: #f2c94c;
    letter-spacing: 6px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    margin-bottom: 8px;
}

.brand-sub {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff5e6;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.cultural-line {
    width: 240px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f2c94c, #d4a033, transparent);
    margin: 22px auto 0;
    border-radius: 4px;
}

.main-luxury-content {
    flex: 1;
    padding: 85px 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(242, 201, 76, 0.06) 0%, transparent 30%),
                      radial-gradient(circle at 80% 70%, rgba(242, 201, 76, 0.05) 0%, transparent 40%);
    background-color: #0f2a21;
}

.grid-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.philosophy-card {
    flex: 1;
    max-width: 550px;
    background: rgba(27, 77, 59, 0.65);
    backdrop-filter: blur(2px);
    padding: 40px 38px;
    border-radius: 20px;
    border: 1px solid rgba(242, 201, 76, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.philosophy-card h2 {
    font-size: 2.6rem;
    color: #f2c94c;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.accent-text {
    font-size: 1.5rem;
    color: #ff6b7f;
    font-weight: 700;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(255, 107, 127, 0.2);
}

.philosophy-card p {
    font-size: 1.2rem;
    color: #e6dfd7;
    margin-bottom: 30px;
}

.menu-teaser {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.teaser-item {
    font-size: 1.2rem;
    color: #fcf7f0;
    background: linear-gradient(95deg, #9e1e32 0%, rgba(158, 30, 50, 0.3) 100%);
    padding: 14px 24px;
    border-left: 6px solid #f2c94c;
    border-radius: 0 12px 12px 0;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.auth-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.luxury-auth-card {
    background: #fcf7f0;
    border-radius: 24px;
    padding: 50px 45px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.25s ease;
}

.luxury-auth-card:hover {
    transform: translateY(-6px);
}

.card-ornament {
    height: 9px;
    background: linear-gradient(90deg, #b8223a, #f2c94c, #1f6b4f);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 2px 12px rgba(242, 201, 76, 0.3);
}

.luxury-auth-card h3 {
    font-size: 2.2rem;
    color: #0f2a21;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
}

.card-welcome {
    text-align: center;
    font-style: italic;
    font-size: 1.15rem;
    color: #6d7e78;
    margin-bottom: 35px;
    border-bottom: 1px dashed #d9d0c7;
    padding-bottom: 18px;
}

.input-luxury-group {
    margin-bottom: 28px;
}

.input-luxury-group label {
    display: block;
    font-size: 0.9rem;
    color: #1b3d31;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.input-luxury-group input {
    width: 100%;
    padding: 16px 18px;
    background-color: #ffffff;
    border: 2px solid #d9d0c7;
    border-radius: 14px;
    color: #0f2a21;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02);
}

.input-luxury-group input:focus {
    outline: none;
    border-color: #b8223a;
    box-shadow: 0 0 0 4px rgba(184, 34, 58, 0.15);
}

.form-actions-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 38px;
    font-size: 1rem;
    color: #1f3d31;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    color: #1b3d31;
}

.custom-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #b8223a;
    transform: scale(1.1);
}

.forgot-link {
    color: #b8223a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    border-bottom: 1px dotted transparent;
}

.forgot-link:hover {
    color: #d43f56;
    border-bottom-color: #d43f56;
}

.btn-gold-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #f2c94c 0%, #d9a830 100%);
    color: #0f2a21;
    border: none;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(242, 201, 76, 0.45);
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
}

.btn-gold-submit:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 14px 32px rgba(242, 201, 76, 0.6);
    background: linear-gradient(135deg, #f7d65a, #d9a830);
}

.register-footer-link {
    text-align: center;
    margin-top: 30px;
    font-size: 1.05rem;
    color: #4a5f56;
}

.register-footer-link a {
    color: #b8223a;
    text-decoration: none;
    font-weight: 700;
    margin-left: 6px;
    border-bottom: 2px solid rgba(184, 34, 58, 0.3);
    transition: all 0.2s;
}

.register-footer-link a:hover {
    color: #d43f56;
    border-bottom-color: #d43f56;
}

.ethno-footer {
    background: #0b1f18;
    color: #b8cdc5;
    padding: 50px 0 30px;
    border-top: 5px solid #f2c94c;
    font-size: 1rem;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-info p {
    color: #fcf7f0;
    font-size: 1.05rem;
}

.footer-info p span {
    color: #f2c94c;
    font-weight: 600;
}

.footer-bottom-line {
    text-align: center;
    border-top: 1px solid rgba(255, 251, 245, 0.12);
    padding-top: 25px;
    font-size: 0.9rem;
    color: #8da69e;
    letter-spacing: 0.5px;
}

.footer-bottom-line strong {
    color: #f2c94c;
    font-weight: 400;
}

@media (max-width: 992px) {
    .grid-container {
        flex-direction: column;
        gap: 50px;
    }
    .philosophy-card {
        max-width: 100%;
        text-align: center;
    }
    .menu-teaser {
        align-items: center;
    }
    .teaser-item {
        width: 100%;
        max-width: 400px;
        border-radius: 12px;
        border-left: 6px solid #f2c94c;
        text-align: left;
    }
    .auth-wrapper {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .brand-name {
        font-size: 2.8rem;
    }
    .brand-sub {
        font-size: 1.2rem;
    }
    .luxury-auth-card {
        padding: 35px 20px 30px;
    }
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    .philosophy-card h2 {
        font-size: 2rem;
    }
    .accent-text {
        font-size: 1.2rem;
    }
}