/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.4;
    color: #333;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.banner-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background with blur effect */
.banner-container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('dream-with-tiger-king.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.banner-container::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
    opacity: 0.7;
    z-index: -1;
}

/* Blur overlay for sides */
.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(30, 60, 114, 0.9) 0%,
        rgba(30, 60, 114, 0.3) 20%,
        rgba(30, 60, 114, 0.1) 40%,
        rgba(30, 60, 114, 0.1) 60%,
        rgba(30, 60, 114, 0.3) 80%,
        rgba(30, 60, 114, 0.9) 100%
    );
    backdrop-filter: blur(8px);
    z-index: -1;
    pointer-events: none;
}

/* Main Image Container */
.main-image-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding: 20px;
}

/* Image Link */
.image-link {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.image-link:hover {
    transform: scale(1.02);
}

.main-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
    z-index: 15;
    object-fit: contain;
}

.main-image:hover {
    transform: scale(1.02);
}

/* Floating background elements */
.floating-coin {
    position: fixed;
    color: #FFD700;
    font-size: 24px;
    z-index: 0;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.floating-coin.blurred {
    filter: blur(3px);
    opacity: 0.6;
}

.floating-coin.sharp {
    filter: blur(0px);
    opacity: 1;
}

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

/* Sparkle effects */
.sparkle {
    position: fixed;
    color: white;
    font-size: 16px;
    z-index: 0;
    pointer-events: none;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle.blurred {
    filter: blur(2px);
    opacity: 0.4;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .main-image-container {
        padding: 10px;
        min-height: 100vh;
    }
}

@media (max-width: 600px) {
    .main-image {
        width: 100vw;
        height: 100vh;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        filter: none;
        max-width: 100vw;
        max-height: 100vh;
    }
    
    .image-link {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image-container {
        padding: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
    }
    
    .banner-container {
        padding: 0;
        margin: 0;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .main-image {
        width: 100vw;
        height: 100vh;
        object-fit: contain;
        border-radius: 0;
        box-shadow: none;
        filter: none;
        max-width: 100vw;
        max-height: 100vh;
    }
    
    .image-link {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .main-image-container {
        padding: 0;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
    }
    
    .banner-container {
        padding: 0;
        margin: 0;
    }
    
    body {
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
}