body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url("https://briwolfie.neocities.org/Index%20Assets/pink2.jpg") center center / cover no-repeat fixed;
    background-color: #1c1b2b;
    color: black;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.page-layout {
    width: min(95%, 1500px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 220px;
    gap: 20px;
    align-items: start;
}

.sidebar-left,
.sidebar-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.main-column {
    min-width: 0;
    display: flex;
}

.content-box {
    position: relative;
    width: 100%;
    padding: 20px;
    border: 2px solid #fdc0cb;
    background: rgba(24, 20, 40, 0.78);
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(253, 192, 203, 0.18);
}

.header {
    text-align: center;
    margin-bottom: 20px;
    padding-inline: 60px;
}

.header img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.home-button {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 52px;
    height: 52px;
    background: rgba(24, 20, 40, 0.92);
    border: 2px solid #fdc0cb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.45);
    z-index: 5;
    transition: 0.2s ease;
}

.home-button:hover {
    background: rgba(40, 30, 60, 0.96);
    box-shadow: 0 0 14px rgba(253, 192, 203, 0.38);
    transform: translateY(-2px);
}

.home-button img {
    width: 70%;
    height: auto;
    display: block;
}

.project-landing {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.landing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.landing-card {
    background: rgba(255, 241, 246, 0.84);
    border: 2px solid #fdc0cb;
    padding: 20px;
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.12);
}

.hero-card {
    min-height: 170px;
}

.landing-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 38px);
    color: #5a2a4d;
}

.landing-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: clamp(20px, 2vw, 24px);
    color: #5a2a4d;
}

.landing-text,
.landing-card p,
.hub-list {
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 1.65;
    margin: 0;
    color: black;
}

.hub-list {
    padding-left: 20px;
}

.hub-list li + li {
    margin-top: 8px;
}

.wide-card {
    grid-column: 1 / -1;
}

.side-panel {
    border: 2px solid #fdc0cb;
    background: rgba(24, 20, 40, 0.82);
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.22);
}

.side-panel2 {
    border: 2px solid #fdc0cb;
    background: rgba(24, 20, 40, 0.82);
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.22);
}

.panel-title {
    padding: 16px;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: bold;
    text-align: center;
    color: #fdc0cb;
    border-bottom: 2px solid #fdc0cb;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.panel-content {
    padding: 20px;
    text-align: center;
    min-height: 120px;
    color: #fff1f6;
    font-weight: bold;
    line-height: 1.45;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-link {
    display: block;
    width: 100%;
    padding: 18px 12px;
    text-align: center;
    text-decoration: none;
    color: #fdc0cb;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: bold;
    border-top: 2px solid #fdc0cb;
    background: rgba(253, 192, 203, 0.12);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
    transition: 0.2s ease;
}

.side-link:hover {
    background: rgba(253, 192, 203, 0.22);
}

.side-dropdown {
    position: relative;
}

.dropdown-toggle {
    width: 100%;
    border: none;
    cursor: pointer;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
}

.dropdown-toggle.side-link {
    display: block;
    width: 100%;
    padding: 18px 12px;
    font-size: clamp(16px, 1.4vw, 18px);
    font-weight: bold;
    text-align: center;
    color: #fdc0cb;
    text-decoration: none;
    border-top: 2px solid #fdc0cb;
    background: rgba(253, 192, 203, 0.12);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: 0.2s ease;
}

.dropdown-toggle.side-link:hover {
    background: rgba(253, 192, 203, 0.22);
}

.dropdown-menu {
    position: absolute;
    top: 50%;
    left: calc(100% + 6px);
    transform: translateY(-18px);
    min-width: 260px;
    max-height: min(70vh, 520px);
    overflow-y: auto;
    background: rgba(24, 20, 40, 0.96);
    border: 2px solid #fdc0cb;
    box-shadow: 0 0 14px rgba(253, 192, 203, 0.25);
    border-radius: 10px;
    padding: 8px;
    display: none;
    z-index: 1000;
}

.side-dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-dropdown.open::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: #fdc0cb;
    box-shadow: 0 0 6px rgba(253, 192, 203, 0.45);
    z-index: 1001;
    pointer-events: none;
}

.dropdown-item {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: black;
    background: rgba(255, 241, 246, 0.88);
    border: 2px solid #fdc0cb;
    border-radius: 8px;
    transition: 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(253, 192, 203, 0.45);
    transform: translateY(-2px);
}

@media (max-width: 1100px) {
    .dropdown-menu {
        top: calc(100% + 8px);
        left: 0;
        transform: none;
        min-width: 100%;
        max-height: none;
    }

    .dropdown-menu::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .landing-card {
        padding: 14px;
    }

    .corner-sticker {
        width: 48px;
        bottom: 10px;
        left: 10px;
    }
}