@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #000000, #222222);
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    width: 90%;
    padding: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 20px auto;
    background: #f0c75e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
}

.header {
    margin-bottom: 30px;
}

.title {
    font-size: 24px;
    margin-bottom: 10px;
}

.description {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 30px;
}

.banner-container {
    width: 100%;
    margin: 15px 0 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.banner-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.banner-image {
    width: 100%;
    display: block;
}

.banner-text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.fallback-banner {
    width: 100%;
    height: 100px;
    background: #f0c75e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fallback-banner-text-large {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 2px;
}

.fallback-banner-text-small {
    font-size: 16px;
    margin: 0;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.link {
    background-color: #111111;
    border: 1px solid #333333;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.link:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-text {
    flex-grow: 1;
    text-align: left;
    font-weight: bold;
}

.chevron {
    font-size: 20px;
}

.footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666666;
}

.footer a {
    color: #999999;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #f0c75e;
}