/* Reset-ish */
body {
    margin: 0;
    padding: 0;
    font-family: Frutiger, Verdana, Arial, sans-serif;
    background: linear-gradient(to bottom, #dfe8f5, #486cb0);
    color: #000;
}

/* Fixed 4:3 style layout */
.container {
    width: 800px;
    margin: 20px auto;
    background: #dbeaff;
    border: 2px solid #5e88d6;
    box-shadow: 0 0 10px #6c7fa3;
}

/* Top bar */
.topbar {
    background: linear-gradient(to right, #8aa4d6, #5f79a8);
    padding: 8px;
    border-bottom: 2px outset #5e88d6;
}

.topbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.topbar a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to bottom, #cfdaf0, #759eeb);
    border-bottom: 2px solid #759eeb;
}

.header h1 {
    margin: 0;
    font-size: 32px;
    color: #2b3e66;
}

.subtitle {
    margin-top: 5px;
    font-size: 14px;
    color: #ffffff;
}

/* Content */
.content {
    padding: 20px;
    text-align: center;
}

/* Social list */
.social-list {
    list-style: none;
    padding: 0;
}

.social-list li {
    margin: 10px 0;
}

.social-list a {
    display: inline-block;
    width: 300px;
    padding: 10px;
    background: linear-gradient(to bottom, #ffffff, #9cc5ff);
    border: 2px solid #40669c;
    color: #1f2f55;
    text-decoration: none;
    font-weight: bold;
}

.social-list a:hover {
    background: linear-gradient(to bottom, #eaf1ff, #b3c4e6);
    border-color: #5c74a3;
}

/* Disclaimer */
.disclaimer {
    margin: 20px;
    padding: 15px;
    background: #f0f6ff;
    border: 2px outset #5e88d6;
    font-size: 13px;
    text-align: center;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px;
    background: #b7c6e3;
    border-top: 2px solid #7a8fb3;
    font-size: 12px;
}