:root {
    --bg-dark: #111;
    --card-bg: rgba(255, 255, 255, .08);
    --card-border: rgba(255, 255, 255, .16);
    --text-main: #fff;
    --text-muted: #d6d6d6;
    --accent: #d6a354;
    --accent-light: #f2c879;
    --shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(214, 163, 84, .22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(135deg, #101010 0%, #1b1b1b 45%, #090909 100%);
}

.page {
    width: 100%;
    max-width: 980px;
    text-align: center;
}

.home-simple {
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 24px 16px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.language-switcher {
    display: inline-flex;
    gap: 8px;
    padding: 7px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.language-switcher a {
    min-width: 44px;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.language-switcher a.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #161616;
}

.logo {
    display: block;
    width: 210px;
    max-width: 78%;
    margin: 0 auto 22px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
}

.hero h1 {
    font-size: clamp(24px, 7vw, 44px);
    line-height: 1.05;
    margin: 0 0 22px;
    letter-spacing: -1px;
}

.hero p {
    margin: 0 auto;
    max-width: 620px;
    color: var(--text-muted);
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.55;
}

.home-actions {
    width: min(680px, 100%);
    display: grid;
    gap: 14px;
    margin-top: 8px;
}

.home-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px;
    border-radius: 26px;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.home-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(214, 163, 84, 0.22), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 60%);
    pointer-events: none;
}

.home-card:hover {
    transform: translateY(-3px);
    border-color: rgba(242, 200, 121, 0.55);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
}

.home-card-icon,
.home-card-content,
.home-card-arrow {
    position: relative;
    z-index: 1;
}

.home-card-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #161616;
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.home-card-content {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.home-card-title {
    display: block;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 4px;
}

.home-card-desc {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.35;
}

.email-card .home-card-desc {
    overflow-wrap: anywhere;
}

.home-card-arrow {
    flex: 0 0 auto;
    color: var(--accent-light);
    font-size: 26px;
    font-weight: 900;
}

.main-menu-card {
    min-height: 116px;
    padding: 24px 20px;
    border-color: rgba(242, 200, 121, 0.42);
    background:
        radial-gradient(circle at top left, rgba(214, 163, 84, 0.26), transparent 42%),
        rgba(255, 255, 255, 0.09);
}

.main-menu-card .home-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    font-size: 32px;
}

.main-menu-card .home-card-title {
    font-size: 28px;
}

.secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.secondary-actions .home-card {
    align-items: flex-start;
    min-height: 142px;
    flex-direction: column;
}

.secondary-actions .home-card-arrow {
    position: absolute;
    right: 18px;
    top: 18px;
}

.footer {
    margin-top: auto;
    padding-top: 28px;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    text-align: center;
}

.single-action,
.main-menu-button,
.cards,
.card,
.card-content,
.icon,
.button {
    /* clase vechi păstrate fără să mai influențeze noul layout */
}

.follow-section {
    width: 100%;
    max-width: 720px;
    margin: 30px auto 0;
    text-align: center;
}

.follow-title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.88);
}

.follow-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.follow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    height: 62px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.30);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

.follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
    filter: brightness(1.07);
}

.follow-button svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    flex: 0 0 auto;
}

.follow-button.facebook {
    background: linear-gradient(135deg, #1877f2, #3457ff);
}

.follow-button.instagram {
    background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d, #fcb045);
}

.follow-button.tiktok {
    background: linear-gradient(135deg, #050505, #181818);
}

@media (max-width: 720px) {
    .home-simple {
        padding: 18px 12px 24px;
    }

    .language-switcher {
        margin-bottom: 18px;
    }

    .language-switcher a {
        min-width: 40px;
        padding: 8px 11px;
        font-size: 13px;
    }

    .logo {
        width: 180px;
        max-width: 76%;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .home-actions {
        gap: 12px;
    }

    .home-card {
        border-radius: 22px;
        padding: 15px;
        gap: 13px;
    }

    .main-menu-card {
        min-height: 104px;
        padding: 18px 16px;
    }

    .main-menu-card .home-card-icon {
        width: 60px;
        height: 60px;
        font-size: 29px;
    }

    .main-menu-card .home-card-title {
        font-size: 24px;
    }

    .home-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 23px;
    }

    .home-card-title {
        font-size: 18px;
    }

    .home-card-desc {
        font-size: 13px;
    }

    .secondary-actions {
        grid-template-columns: 1fr;
    }

    .secondary-actions .home-card {
        min-height: auto;
        flex-direction: row;
        align-items: center;
    }

    .secondary-actions .home-card-arrow {
        position: relative;
        right: auto;
        top: auto;
    }

    .footer {
        padding-top: 24px;
    }
}

@media (max-width: 520px) {
    .follow-section {
        max-width: 100%;
        margin-top: 26px;
    }

    .follow-buttons {
        gap: 12px;
    }

    .follow-button {
        width: 100%;
        max-width: 320px;
        height: 58px;
        font-size: 16px;
    }

    .follow-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 390px) {
    .logo {
        width: 165px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .main-menu-card .home-card-title {
        font-size: 22px;
    }

    .home-card-title {
        font-size: 17px;
    }

    .home-card-icon {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}