/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #16324f, #337f8f);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Soft overlay for calm resort vibe */
.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    padding: 24px;
}

/* Header / Logo area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 24px;
    backdrop-filter: blur(4px);
}

.logo-text h1 {
    font-size: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tagline {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Main box */
.content-box {
    background: rgba(6, 18, 34, 0.9);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.content-box h2 {
    font-size: 22px;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
}

/* Info cards */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.info-card h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.4;
}

.info-link {
    display: inline-block;
    margin-top: 2px;
    font-size: 13px;
    text-decoration: none;
    color: #cbe9ff;
    border-bottom: 1px dashed rgba(203, 233, 255, 0.6);
}

.info-link:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    margin-top: 18px;
    font-size: 11px;
    opacity: 0.8;
    text-align: center;
}

/* Responsive */
@media (min-width: 640px) {
    .content-box {
        padding: 28px 28px;
    }

    .content-box h2 {
        font-size: 24px;
    }

    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
