body {
    font-family: Arial, sans-serif;
    background: #e9e3de;
    margin: 0;
    padding: 0 20px;
}
h1 {
    text-align: center;
    margin-top: 30px;
}
.country-section {
    margin-bottom: 40px;
}
.country-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}
.glass-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.glass-card {
    background: #d9dadf;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 220px;
    padding: 15px;
    text-align: center;
}
.glass-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
}
.glass-name {
    font-weight: bold;
    margin: 10px 0 5px 0;
}
.brewery {
    color: #666;
    font-size: 0.95em;
}
.description {
    font-size: 0.9em;
    color: #444;
}
.country-btn {
    display: inline-flex;
    align-items: center;
    font-size: 1.2em;
    margin: 10px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background: #e9e6e7;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s;
}
.country-btn:hover {
    background: #f0f0f0;
}
.flag {
    font-size: 1.5em;
    margin-right: 10px;
}
.back-btn {
    margin-bottom: 20px;
    padding: 8px 16px;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    background: #eee;
    cursor: pointer;
}
.brewery-section {
    margin-bottom: 30px;
}
.brewery-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.brewery-photo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #ddd;
}
.brewery-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #222;
}
.brewery-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}
.brewery-card {
    background: #ccbeb1;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: 180px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}
.brewery-card:hover {
    background: #f0f0f0;
}
.brewery-photo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 2px solid #ddd;
}
.brewery-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #222;
}
.intro {
    margin: 20px auto 30px auto;
    font-size: 1.1em;
    color: #555;
    text-align: left;
}
.continent-title {
    font-size: 1.3em;
    font-weight: bold;
    margin: 30px 0 10px 0;
    color: #444;
}
.continent-section {
    margin-bottom: 20px;
}
.modal {
    position: fixed;
    z-index: 1000;
    background: #f2f0ef;
    left: 0; top: 0;
    width: 90%; height: 90%;
    max-width: 1000px; max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 3px solid #ccc;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-images {
    display: flex !important;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
}

.modal-images img {
    max-width: 160px;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0;
}

.modal-content {
    padding: 24px;
    border-radius: 8px;
    max-width: 1000px;
    width: 90%;
    max-height: 1000px;
    height: 90%;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 2em;
    cursor: pointer;
}
.modal-content img {
    width: 40%;
    max-width: 420px;
    border-radius: 8px;
    margin-bottom: 16px;
}