/* Modern Design with Fresh Colors and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
}

/* Main Question Styling */
.paz-question {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* No Text Styling */
.no-container {
    position: relative;
    margin: 1rem 0;
    display: inline-block;
}

.no-text {
    font-size: 8rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 8px 32px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    position: relative;
    z-index: 2;
}

.no-text:hover {
    transform: scale(1.1) rotate(-2deg);
    color: #f8f9fa;
    text-shadow: 0 12px 40px rgba(255, 255, 255, 0.6);
}

.no-text.clicked {
    animation: bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    80% { transform: translateY(-15px); }
}

/* Particles Animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 50%;
    animation: particleFloat 2s ease-out forwards;
    opacity: 0;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

/* Photo Section - Modern Card Design */
.photo-section {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.photo-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.friends-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.friends-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.photo-caption {
    margin-top: 1.5rem;
    text-align: center;
}

.photo-caption h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.photo-caption p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.6;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .paz-question {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .no-text {
        font-size: 5rem;
    }
    
    .photo-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .friends-photo {
        height: 300px;
    }
    
    .photo-caption h3 {
        font-size: 1.5rem;
    }
    
    .photo-caption p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .paz-question {
        font-size: 2rem;
    }
    
    .no-text {
        font-size: 4rem;
    }
    
    .friends-photo {
        height: 250px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.container > *:nth-child(2) {
    animation-delay: 0.2s;
}

.container > *:nth-child(3) {
    animation-delay: 0.4s;
} 