@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    background: linear-gradient(90deg, #EF4444, #DC2626);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.shadow-primary {
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3), 0 4px 6px -2px rgba(239, 68, 68, 0.1);
}

/* Animation classes */
.animate-fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Video call styles */
.video-call {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-container {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.remote-video {
    width: 100%;
    border-radius: 8px;
}

.local-video {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 25%;
    border-radius: 8px;
    border: 2px solid white;
}

.call-controls {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.call-btn:hover {
    transform: scale(1.1);
}

.end-call {
    background: #ef4444;
    color: white;
}

.mute-call {
    background: #4b5563;
    color: white;
}

/* Story viewer styles */
.story-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.story-video {
    max-width: 100%;
    max-height: 80vh;
}

.story-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.story-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px;
    border-radius: 2px;
}

.story-progress-bar {
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 2px;
    transition: width 0.1s linear;
}
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.03);
}