/* Motivational Shayari Section - Premium Design */
.shayari-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 25px;
    margin: 50px auto;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    border: 1px solid rgba(255,255,255,0.1);
}

.shayari-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.section-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    margin-bottom: 25px;
}

.refresh-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.refresh-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,107,107,0.6);
}

.refresh-icon {
    font-size: 1.2rem;
}

.shayari-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 30px 20px;
    scrollbar-width: none;
    min-height: 350px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.shayari-container::-webkit-scrollbar {
    display: none;
}

.shayari-card {
    flex: 0 0 auto;
    width: 360px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255,255,255,0.3);
}

.shayari-card.active {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    border: 2px solid #ff0080;
    background: white;
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff0080, #7928ca);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255,0,128,0.4);
}

.shayari-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 25px;
    font-style: italic;
    text-align: center;
    font-weight: 500;
}

.shayari-signature {
    text-align: center;
    font-weight: bold;
    color: #7928ca;
    font-size: 1rem;
    margin-bottom: 20px;
}

.shayari-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.shayari-action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff0080, #7928ca);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255,0,128,0.4);
}

.shayari-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,0,128,0.6);
}

.shayari-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.nav-arrow {
    background: linear-gradient(135deg, #ff0080, #7928ca);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255,0,128,0.4);
}

.shayari-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.shayari-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.shayari-counter {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff0080, #7928ca);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .shayari-section {
        padding: 50px 15px;
        margin: 30px 0;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .shayari-card {
        width: 300px;
        padding: 25px;
    }
    
    .shayari-text {
        font-size: 1.1rem;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .shayari-actions {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .shayari-section {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .shayari-card {
        width: 260px;
        padding: 20px;
    }
}