.treasure-categories {
    display: grid;
    grid-template-columns: repeat(2, minmax(360px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.treasure-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.treasure-box:hover {
    box-shadow: 0 15px 35px rgba(142, 68, 173, 0.15);
    border-color: #f0e6fa;
}

.treasure-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.treasure-emoji {
    font-size: 2.5rem;
    margin-right: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.treasure-box h3 {
    color: #8e44ad;
    margin: 0;
    font-size: 1.8rem;
}

.treasure-items {
    list-style: none;
    padding: 0;
}

.treasure-item {
    margin-bottom: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.treasure-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.treasure-link {
    display: block;
    color: #8e44ad;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.2s ease;
}

.treasure-link:hover {
    color: #a569bd;
    text-decoration: underline;
}

.treasure-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.signup-box {
    background: linear-gradient(135deg, #8e44ad 0%, #a569bd 100%); color: white;
}

.signup-box h3 {
    color: white;
}

.signup-box p { opacity: 0.9;}

.signup-box p b { color: yellow;}

.signup-button-div {
    text-align: center; margin-top: 25px;
}

.signup-button {
    background: white; 
    color: #8e44ad; 
    padding: 15px 25px; 
    border-radius: 25px; 
    text-decoration: none; 
    font-weight: bold; 
    display: inline-block; 
    transition: all 0.3s ease; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.signup-button:hover {
    background: #f0e6fa; 
    color: #6c3483; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transform: translateY(-3px);
}

.coming-soon {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
}

.coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}