.y2-page {
    font-family: 'Lato', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #f5f7fb 0%, #e7efff 100%);
    color: #0b1d46;
}

.y2-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    box-sizing: border-box;
}

.y2-hero {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 14px 38px rgba(16, 72, 99, 0.14);
    color: #0b1d46;
}

.y2-hero h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 16px;
    text-align: center;
}

.y2-hero h2 {
    font-size: 28px;
    margin: 32px 0 12px;
}

.y2-hero p,
.y2-hero ul {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 16px;
    color: #1b2e4a;
}

.y2-hero ul {
    padding-left: 24px;
}

.y2-hero li + li {
    margin-top: 10px;
}

.y2-large-text {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
}

.y2-hero-img {
    display: flex;
    justify-content: center;
    margin: 12px 0 28px;
}

.y2-hero-img img {
    width: 100%;
    max-width: 540px;
    max-height: 540px;
}

.y2-hero-cta {
    display: flex;
    justify-content: center;
    margin: 24px 0 8px;
}

.y2-cta-btn {
    font-size: 18px;
    background: #78206e;
    color: #ffffff;
    padding: 16px 28px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid #78206e;
    transition: all 0.2s ease;
}

.y2-cta-btn:hover {
    background: #ffffff;
    color: #78206e;
}

.y2-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 12px 0 8px;
}

.y2-subnav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 72, 99, 0.12);
    background: #ffffff;
    color: #0b1d46;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.y2-subnav a::after {
    content: "›";
    margin-left: 10px;
    font-weight: 800;
    color: #78206e;
    transition: transform 0.2s ease;
}

.y2-subnav a:hover {
    border-color: #78206e;
    color: #78206e;
    box-shadow: 0 10px 22px rgba(120, 32, 110, 0.14);
    transform: translateY(-2px);
}

.y2-subnav a:hover::after {
    transform: translateX(4px);
}

.y2-subnav-top {
    margin-bottom: 24px;
}

.y2-section-title {
    font-size: 26px;
    margin: 36px 0 18px;
    font-weight: 700;
}

.y2-text-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.y2-card {
    background: #f7f9ff;
    border-radius: 16px;
    padding: 16px 18px;
    border: 1px solid #dce6ff;
}

.y2-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.y2-image-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 38px auto 0;
}

.y2-circle {
    width: clamp(240px, 28vw, 360px);
    height: clamp(240px, 28vw, 360px);
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 36px rgba(16, 72, 99, 0.2);
    background: #78206e;
    border: 3px solid #78206e;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.y2-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.y2-hover-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 18px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.y2-circle:hover img {
    opacity: 0;
}

.y2-circle:hover .y2-hover-text {
    opacity: 1;
}

.y2-subsection {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(16, 72, 99, 0.12);
    margin-top: 24px;
}

.y2-page table {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.y2-page th,
.y2-page td {
    border: 1px solid #d8e2f2;
    padding: 10px;
    text-align: left;
    font-size: 15px;
}

.y2-page th {
    background: #f0f4ff;
    font-weight: 700;
}

.y2-page details {
    background: #f7f9ff;
    border: 1px solid #d6e4ff;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 14px;
}

.y2-page details summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
}

.y2-page details summary::-webkit-details-marker {
    display: none;
}

.y2-page details summary::before {
    content: "➕";
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.2s ease;
}

.y2-page details[open] summary::before {
    content: "➖";
    transform: rotate(180deg);
}

.emoji-list {
    list-style: none;
    padding-left: 0;
}

.emoji-list li {
    position: relative;
    padding-left: 26px;
}

.emoji-list li:nth-child(1)::before {
    content: "🥇";
    position: absolute;
    left: 0;
}

.emoji-list li:nth-child(2)::before {
    content: "🥈";
    position: absolute;
    left: 0;
}

.emoji-list li:nth-child(3)::before {
    content: "🥉";
    position: absolute;
    left: 0;
}

.y2-large-text,
.event-date,
.event-location {
    color: #4a5b77;
}

.event-date {
    font-style: italic;
}

.flash-event {
    animation: flash-event 1.5s infinite;
    border-radius: 4px;
    padding: 2px 4px;
}

@keyframes flash-event {
    0%, 50%, 100% { background-color: transparent; }
    25%, 75% { background-color: rgba(255, 0, 0, 0.16); }
}

@media (max-width: 900px) {
    .y2-hero h1 { font-size: 30px; }
    .y2-circle { width: 210px; height: 210px; }
    .y2-hover-text { font-size: 16px; padding: 12px; }
}

@media (max-width: 600px) {
    .y2-content { padding: 28px 16px 60px; }
    .y2-hero { padding: 22px; }
    .y2-circle { width: 190px; height: 190px; }
}
