@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f4f0e8 0%, #eef2f7 100%);
    color: #3c2e1a;
    min-height: 100vh;
}

.content {
    max-width: 980px;
    margin: 36px auto;
    padding: 42px 34px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 18px;
    border: 1px solid rgba(180, 138, 60, 0.18);
    box-shadow: 0 14px 40px rgba(76, 60, 30, 0.14);
    text-align: center;
    backdrop-filter: blur(3px);
}

.content h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #7a5c2c;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(180, 138, 60, 0.12);
}

.subtitle {
    color: #6f6250;
    margin-bottom: 34px;
    font-size: 1.02rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 22px;
}

.choice-card {
    display: block;
    position: relative;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, #fff9ef 0%, #f6ecdc 100%);
    border: 1px solid rgba(180, 138, 60, 0.28);
    border-radius: 16px;
    padding: 24px 20px 22px;
    text-align: left;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.choice-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(180, 138, 60, 0.06), rgba(226, 183, 106, 0.02));
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.choice-card::after {
    content: '↗';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a5c2c;
    background: rgba(245, 215, 177, 0.55);
    border: 1px solid rgba(180, 138, 60, 0.25);
    font-size: 14px;
    font-weight: 700;
}

.choice-card:hover {
    transform: translateY(-4px);
    border-color: rgba(180, 138, 60, 0.52);
    box-shadow: 0 14px 28px rgba(122, 92, 44, 0.2);
    background: linear-gradient(145deg, #fffaf2 0%, #f4e5ce 100%);
}

.choice-card:hover::before {
    opacity: 1;
}

.choice-card h2 {
    font-size: 1.32rem;
    margin-bottom: 10px;
    color: #7a5c2c;
    letter-spacing: 0.3px;
}

.choice-card p {
    color: #655946;
    line-height: 1.6;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .content {
        margin: 16px;
        padding: 28px 18px;
    }

    .content h1 {
        font-size: 1.7rem;
    }

    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .choice-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .choice-card {
        padding: 20px 16px;
    }

    .choice-card h2 {
        font-size: 1.18rem;
    }
}
