* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slider-wrapper {
    max-width: 900px;
    width: 100%;
    background: lightgrey;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Heading Styles */
.slider-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.heading-icon {
    font-size: 2rem;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Credit line */
.credit-section {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 2px dashed #e0e0e0;
    text-align: center;
}

.made-by {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.5px;
}

.name {
    font-weight: 700;
    color: #667eea;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.name::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Hover effect on slider */
.slider-container:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: box-shadow 0.3s ease;
}

/* Responsive design */
@media (max-width: 600px) {
    .slider-heading {
        font-size: 1.5rem;
        gap: 8px;
    }
    
    .heading-icon {
        font-size: 1.3rem;
    }
    
    .slider-wrapper {
        padding: 20px;
    }
    
    .made-by {
        font-size: 0.9rem;
    }
}