.welcome-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-direction: column;
    gap: 20px;
}

.welcome-emoji-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.welcome-emoji-large {
    width: 160px;
    height: 160px;
}

.welcome-emoji-main {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-emoji-main.loaded {
    opacity: 1;
}

.emoji-text {
    align-items: center;
    justify-content: center;
    font-size: 120px;
    line-height: 1;
    display: none;
}

.primogem-emoji-left,
.primogem-emoji-right {
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 1;
    display: none;
}

.floating-primogem {
    width: 80px;
    height: 80px;
    position: absolute;
    animation: bob-float 4s ease-in-out infinite;
}

.primogem-left {
    left: calc(50% - 200px);
    animation-delay: -1s;
}

.primogem-right {
    right: calc(50% - 200px);
    animation-delay: -2s;
}

.welcome-emoji {
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {
    .welcome-banner {
        margin-bottom: 20px;
    }
    
    .welcome-emoji-container {
        margin-bottom: 0;
    }
    
    .welcome-emoji-large {
        width: 130px;
        height: 130px;
    }
    
    .emoji-text.welcome-emoji-large {
        font-size: 90px;
    }
    
    .primogem-emoji-left,
    .primogem-emoji-right {
        font-size: 45px;
    }
    
    .floating-primogem {
        width: 75px;
        height: 75px;
    }
    
    .primogem-left {
        left: calc(50% - 160px);
    }
    
    .primogem-right {
        right: calc(50% - 160px);
    }
    
    .welcome-emoji {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 480px) {
    .welcome-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .welcome-emoji-container {
        margin-bottom: 0;
    }
    
    .welcome-emoji-large {
        width: 125px;
        height: 125px;
    }
    
    .emoji-text.welcome-emoji-large {
        font-size: 70px;
    }
    
    .primogem-emoji-left,
    .primogem-emoji-right {
        font-size: 35px;
    }
    
    .floating-primogem {
        width: 60px;
        height: 60px;
    }
    
    .primogem-left {
        left: calc(50% - 130px);
    }
    
    .primogem-right {
        right: calc(50% - 130px);
    }
    
    .welcome-banner h1 {
        margin: 0;
    }
}

.content-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.content-box-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    transition: transform 0.2s ease;
    margin: 0;
}

.content-box-link:hover {
    transform: translateY(-5px);
}

.content-box {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 0;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border: 2px solid #93c47d;
    border-radius: 10px;
    transition: background-color 0.3s, box-shadow 0.2s ease;
}

.content-box-link:hover .content-box {
    background: linear-gradient(to bottom, #e8f5e9, #d4e6d4);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

.content-box-image {
    width: 80px;
    height: 80px;
    margin-right: 25px;
    animation: bob-float 4s ease-in-out infinite;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.content-box-text {
    flex-grow: 1;
}

.content-box-text h3 {
    margin: 0 0 8px 0;
    color: #2d5016;
    font-size: 20px;
    border-bottom: 2px solid #b6d7a8;
    padding-bottom: 5px;
}

.content-box-text p {
    margin: 0;
}

.info-arrow {
    font-size: 24px;
    color: #93c47d;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.2s;
    margin-left: 20px;
}

.content-box-link:hover .info-arrow {
    opacity: 1;
    transform: translateX(0);
}

@keyframes bob-float {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
	100% { transform: translateY(0px); }
}
