/* ===== ADDITIONAL STYLES FOR NEW SECTIONS ===== */

/* ===== ANCIENT MYSTERIES SECTION ===== */
.ancient-mysteries {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A237E 0%, #311B92 100%);
    position: relative;
    overflow: hidden;
}

.ancient-mysteries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mystery-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23mystery-pattern)"/></svg>');
    opacity: 0.3;
}

.ancient-mysteries .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ancient-mysteries .content-left {
    padding-right: 40px;
}

.ancient-mysteries .section-title {
    color: #FFD54F;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.ancient-mysteries .section-subtitle {
    font-size: 20px;
    color: #E1F5FE;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mysteries-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mystery-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mystery-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 213, 79, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mystery-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    border-radius: 50%;
    color: #311B92;
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.3);
}

.mystery-content h3 {
    color: #FFD54F;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mystery-content p {
    color: #E1F5FE;
    font-size: 16px;
    line-height: 1.6;
}

.ancient-mysteries .btn-secondary {
    background: rgba(255, 213, 79, 0.1);
    border-color: #FFD54F;
    color: #FFD54F;
    font-size: 18px;
    padding: 18px 35px;
}

.ancient-mysteries .btn-secondary:hover {
    background: rgba(255, 213, 79, 0.2);
    transform: scale(1.05);
}

.ancient-mysteries .content-right {
    position: relative;
}

.mystery-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mystery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mystery-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 213, 79, 0.1), transparent);
    pointer-events: none;
}

.floating-symbols {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-symbols .symbol {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.8;
}

.floating-symbols .symbol:nth-child(2) {
    animation-delay: 1s;
}

.floating-symbols .symbol:nth-child(3) {
    animation-delay: 2s;
}

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

/* ===== DIVINE REWARDS SECTION ===== */
.divine-rewards {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
    position: relative;
    overflow: hidden;
}

.divine-rewards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="rewards-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,0 15.4,9.5 25,9.5 17.5,15.4 20.4,25 12.5,19.1 4.6,25 7.5,15.4 0,9.5 9.6,9.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23rewards-pattern)"/></svg>');
    opacity: 0.2;
}

.divine-rewards .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.divine-rewards .content-left {
    order: 1;
}

.divine-rewards .content-right {
    order: 2;
    padding-left: 40px;
}

.divine-rewards .section-title {
    color: #311B92;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.divine-rewards .section-subtitle {
    font-size: 20px;
    color: #311B92;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.rewards-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.reward-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reward-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    color: #311B92;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    color: #311B92;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: #311B92;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.divine-rewards .btn-primary {
    background: linear-gradient(135deg, #311B92 0%, #1A237E 100%);
    color: #FFFFFF;
    font-size: 18px;
    padding: 18px 35px;
    box-shadow: 0 8px 25px rgba(49, 27, 146, 0.4);
}

.divine-rewards .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(49, 27, 146, 0.6);
}

.rewards-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.rewards-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.rewards-image:hover img {
    transform: scale(1.05);
}

.floating-rewards {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-rewards .reward {
    font-size: 2rem;
    animation: float-rewards 3s ease-in-out infinite;
    opacity: 0.9;
}

.floating-rewards .reward:nth-child(2) {
    animation-delay: 1s;
}

.floating-rewards .reward:nth-child(3) {
    animation-delay: 2s;
}

@keyframes float-rewards {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .ancient-mysteries,
    .divine-rewards {
        padding: 60px 0;
    }
    
    .ancient-mysteries .section-content,
    .divine-rewards .section-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ancient-mysteries .content-left {
        padding-right: 0;
        order: 1;
    }
    
    .ancient-mysteries .content-right {
        order: 2;
    }
    
    .divine-rewards .content-left {
        order: 2;
    }
    
    .divine-rewards .content-right {
        order: 1;
        padding-left: 0;
    }
    
    .mystery-item,
    .reward-feature {
        padding: 20px;
        gap: 15px;
    }
    
    .mystery-icon,
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mystery-content h3,
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .mystery-content p,
    .feature-content p {
        font-size: 14px;
    }
    
    .ancient-mysteries .btn-secondary,
    .divine-rewards .btn-primary {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .floating-symbols,
    .floating-rewards {
        top: 15px;
        right: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .floating-symbols .symbol,
    .floating-rewards .reward {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ancient-mysteries,
    .divine-rewards {
        padding: 40px 0;
    }
    
    .ancient-mysteries .section-title,
    .divine-rewards .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .ancient-mysteries .section-subtitle,
    .divine-rewards .section-subtitle {
        font-size: 16px;
    }
    
    .mysteries-list,
    .rewards-features {
        gap: 20px;
    }
    
    .mystery-item,
    .reward-feature {
        padding: 15px;
        gap: 12px;
    }
    
    .mystery-icon,
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .mystery-content h3,
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .mystery-content p,
    .feature-content p {
        font-size: 13px;
    }
}
