.title-text {
    font-size: 3.5rem;
    margin: 20px 0;
    color: var(--primary-color)
}

.title-subtext {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

.title-image {
    height: 100%;
    border-radius: 10px;
    display: block;
}

.title-container {
    width: 100%;
    height: 600px;
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    background-color: #f9f9ff;
}

.game-feature {
    background: #f0f0ff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.game-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.story-section {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f0ff 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
}

.story-subsection {
    margin-bottom: 25px;
}

.story-subsection h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.character-img {
    float: right;
    width: 200px;
    margin: 0 0 20px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cube-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.cube-item {
    text-align: center;
    margin: 15px;
    transition: all 0.3s ease;
}

.cube-item:hover {
    transform: scale(1.05);
}

.cube-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 5px;
}

.cube-item p {
    font-weight: 600;
    color: var(--dark-color);
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.fun-fact {
    background: var(--gradient-2);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.fun-fact::before {
    content: "Fun Fact!";
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    color: var(--secondary-color);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}