* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(135deg, #f5f1ed 0%, #ede6e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Decorative accent */
.container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 135, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: #2c2416;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 0.95em;
    color: #7d6d63;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
}

.links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-item {
    display: block;
    padding: 18px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: #2c2416;
    background: #f9f7f4;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.05em;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 135, 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.link-item:hover::before {
    left: 100%;
}

.link-item:hover {
    background: linear-gradient(135deg, #f0e8e0 0%, #ebe3db 100%);
    border-color: #d4af87;
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(212, 175, 135, 0.15);
}

.link-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.link-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    font-size: 1.3em;
    display: inline-block;
}

.arrow {
    color: #d4af87;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.link-item:hover .arrow {
    transform: translateX(3px);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5dbd1, transparent);
    margin: 10px 0;
}

@media (max-width: 600px) {
    .container {
        padding: 35px 25px;
    }

    h1 {
        font-size: 1.8em;
    }

    .link-item {
        padding: 15px 18px;
        font-size: 1em;
    }

    .flag {
        font-size: 1.1em;
    }
}

/* Print styles */
@media print {
    body {
        background: white;
    }

    .container {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .link-item {
        page-break-inside: avoid;
    }
}
