html, body {
    padding:0;
    margin:0;
}

@font-face {
    font-family: 'Linux Biolinum O';
    src: url('/static/font/LinBiolinum_R.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Linux Biolinum O';
    src: url('/static/font/LinBiolinum_RI.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Linux Biolinum O';
    src: url('/static/font/LinBiolinum_RB.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 120px;
    background: url('/static/img/stripe.png') center/cover;
    z-index: 1000;
}

body::before {
    left: 0;
}

body::after {
    right: 0;
}

body {
    font-family: 'Linux Biolinum O', Georgia, serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    width: 100%;
}

@media (max-width: 768px) {
    body::before,
    body::after {
        display: none;
    }
}

header h1 {
    font-family: "aristelle-sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.25rem;
}

header h1::before,
header h1::after {
    content: '';
    width: 100px;
    height: 60px;
    background: url('/static/img/1.png') center/contain no-repeat;
    margin: 0 15px;
}

@media (max-width: 768px) {
    body {
        background-color: #A8B58A;
    }

    header h1::before,
    header h1::after {
        display: none;
    }

    .subtitle::after {
        content: '';
        display: block;
        width: 100px;
        height: 60px;
        background: url('/static/img/1.png') center/contain no-repeat;
        margin: 10px auto 0;
    }

    .wheel-container {
        padding-top: 0 !important;
        margin-top: 0;
    }

    .wheel-viewport {
        overflow: visible;
    }
}

.subtitle, .early-message {
    text-align: center;
    font-size:1.5rem;
    margin-top: 0;
}

/* Wheel Container */
.wheel-container {
    background: transparent;
    margin-top: 1em;
    padding: 40px 0px;
    position: relative;
    overflow: visible;
}

.wheel-viewport {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 20px;
}

.wheel-items {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.wheel-item {
    position: absolute;
    width: 90%;
    max-width: 550px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.wheel-item.today {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.wheel-item.wheel-center {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3) !important;
}

.wheel-item.today:not(.wheel-center) {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.wheel-item.completed {
    opacity: 0.6;
}

.wheel-item.completed .activity-text {
    text-decoration: line-through;
    color: #999;
}

.wheel-item-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.activity-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.activity-date {
    font-weight: 700;
    color: #ff5754;
    font-size: 1.1em;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-text {
    color: #333;
    font-size: 1.3em;
    line-height: 1.5;
    font-weight: 400;
}

.activity-text a {
    color: #ff5754;
    text-decoration: underline;
    transition: all 0.2s ease;
}

.activity-text a:hover {
    color: #e64845;
    text-decoration: none;
}

.wheel-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wheel-checkbox-label input[type="checkbox"] {
    width: 28px;
    height: 28px;
    cursor: pointer;
    accent-color: #ff5754;
}

.attribution {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.9em;
    opacity: 0.7;
    z-index: 1001;
}
