body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #000;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#white-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s linear;
}

#scroll-down-button {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    cursor: pointer;
    opacity: 1;
    pointer-events: none;
    display: none;
}

#scroll-down-button.show {
    display: block;
    animation: blink 3s ease-in-out infinite;
    pointer-events: auto;
    filter: drop-shadow(0 0 15px rgba(232, 48, 140, 0.6));
    transition: filter 0.3s ease, transform 0.3s ease;
}

#scroll-down-button:hover {
    animation: none;
    opacity: 1;
    filter:
        drop-shadow(0 0 30px rgba(232, 48, 140, 0.9))
        drop-shadow(0 0 15px rgba(232, 48, 140, 1))
        drop-shadow(0 4px 20px rgba(232, 48, 140, 0.5));
    transform: translateX(-50%) translateY(-2px);
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

#final-content {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #111;
    padding: 2rem;
    background-color: #fff;
}

#final-title-wrapper, #final-content-body {
    opacity: 0;
    transition: opacity 0.8s ease;
}

#final-title-wrapper.show, #final-content-body.show {
    opacity: 1;
}

.title {
    font-size: 200px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(232, 48, 140, 0.8);
    opacity: 0;
    transform: scale(0.9);
    animation: expandIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.5s;
    mix-blend-mode: screen;
}

.subtitle {
    font-size: 45px;
    max-width: 1200px;
    line-height: 1.8;
    color: #fff;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.5s;
    text-shadow: 0 0 10px rgba(232, 48, 140, 0.5);
    white-space: nowrap;
}

.final-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: #0f172a;
}

.final-text {
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 2;
    color: #334155;
    margin-bottom: 3rem;
}

#logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    pointer-events: auto;
}

#logo-container img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

#logo-container:hover img {
    transform: scale(1.1);
}

.scroll-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(232, 48, 140, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 3s infinite;
    z-index: 15;
    pointer-events: none;
    transition: opacity 0.3s;
}

@keyframes expandIn { to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.8; } }

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }

@media (max-width: 991px) {
    .title { font-size: 140px; }
    .subtitle { font-size: 30px; }
}

/* Achievements Section */
.achievements-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.achievement-item {
    background: transparent;
    border: 2px solid rgba(232, 48, 140, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 22, 199, 0.15) 0%, rgba(232, 48, 140, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item:hover {
    border-color: rgba(232, 48, 140, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 48, 140, 0.3);
}

.achievement-number {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e8308c 0%, #6c16c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    line-height: 1;
    flex-shrink: 0;
    width: 200px;
    text-align: center;
}

.achievement-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 1;
    padding-right: 20px;
}

.achievement-label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.achievement-detail {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .achievements-grid {
        gap: 30px;
    }

    .achievement-item {
        gap: 30px;
    }

    .achievement-number {
        font-size: 3.5rem;
        width: 160px;
    }

    .achievement-label {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .title { font-size: 100px; }
    .subtitle { font-size: 22px; white-space: normal; }
    .final-title { font-size: 2rem; }

    .achievement-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px;
    }

    .achievement-number {
        font-size: 3rem;
        width: auto;
        text-align: left;
    }

    .achievement-content {
        padding-right: 0;
    }

    .achievement-label {
        font-size: 1.1rem;
    }

    .achievement-detail {
        font-size: 0.9rem;
    }
}
