* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 1200px;
    height: 628px;
    overflow: hidden;
    font-family: 'IBM Plex Sans', sans-serif;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000000; /*Main Color: #002F6C*/
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 163, 224, 0.1) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 9;
    pointer-events: all;
}

.bg-shape-green {
    position: absolute;
    top: -20%;
    right: -8.5%;
    width: 60%;
    height: 120%;
    background: #7AB800;
    transform: rotate(25deg) translateX(100%);
    animation: slideIn 7.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: top right;
    z-index: 2;
}

.bg-shape-blue {
    position: absolute;
    bottom: -20%;
    right: 0;
    width: 52%;
    height: 80%;
    background: #00A3E0;
    transform: rotate(25deg) translateX(100%);
    animation: slideIn 7.45s 2.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform-origin: bottom right;
    z-index: 2;
}

@keyframes slideIn {
    from { transform: rotate(25deg) translateX(100%); opacity: 0; }
    to { transform: rotate(25deg) translateX(0); opacity: 0.9; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shine {
    from { left: -100%; }
    to { left: 100%; }
}

.logo {
    position: absolute;
    top: 50px;
    left: 90px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 9.5s 2.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 10;
}

.logo-img { 
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.program-text {
    position: absolute;
    top: 50px;
    right: 85px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 9.5s 2.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    z-index: 10;
}

.main-text {
    position: absolute;
    text-align: center;
    left: 200px;
    top: 48.5%;
    transform: translateY(-50%);
    max-width: 850px;
    z-index: 10;
}

.main-text h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 95px;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    letter-spacing: -2px;
    margin: 0;
}

.text-line {
    display: block;
    position: relative;
    opacity: 0;
}

.text-line:nth-child(1) { animation: fadeInSlide 10.25s 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
.text-line:nth-child(2) { animation: fadeInSlide 10.25s 3.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }

.text-line::after {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0), transparent);
    animation: shine 10.5s 3s ease-in-out;
}

.hashtag {
    position: absolute;
    bottom: 60px;
    right: 247px;  /*Original: 377px*/
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: white;
    opacity: 0;
    animation: fadeInUp 10.75s 3.95s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, ease-in-out infinite;
    z-index: 10;
}