* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    background: #ffffff;
}

/* Top Contact Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #9a2454 0%, #d63384 100%);
    padding: 12px 0;
    z-index: 200;
    box-shadow: 0 2px 10px rgba(154, 36, 84, 0.15);
}

.topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.topbar-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.topbar-item:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.topbar-item:hover svg {
    opacity: 1;
}

@media (max-width: 768px) {
    .topbar {
        padding: 10px 0;
    }
    
    .topbar-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .topbar-item {
        font-size: 13px;
    }
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 48px;
}

/* Onboarding Overlay */
.onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.onboarding-overlay.hidden {
    animation: fadeOut 0.5s ease forwards;
    pointer-events: none;
}

.onboarding-content {
    text-align: center;
    color: white;
    max-width: 500px;
    padding: 40px;
    animation: slideUp 0.6s ease;
}

.onboarding-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #9a2454 0%, #d63384 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onboarding-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.onboarding-instructions {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.instruction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: bounceIn 0.8s ease;
}

.instruction-item:nth-child(1) { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.instruction-item:nth-child(2) { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.instruction-item:nth-child(3) { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.icon-box:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.instruction-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.onboarding-button {
    background: linear-gradient(135deg, #9a2454 0%, #d63384 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(154, 36, 84, 0.4);
    animation: buttonColorShift 3s ease-in-out infinite;
}

@keyframes buttonColorShift {
    0%, 100% {
        background: linear-gradient(135deg, #5a1434 0%, #9a2454 100%);
        box-shadow: 0 10px 30px rgba(90, 20, 52, 0.4);
    }
    50% {
        background: linear-gradient(135deg, #9a2454 0%, #d63384 100%);
        box-shadow: 0 10px 30px rgba(154, 36, 84, 0.6);
    }
}

.onboarding-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(154, 36, 84, 0.6);
    animation: none;
    background: linear-gradient(135deg, #b02a60 0%, #e64d96 100%);
}

.onboarding-button:active {
    transform: translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@media (max-width: 768px) {
    .onboarding-content {
        padding: 30px 20px;
    }
    
    .onboarding-title {
        font-size: 2rem;
    }
    
    .onboarding-text {
        font-size: 1rem;
    }
    
    .onboarding-instructions {
        gap: 20px;
    }
    
    .icon-box {
        width: 60px;
        height: 60px;
    }
    
    .onboarding-button {
        padding: 12px 40px;
        font-size: 1rem;
    }
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 48px;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider:active {
    cursor: grabbing;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.2));
}



/* Navigation Dots */
.navigation {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

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

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 10px;
}

/* Navigation Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    opacity: 0.6;
}

.arrow svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.arrow svg path {
    stroke: #9a2454;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
}

.arrow:hover svg path {
    stroke: #d63384;
    stroke-width: 3;
}

.arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left {
    left: 40px;
}

.arrow-right {
    right: 40px;
}

/* Swipe Indicator */
.swipe-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 14px;
    opacity: 0.7;
    z-index: 100;
    animation: bounce 2s infinite;
}

.swipe-indicator.hidden {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding-top: 80px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-overlay {
        padding: 40px 20px;
    }
    
    .arrow {
        width: 40px;
        height: 40px;
    }
    
    .arrow svg {
        width: 28px;
        height: 28px;
    }
    
    .arrow-left {
        left: 20px;
    }
    
    .arrow-right {
        right: 20px;
    }
    
    .navigation {
        top: 20px;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease;
}

/* Custom Scrollbar (for any overflow) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}
