/* Custom Styles & Utilities */
body {
    overflow-x: hidden;
    background-color: #FAFAFA;
}

.gradient-bg {
    background: linear-gradient(135deg, #FD397F 0%, #8A2387 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #FD397F 0%, #8A2387 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* CSS-only Phone Mockup - Clean (No Frame) */
.mockup-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    border-radius: 30px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.mockup-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* Slider Specific Mockup - Clean (No Frame) */
.mockup-container-lg {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    border-radius: 25px;
    box-shadow: 0 15px 30px -10px rgba(0,0,0,0.15);
    overflow: hidden;
}

.mockup-container-lg img {
    display: block;
    width: 100%;
    height: auto;
}

/* Marquee Animation */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 7s ease-in-out 1s infinite; }

/* Bento Grid Specifics */
.bento-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
}

/* Scrollbar Hide */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Tab Transitions */
.app-screen {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 0;
    background: #F8F9FE;
}
.app-screen.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 10;
}

.blob {
    position: absolute;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: pulse 10s infinite alternate;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.7; }
}

/* Custom Toggle Switch */
.toggle-checkbox:checked {
    right: 0;
    border-color: #FD397F;
}
.toggle-checkbox:checked + .toggle-label {
    background-color: #FD397F;
}