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

body {
    height: 100vh;
    background: #0f172a; /* placeholder dark background */
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

/* Main container aligned to top center */
.container {
    position: relative;
    text-align: center;
    padding-top: 40px;
    z-index: 1;
}

/* Circle logo */
.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 0 auto;
    border: 4px solid white;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title and subtitle */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.button-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 80px;
}

/* Standard preview buttons */
.preview-button {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(4px);
}

.preview-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.preview-button .preview {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Special SSLA image button */
.image-button {
    position: relative;
    display: block;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
}

.image-button img {
    width: 100%;
    height: auto;
    display: block;
}

.image-button-label {
    position: absolute;
    bottom: 10px;
    left: 15px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;
    font-size: 16px;
    border-radius: 6px;
}

.social-icons {
    margin-top: 15px;
    margin-bottom: 25px;
}

.social-icons a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.1);
}

.site-footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}
