.ab {
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 6rem 1.5rem 4rem;
}

.ab-tagline {
    max-width: 680px;
    width: 100%;
    text-align: center;
    padding-bottom: 0.5rem;
}

.ab-tagline-text {
    font-size: 1.55rem;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: -0.03em;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(12px);
    animation: msiFadeUp 0.5s forwards;
}

.milestone {
    max-width: 680px;
    width: 100%;
    position: relative;
}

.milestone-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3rem;
    text-align: center;
}

.milestone-line {
    position: absolute;
    left: 50%;
    top: 72px;
    bottom: 0;
    width: 1px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.milestone-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.ms-loading,
.ms-error,
.ms-empty {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    padding: 3rem 0;
}

.ms-error {
    color: rgba(255, 100, 100, 0.5);
}

.milestone-item {
    display: grid;
    grid-template-columns: 1fr 16px 1fr;
    gap: 0 1.5rem;
    align-items: start;
    min-width: 0;
}

.mi-dot {
    display: flex;
    justify-content: center;
    padding-top: 1.8rem;
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
}

.mi-dot-inner {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    flex-shrink: 0;
    margin-top: 0.18rem;
    transition: background 0.2s, border-color 0.2s;
}

.milestone-item:hover .mi-dot-inner {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.6);
}

.mi-content {
    padding: 1.6rem 0 2.4rem;
    opacity: 0;
    transform: translateY(10px);
    animation: msiFadeUp 0.45s forwards;
    animation-delay: var(--delay, 0s);
    min-width: 0;
    overflow: hidden;
}

.mi-stat-col {
    grid-column: 1;
    grid-row: 1;
    padding: 1.6rem 0 2.4rem;
    opacity: 0;
    transform: translateY(10px);
    animation: msiFadeUp 0.45s forwards;
    animation-delay: var(--delay, 0s);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: right;
    gap: 0.25rem;
}

.mi-stat-value {
    font-size: 1.55rem;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: -0.03em;
    line-height: 1;
}

@keyframes msiFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mi-text {
    grid-column: 3;
    grid-row: 1;
    text-align: left;
}

.mi-year {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 0.35rem;
}

.mi-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f0f0f0;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 0.45rem;
    word-break: break-word;
}

.mi-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.7;
    font-weight: 300;
    word-break: break-word;
    overflow-wrap: break-word;
}

.about-divider {
    max-width: 680px;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.about-us {
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
}

.about-us-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.about-us-text {
    font-size: 0.96rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    max-width: 520px;
}

.discord {
    color: rgba(100, 150, 255, 0.8);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.discord:hover {
    color: rgba(100, 150, 255, 1);
}

.discord:active {
    color: rgba(100, 150, 255, 0.6);
}

.discord:focus {
    outline: 2px solid rgba(100, 150, 255, 0.8);
    outline-offset: 2px;
}

.discord:focus:not(:focus-visible) {
    outline: none;
}

.ab-socials {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    margin-top: 0.75rem;
}

.ab-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 99px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

.ab-social:hover {
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.95);
}

.ab-social.social-discord:hover {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.ab-social.social-youtube:hover {
    background: rgba(255, 0, 0, 0.12);
    color: #FF0000;
}

.ab-social.social-roblox:hover {
    background: rgba(55, 100, 255, 0.4);
    color: #ffffff;
}

.ab-social.social-discord.tapped {
    background: rgba(88, 101, 242, 0.15);
    color: #5865F2;
}

.ab-social.social-youtube.tapped {
    background: rgba(255, 0, 0, 0.12);
    color: #FF0000;
}

.ab-social.social-roblox.tapped {
    background: rgba(55, 100, 255, 0.4);
    color: #ffffff;
}

.ab-social svg {
    display: block;
    flex-shrink: 0;
}

.ab-social-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #f0f0f0;
    color: #080808;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.ab-social:hover .ab-social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 600px) {
    .ab-tagline-text {
        font-size: 1.2rem;
    }

    .milestone-line {
        left: 8px;
        transform: none;
    }

    .milestone-item {
        grid-template-columns: 16px 1fr;
    }

    .mi-dot {
        grid-column: 1;
        grid-row: 1;
    }

    .mi-text {
        grid-column: 2;
        grid-row: 1;
        text-align: left;
    }

    .mi-stat-col {
        display: none;
    }
}