
/* Main CSS for Instagram Reels Clone */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.main-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #000, #1a1a1a);
}

.video-container {
    width: 375px;
    height: 100vh;
    position: relative;
    background: #000;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plus-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24) !important;
    border: 2px solid #fff !important;
    animation: pulse 2s infinite;
}

.plus-btn:hover {
    transform: scale(1.2) !important;
    background: linear-gradient(45deg, #ee5a24, #ff6b6b) !important;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 107, 0); }
}

.custom-image-display {
    animation: fadeInOut 0.5s ease-in-out;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@media (max-width: 480px) {
    .video-container {
        width: 100vw;
        height: 100vh;
    }
}
        