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

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css");

/* Instagram Reels Viewer Wrapper Styles */
        .ig-rv-wrapper {
            --ig-rv-gradient-1: #f09433;
            --ig-rv-gradient-2: #e6683c;
            --ig-rv-gradient-3: #dc2743;
            --ig-rv-gradient-4: #cc2366;
            --ig-rv-gradient-5: #bc1888;
            --ig-rv-dark-color: #262626;
            --ig-rv-light-color: #FFFFFF;
            --ig-rv-gray-color: #FAFAFA;
            --ig-rv-instagram-gradient: linear-gradient(45deg, var(--ig-rv-gradient-1), var(--ig-rv-gradient-2), var(--ig-rv-gradient-3), var(--ig-rv-gradient-4), var(--ig-rv-gradient-5));
            --ig-rv-instagram-gradient-hover: linear-gradient(45deg, #e08b30, #d85f35, #d1253e, #c32060, #b31682);
            --ig-rv-section-padding: 100px 0;
        }

        /* Header Custom style */
        .ig-rv-wrapper .navigation-1 {
            background: #ffffff;
            transition: all 0.3s ease;
            font-family: "Poppins", sans-serif;
        }

        .ig-rv-wrapper .navbar {
            padding: 1.5rem 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            min-height: 80px;
        }

        .ig-rv-wrapper .navbar-brand img {
            max-height: 60px;
            width: auto;
            transition: transform 0.3s ease;
        }

        .ig-rv-wrapper .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .ig-rv-wrapper .nav-link {
            color: #1f2a44 !important;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 0.75rem 1.25rem !important;
            position: relative;
            transition: color 0.3s ease;
        }

        .ig-rv-wrapper .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: #d62976;
            transition: width 0.3s ease;
        }

        .ig-rv-wrapper .nav-link:hover::after {
            width: 100%;
        }

        .ig-rv-wrapper .nav-link:hover {
            color: #d62976 !important;
        }

        .ig-rv-wrapper .cta-btn {
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
            color: white !important;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            white-space: nowrap;
        }

        .ig-rv-wrapper .cta-btn:hover {
            background: linear-gradient(45deg, #962fbf, #d62976, #fa7e1e, #feda75, #4f5bd5);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            transform: translateY(-3px);
        }

        .ig-rv-wrapper .navbar-toggler {
            border: none;
            padding: 0.75rem;
            background-color: rgba(214, 41, 118, 0.1);
            border-radius: 5px;
        }

        /* Instagram-style Hero Section */
        .ig-rv-wrapper .ig-rv-hero-section {
            padding: var(--ig-rv-section-padding);
            text-align: center;
            background-color: var(--ig-rv-light-color);
					
				
        }

        .ig-rv-wrapper .ig-rv-hero-content {
            position: relative;
            z-index: 1;
        }

        .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--ig-rv-instagram-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-text {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
            font-weight: 300;
            color: #666;
        }

        /* Work Process Section with Gradient */
        .ig-rv-wrapper .ig-rv-work-process-section {
            padding: var(--ig-rv-section-padding);
            background: var(--ig-rv-instagram-gradient);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .ig-rv-wrapper .ig-rv-work-process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.05);
        }

        .ig-rv-wrapper .ig-rv-work-process-content {
            position: relative;
            z-index: 1;
        }

        .ig-rv-wrapper .ig-rv-process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            margin: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper .ig-rv-process-step:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .ig-rv-wrapper .ig-rv-step-number {
            width: 60px;
            height: 60px;
            background: white;
            color: var(--ig-rv-gradient-3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Features Section */
        .ig-rv-wrapper .ig-rv-features-section {
            padding: var(--ig-rv-section-padding);
            background: white;
        }

        .ig-rv-wrapper .ig-rv-feature-card {
            padding: 40px 30px;
            border-radius: 16px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .ig-rv-wrapper .ig-rv-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--ig-rv-instagram-gradient);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper .ig-rv-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .ig-rv-wrapper .ig-rv-feature-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .ig-rv-wrapper .ig-rv-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            background: var(--ig-rv-instagram-gradient);
            color: white;
            font-size: 1.8rem;
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper .ig-rv-feature-card:hover .ig-rv-feature-icon {
            transform: rotate(15deg) scale(1.1);
            background: var(--ig-rv-instagram-gradient-hover);
        }

        /* Why Choose Section */
        .ig-rv-wrapper .ig-rv-why-choose-section {
            padding: var(--ig-rv-section-padding);
            background: #f9f9f9;
        }

        .ig-rv-wrapper .ig-rv-why-choose-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .ig-rv-wrapper .ig-rv-why-choose-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .ig-rv-wrapper .ig-rv-benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper .ig-rv-benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .ig-rv-wrapper .ig-rv-benefit-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            background: var(--ig-rv-instagram-gradient);
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        /* FAQ Section */
        .ig-rv-wrapper .ig-rv-faq-section {
            padding: var(--ig-rv-section-padding);
            background: white;
        }

        .ig-rv-wrapper .ig-rv-accordion-item {
            border: none;
            border-radius: 12px !important;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .ig-rv-wrapper .ig-rv-accordion-button {
            font-weight: 600;
            color: var(--ig-rv-dark-color);
            padding: 20px 25px;
            background: white;
            box-shadow: none;
            border-radius: 12px 12px 0 0 !important;
        }

        .ig-rv-wrapper .ig-rv-accordion-button:not(.collapsed) {
            background: white;
            color: var(--ig-rv-gradient-3);
            box-shadow: none;
        }

        .ig-rv-wrapper .ig-rv-accordion-button:focus {
            box-shadow: none;
            border-color: rgba(220, 39, 67, 0.3);
        }

        .ig-rv-wrapper .ig-rv-accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc2743'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .ig-rv-wrapper .ig-rv-accordion-body {
            padding: 25px;
            color: #666;
        }

        /* Section Titles */
        .ig-rv-wrapper .ig-rv-section-title {
            font-weight: 700;
            color: var(--ig-rv-dark-color);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .ig-rv-wrapper .ig-rv-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--ig-rv-instagram-gradient);
            border-radius: 2px;
        }

        .ig-rv-wrapper .ig-rv-light-title {
            color: white;
        }

        .ig-rv-wrapper .ig-rv-light-title::after {
            background: white;
        }

        .ig-rv-wrapper .ig-rv-section-subtitle {
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.1rem;
        }

        .ig-rv-wrapper .ig-rv-light-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Animation */
        @keyframes ig-rv-float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .ig-rv-wrapper .ig-rv-floating-element {
            animation: ig-rv-float 6s ease-in-out infinite;
        }

        /* Custom Scrollbar */
        .ig-rv-wrapper ::-webkit-scrollbar {
            width: 8px;
        }

        .ig-rv-wrapper ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .ig-rv-wrapper ::-webkit-scrollbar-thumb {
            background: var(--ig-rv-gradient-3);
            border-radius: 10px;
        }

        .ig-rv-wrapper ::-webkit-scrollbar-thumb:hover {
            background: var(--ig-rv-gradient-4);
        }

        /* Footer Section */
        .ig-rv-wrapper .footer-section {
            background: radial-gradient(circle, rgba(16, 33, 120, 1) 0%, rgba(94, 7, 6, 1) 100%);
            color: #fff;
            padding-top: 80px;
            padding-bottom: 80px;
        }

        .ig-rv-wrapper .footer-logo {
            width: 200px;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .ig-rv-wrapper .footer-description {
            font-size: 14px;
            color: #bbb;
        }

        .ig-rv-wrapper .footer-heading {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 15px;
        }

        /* Quick Links and Tools */
        .ig-rv-wrapper .footer-links .footer-link,
        .ig-rv-wrapper .footer-tools .footer-tool {
            color: #bbb;
            text-decoration: none;
            font-size: 14px;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }

        .ig-rv-wrapper .footer-links .footer-link:hover,
        .ig-rv-wrapper .footer-tools .footer-tool:hover {
            color: #fff;
        }

        /* Social Icons (Boxicons) */
        .ig-rv-wrapper .footer-social .social-icon {
            color: #bbb;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .ig-rv-wrapper .footer-social .social-icon:hover {
            color: #fff;
        }

        /* Footer Copyright Section */
        .ig-rv-wrapper .footer-copyright {
            background-color: #1a1a1a;
        }

        .ig-rv-wrapper .footer-bottom-text {
            font-size: 14px;
            color: #bbb;
        }
			
			.ig-rv-wrapper .ig-rv-header {
	position: relative;
	background: hsla(270, 94%, 25%, 1) !important;

background: linear-gradient(90deg, hsla(270, 94%, 25%, 1) 0%, hsla(158, 94%, 49%, 1) 100%) !important;

background: -moz-linear-gradient(90deg, hsla(270, 94%, 25%, 1) 0%, hsla(158, 94%, 49%, 1) 100%) !important;

background: -webkit-linear-gradient(90deg, hsla(270, 94%, 25%, 1) 0%, hsla(158, 94%, 49%, 1) 100%) !important;

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#42047E", endColorstr="#07F49E", GradientType=1 ) !important;
	color: var(--light);
	padding: 80px 0 100px;
	overflow: hidden;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
			
			.ig-rv-wrapper .ig-rv-glass-card {
	background: #e3ffef;
	backdrop-filter: blur(16px);
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	padding: 32px;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-align: center;
	position: relative;
	z-index: 10;
}

        /* Responsive Design */
        @media (max-width: 991px) {
            .ig-rv-wrapper {
                --ig-rv-section-padding: 80px 0;
            }

            .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-title {
                font-size: 2.8rem;
            }

            .ig-rv-wrapper .ig-rv-process-step::before {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .ig-rv-wrapper {
                --ig-rv-section-padding: 70px 0;
            }

            .ig-rv-wrapper .navbar {
                min-height: 70px;
            }

            .ig-rv-wrapper .navbar-collapse {
                background: #ffffff;
                padding: 2rem 1.5rem;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .ig-rv-wrapper .nav-link {
                color: #1f2a44 !important;
                padding: 1.2rem 1.5rem !important;
                font-size: 1.3rem;
                font-weight: 500;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                transition: background 0.3s ease, color 0.3s ease;
            }

            .ig-rv-wrapper .nav-link:hover {
                color: #d62976 !important;
                background: #f8fafc;
            }

            .ig-rv-wrapper .nav-link::after {
                display: none;
            }

            .ig-rv-wrapper .cta-btn {
                display: block;
                text-align: center;
                margin: 2rem auto;
                padding: 14px 30px;
                font-size: 1.2rem;
                width: 100%;
                max-width: 300px;
            }

            .ig-rv-wrapper .navbar-brand img {
                max-height: 50px;
            }

            .ig-rv-wrapper .navbar-nav {
                margin-top: 1rem;
            }

            .ig-rv-wrapper .ig-rv-hero-section {
                padding: 100px 0 60px;
            }

            .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-title {
                font-size: 2.2rem;
            }

            .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-text {
                font-size: 1rem;
            }

            .ig-rv-wrapper .ig-rv-section-title {
                font-size: 1.8rem;
            }

            .ig-rv-wrapper .footer-logo {
                width: 200px;
            }

            .ig-rv-wrapper .footer-description {
                font-size: 14px;
            }

            .ig-rv-wrapper .footer-heading {
                font-size: 18px;
            }

            .ig-rv-wrapper .footer-link,
            .ig-rv-wrapper .footer-tool {
                font-size: 14px;
            }

            .ig-rv-wrapper .footer-bottom-text {
                font-size: 14px;
            }
        }

.ig-rv-wrapper {
            --primary: #ff3d8a;
            --primary-light: #ff72a9;
            --primary-dark: #e01d6b;
            --secondary: #7b5cfa;
            --secondary-light: #a18aff;
            --secondary-dark: #5c3de6;
            --accent: #00d9ff;
            --dark: #151823;
            --light: #ffffff;
            --bg-gradient: linear-gradient(135deg, #7b5cfa, #ff3d8a);
            --bg-gradient-2: linear-gradient(135deg, #00d9ff, #7b5cfa);
            --card-bg: rgba(255, 255, 255, 0.85);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Inter', sans-serif;
            --border-radius: 16px;
            --transition: all 0.3s ease;
        }

        .ig-rv-wrapper * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .ig-rv-wrapper {
            font-family: var(--font-primary);
            color: var(--dark);
            background-color: #f8f9fc;
            line-height: 1.6;
        }

        .ig-rv-wrapper .ig-rv-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .ig-rv-wrapper .ig-rv-header {
            position: relative;
            background: var(--bg-gradient);
            color: var(--light);
            padding: 80px 0 100px;
            overflow: hidden;
            border-bottom-left-radius: 30px;
            border-bottom-right-radius: 30px;
        }

        .ig-rv-wrapper .ig-rv-header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .ig-rv-wrapper .ig-rv-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            gap: 12px;
        }

        .ig-rv-wrapper .ig-rv-logo {
            background: rgba(255, 255, 255, 0.2);
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .ig-rv-wrapper .ig-rv-logo svg {
            color: var(--light);
        }

        .ig-rv-wrapper .ig-rv-hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0;
        }

        .ig-rv-wrapper .ig-rv-header-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
            margin-top: 8px;
        }

        /* Bubble animations */
        .ig-rv-wrapper .ig-rv-bubble {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: ig-rv-float 8s infinite ease-in-out;
        }

        .ig-rv-wrapper .ig-rv-bubble:nth-child(1) {
            width: 120px;
            height: 120px;
            top: -30px;
            left: 10%;
            animation-delay: 0s;
        }

        .ig-rv-wrapper .ig-rv-bubble:nth-child(2) {
            width: 80px;
            height: 80px;
            top: 50%;
            right: 15%;
            animation-delay: 1s;
        }

        .ig-rv-wrapper .ig-rv-bubble:nth-child(3) {
            width: 60px;
            height: 60px;
            bottom: 10%;
            left: 20%;
            animation-delay: 2s;
        }

        .ig-rv-wrapper .ig-rv-bubble:nth-child(4) {
            width: 100px;
            height: 100px;
            bottom: -20px;
            right: 5%;
            animation-delay: 3s;
        }

        @keyframes ig-rv-float {
            0% {
                transform: translateY(0) rotate(0);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }

            100% {
                transform: translateY(0) rotate(0);
            }
        }

        /* Search section */
        .ig-rv-wrapper .ig-rv-search-section {
            margin-top: -50px;
            position: relative;
            z-index: 5;
        }

        .ig-rv-wrapper .ig-rv-glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(16px);
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 32px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .ig-rv-wrapper .ig-rv-glass-card .ig-rv-card-title {
            font-size: 1.8rem;
            margin-bottom: 10px;
            background: var(--bg-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ig-rv-wrapper .ig-rv-search-description {
            margin-bottom: 24px;
            color: rgba(21, 24, 35, 0.7);
        }

        .ig-rv-wrapper .ig-rv-search-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 600px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .ig-rv-wrapper .ig-rv-search-container {
                flex-direction: row;
            }
        }

        .ig-rv-wrapper .ig-rv-search-input-wrapper {
            flex-grow: 1;
            position: relative;
            z-index: 10;
        }

        .ig-rv-wrapper .ig-rv-search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
        }

        .ig-rv-wrapper #ig-rv-search-input {
            width: 100%;
            padding: 16px 16px 16px 50px;
            border-radius: 12px;
            border: 2px solid rgba(123, 92, 250, 0.3);
            font-family: var(--font-secondary);
            font-size: 1rem;
            transition: var(--transition);
            background: white;
            cursor: text;
            position: relative;
            z-index: 10;
        }

        .ig-rv-wrapper #ig-rv-search-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(123, 92, 250, 0.2);
            background: white;
        }

        .ig-rv-wrapper #ig-rv-search-input:hover {
            border-color: var(--secondary-light);
        }

        .ig-rv-wrapper #ig-rv-search-button {
            background: var(--bg-gradient);
            border: none;
            border-radius: 12px;
            color: white;
            padding: 16px 24px;
            font-family: var(--font-primary);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: var(--transition);
            box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
        }

        .ig-rv-wrapper #ig-rv-search-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(255, 61, 138, 0.4);
        }

        /* Results section */
        .ig-rv-wrapper .ig-rv-results-section {
            margin: 40px 0;
            display: none;
        }

        .ig-rv-wrapper .ig-rv-results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            flex-wrap: wrap;
            gap: 16px;
        }

        .ig-rv-wrapper .ig-rv-results-header .ig-rv-results-title {
            font-size: 1.8rem;
            background: var(--bg-gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .ig-rv-wrapper .ig-rv-results-controls {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .ig-rv-wrapper .ig-rv-view-mode {
            display: flex;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            padding: 4px;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .ig-rv-wrapper .ig-rv-view-button {
            padding: 8px 12px;
            border: none;
            background: transparent;
            cursor: pointer;
            border-radius: 8px;
            color: var(--dark);
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-view-button.active {
            background: var(--secondary);
            color: white;
        }

        .ig-rv-wrapper .ig-rv-sort-button {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-family: var(--font-primary);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-sort-button:hover {
            background: rgba(255, 255, 255, 1);
        }

        /* Reels container */
        .ig-rv-wrapper .ig-rv-reels-container {
            display: grid;
            gap: 30px;
            margin-bottom: 40px;
        }

        .ig-rv-wrapper .ig-rv-reels-container.grid {
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        }

        .ig-rv-wrapper .ig-rv-reels-container.list {
            grid-template-columns: 1fr;
        }

        .ig-rv-wrapper .ig-rv-reel-card {
            background: var(--card-bg);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--card-shadow);
            border: 1px solid rgba(255, 255, 255, 0.5);
            display: flex;
            flex-direction: column;
            animation: ig-rv-fadeIn 0.5s ease forwards;
            opacity: 0;
            position: relative;
        }

        @keyframes ig-rv-fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-reel-card {
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 24px;
        }

        @media (max-width: 768px) {
            .ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-reel-card {
                grid-template-columns: 1fr;
            }
        }

        .ig-rv-wrapper .ig-rv-video-container {
            position: relative;
            width: 100%;
            padding-bottom: 177.77%;
            /* 16:9 aspect ratio */
            overflow: hidden;
        }

        .ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-video-container {
            padding-bottom: 100%;
        }

        .ig-rv-wrapper .ig-rv-video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
            cursor: pointer;
        }

        .ig-rv-wrapper .ig-rv-reel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-video:playing+.ig-rv-reel-overlay {
            opacity: 0;
            pointer-events: none;
        }

        .ig-rv-wrapper .ig-rv-play-button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            backdrop-filter: blur(4px);
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-play-button:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .ig-rv-wrapper .ig-rv-reel-details {
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-grow: 1;
        }

        .ig-rv-wrapper .ig-rv-reel-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ig-rv-wrapper .ig-rv-author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
        }

        .ig-rv-wrapper .ig-rv-author-info {
            display: flex;
            align-items: center;
        }

        .ig-rv-wrapper .ig-rv-author-name {
            font-weight: 600;
            margin-right: 4px;
        }

        .ig-rv-wrapper .ig-rv-verified-badge {
            color: var(--secondary);
            font-size: 14px;
        }

        .ig-rv-wrapper .ig-rv-reel-caption {
            font-size: 0.95rem;
            color: rgba(21, 24, 35, 0.8);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: normal;
            max-height: 1.6em;
        }

        .ig-rv-wrapper .ig-rv-reel-stats {
            display: flex;
            gap: 20px;
            color: rgba(21, 24, 35, 0.7);
            font-size: 0.9rem;
        }

        .ig-rv-wrapper .ig-rv-stat {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .ig-rv-wrapper .ig-rv-reel-actions {
            display: flex;
            gap: 12px;
            padding: 0 20px 20px;
        }

        .ig-rv-wrapper .ig-rv-action-button {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px;
            border-radius: 10px;
            border: none;
            font-family: var(--font-primary);
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 0.9rem;
        }

        .ig-rv-wrapper .ig-rv-download {
            background: var(--bg-gradient);
            color: white;
        }

        .ig-rv-wrapper .ig-rv-share {
            background: rgba(0, 0, 0, 0.05);
            color: var(--dark);
        }

        .ig-rv-wrapper .ig-rv-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
        }

        .ig-rv-wrapper .ig-rv-download:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .ig-rv-wrapper .ig-rv-download:disabled:hover {
            transform: none;
            box-shadow: 0 4px 12px rgba(255, 61, 138, 0.3);
        }

        .ig-rv-wrapper .ig-rv-download-spinner {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-top: 2px solid white;
            border-radius: 50%;
            animation: ig-rv-spin 1s linear infinite;
            margin-right: 8px;
            display: inline-block;
            vertical-align: middle;
        }

        .ig-rv-wrapper .ig-rv-action-button.ig-rv-download:disabled {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .ig-rv-wrapper .ig-rv-share:hover {
            background: rgba(0, 0, 0, 0.1);
        }

        .ig-rv-wrapper .ig-rv-reel-time {
            position: absolute;
            top: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 0.75rem;
            padding: 4px 8px;
            border-radius: 6px;
        }

        /* Pagination */
        .ig-rv-wrapper .ig-rv-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin: 40px 0;
        }

        .ig-rv-wrapper .ig-rv-pagination-button {
            background: var(--light);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-family: var(--font-primary);
            font-weight: 500;
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-pagination-button:hover:not(:disabled) {
            background: var(--secondary-light);
            color: white;
            border-color: transparent;
        }

        .ig-rv-wrapper .ig-rv-pagination-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .ig-rv-wrapper .ig-rv-pagination-dots {
            display: flex;
            gap: 6px;
        }

        .ig-rv-wrapper .ig-rv-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .ig-rv-wrapper .ig-rv-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Loading overlay */
        .ig-rv-wrapper .ig-rv-loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
			
			.ig-rv-wrapper .ig-rv-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 0;
	color: white;
}

        .ig-rv-wrapper .ig-rv-loading-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .ig-rv-wrapper .ig-rv-loader-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .ig-rv-wrapper .ig-rv-loader-circle {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(123, 92, 250, 0.3);
            border-top: 4px solid var(--secondary);
            border-radius: 50%;
            animation: ig-rv-spin 1s linear infinite;
        }

        @keyframes ig-rv-spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .ig-rv-wrapper .ig-rv-loader-card {
            width: 300px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 20px;
            overflow: hidden;
        }

        .ig-rv-wrapper .ig-rv-skeleton-card {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .ig-rv-wrapper .ig-rv-skeleton {
            background: linear-gradient(90deg, #f0f0f0, #f8f8f8, #f0f0f0);
            background-size: 200% 100%;
            animation: ig-rv-skeleton-loading 1.5s infinite;
            border-radius: 4px;
        }

        .ig-rv-wrapper .ig-rv-skeleton.video {
            height: 160px;
            border-radius: 8px;
        }

        .ig-rv-wrapper .ig-rv-skeleton.avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .ig-rv-wrapper .ig-rv-skeleton.text-line {
            height: 12px;
            margin-bottom: 8px;
        }

        .ig-rv-wrapper .ig-rv-skeleton.text-line.short {
            width: 60%;
        }

        .ig-rv-wrapper .ig-rv-skeleton-actions {
            display: flex;
            gap: 10px;
        }

        .ig-rv-wrapper .ig-rv-skeleton.button {
            height: 36px;
            flex: 1;
            border-radius: 8px;
        }

        .ig-rv-wrapper .ig-rv-skeleton.button.small {
            flex: 0.5;
        }

        @keyframes ig-rv-skeleton-loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* Error and empty states */
        .ig-rv-wrapper .ig-rv-error-message {
            text-align: center;
            padding: 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            color: rgba(21, 24, 35, 0.7);
        }
			.ig-rv-wrapper .ig-rv-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px;
}
			
			.ig-rv-wrapper .ig-rv-glass-card {
	background: #eff9f3 !important;
	backdrop-filter: blur(16px);
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	padding: 32px;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	text-align: center;
	position: relative;
	z-index: 10;
}

        .ig-rv-wrapper .ig-rv-no-reels {
            text-align: center;
            padding: 60px;
            color: rgba(21, 24, 35, 0.7);
            font-size: 1.1rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .ig-rv-wrapper .ig-rv-header {
                padding: 60px 0 80px;
            }

            .ig-rv-wrapper .ig-rv-hero-title {
                font-size: 2rem;
            }

            .ig-rv-wrapper .ig-rv-glass-card {
                padding: 24px 16px;
            }

            .ig-rv-wrapper .ig-rv-results-header {
                flex-direction: column;
                align-items: flex-start;
            }

            .ig-rv-wrapper .ig-rv-reels-container.grid {
                grid-template-columns: 1fr;
            }

            .ig-rv-wrapper .ig-rv-modal-card {
                padding: 20px 16px;
                margin: 20px;
            }

            .ig-rv-wrapper #ig-rv-modal-video {
                max-width: 100%;
                min-width: 280px;
                min-height: 180px;
            }

            .ig-rv-wrapper .ig-rv-modal-actions {
                flex-direction: column;
                gap: 12px;
            }

            .ig-rv-wrapper #ig-rv-modal-download,
            .ig-rv-wrapper #ig-rv-modal-share {
                width: 100%;
                justify-content: center;
            }
					.ig-rv-wrapper .ig-rv-logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	gap: 12px;
	flex-direction: column;
}
        }

        /* Ensure fullscreen modal is hidden by default */
        .ig-rv-wrapper #ig-rv-fullscreen-modal {
            position: fixed;
            z-index: 1500;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(21, 24, 35, 0.7);
            backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .ig-rv-wrapper #ig-rv-fullscreen-modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        .ig-rv-wrapper .ig-rv-modal-card {
            width: 100%;
            max-width: 500px;
            background: rgba(40, 42, 55, 0.98);
            border-radius: 24px;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            box-sizing: border-box;
            padding: 0;
        }

        .ig-rv-wrapper .ig-rv-modal-video-container {
            width: 100%;
            box-sizing: border-box;
            padding: 24px 24px 0 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ig-rv-wrapper #ig-rv-modal-video {
            width: 100%;
            aspect-ratio: 16/9;
            background: black;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            display: block;
            max-width: 100%;
            height: auto;
        }

        .ig-rv-wrapper #ig-rv-close-modal {
            position: absolute;
            top: 18px;
            right: 18px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 1.7rem;
            cursor: pointer;
            z-index: 10;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper #ig-rv-close-modal:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        .ig-rv-wrapper #ig-rv-modal-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper #ig-rv-modal-play-overlay:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .ig-rv-wrapper #ig-rv-modal-duration {
            position: absolute;
            bottom: 16px;
            left: 16px;
            color: white;
            background: rgba(0, 0, 0, 0.7);
            padding: 6px 12px;
            border-radius: 8px;
            font-size: 0.9rem;
            z-index: 2;
            display: none;
            backdrop-filter: blur(10px);
            font-weight: 500;
        }

        .ig-rv-wrapper .ig-rv-modal-actions {
            margin-top: 28px;
            display: flex;
            gap: 18px;
            justify-content: center;
            width: 100%;
        }

        .ig-rv-wrapper #ig-rv-modal-download {
            padding: 14px 32px;
            background: var(--bg-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 25px rgba(255, 61, 138, 0.3);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ig-rv-wrapper #ig-rv-modal-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(255, 61, 138, 0.4);
        }
			.ig-rv-wrapper .ig-rv-results-controls {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: column;
}
			.ig-rv-wrapper .ig-rv-reel-actions {
	display: flex;
	gap: 12px;
	padding: 0 20px 20px;
	flex-direction: column;
}
			.ig-rv-wrapper .ig-rv-reel-author {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-direction: column;
}

        .ig-rv-wrapper #ig-rv-modal-share {
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .ig-rv-wrapper #ig-rv-modal-share:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .ig-rv-wrapper #ig-rv-toast {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-gradient);
            color: white;
            padding: 18px 36px;
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            font-family: var(--font-primary);
            font-size: 1rem;
            font-weight: 500;
            z-index: 2000;
            display: none;
            align-items: center;
            gap: 14px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0;
            transition: all 0.3s ease;
        }

        @media (max-width: 600px) {
            .ig-rv-wrapper .ig-rv-modal-card {
                max-width: 98vw;
                border-radius: 12px;
            }

            .ig-rv-wrapper .ig-rv-modal-video-container {
                padding: 12px 2vw 0 2vw;
            }
					.ig-rv-wrapper .ig-rv-logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	gap: 12px;
	flex-direction: column;
}
					.ig-rv-wrapper .ig-rv-results-controls {
	display: flex;
	gap: 16px;
	align-items: center;
	flex-direction: column;
}
					.ig-rv-wrapper .ig-rv-reel-actions {
	display: flex;
	gap: 12px;
	padding: 0 20px 20px;
	flex-direction: column;
}
					.ig-rv-wrapper .ig-rv-reel-author {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-direction: column;
}
        }

/* --- Codex CSS updates --- */
/* Instagram Reels Viewer Wrapper Styles */
.pb-5 {
    padding-bottom: 3rem;
}

.ig-rv-wrapper {
    --ig-rv-gradient-1: #feda75;
    --ig-rv-gradient-2: #fa7e1e;
    --ig-rv-gradient-3: #d62976;
    --ig-rv-gradient-4: #962fbf;
    --ig-rv-gradient-5: #4f5bd5;
    --ig-rv-dark-color: #171421;
    --ig-rv-light-color: #ffffff;
    --ig-rv-gray-color: #f7f8fc;
    --ig-rv-instagram-gradient: linear-gradient(135deg, var(--ig-rv-gradient-1) 0%, var(--ig-rv-gradient-2) 22%, var(--ig-rv-gradient-3) 48%, var(--ig-rv-gradient-4) 74%, var(--ig-rv-gradient-5) 100%);
    --ig-rv-instagram-gradient-hover: linear-gradient(135deg, #4f5bd5 0%, #962fbf 26%, #d62976 54%, #fa7e1e 78%, #feda75 100%);
    --ig-rv-section-padding: 88px 0;
    --primary: #d62976;
    --primary-light: #ff74ad;
    --primary-dark: #a91558;
    --secondary: #635bff;
    --secondary-light: #8c84ff;
    --secondary-dark: #4338ca;
    --accent: #14f1c9;
    --dark: #171421;
    --muted: #667085;
    --light: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8f7ff;
    --bg-gradient: linear-gradient(135deg, #4f5bd5 0%, #962fbf 32%, #d62976 66%, #fa7e1e 100%);
    --bg-gradient-2: linear-gradient(135deg, #14f1c9 0%, #635bff 46%, #d62976 100%);
    --card-bg: rgba(255, 255, 255, 0.88);
    --card-shadow: 0 18px 50px rgba(30, 24, 75, 0.12);
    --font-primary: "Poppins", sans-serif;
    --font-secondary: "Poppins", sans-serif;
    --border-radius: 18px;
    --transition: all 0.28s ease;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    font-family: var(--font-primary);
    color: var(--dark);
    background:
        radial-gradient(circle at 10% 0%, rgba(254, 218, 117, 0.22), transparent 34%),
        radial-gradient(circle at 92% 8%, rgba(99, 91, 255, 0.18), transparent 30%),
        linear-gradient(180deg, #fbfbff 0%, #f7f8fc 100%);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.ig-rv-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ig-rv-wrapper a,
.ig-rv-wrapper button,
.ig-rv-wrapper input,
.ig-rv-wrapper video {
    max-width: 100%;
}

.ig-rv-wrapper i,
.ig-rv-wrapper .fa,
.ig-rv-wrapper .fas,
.ig-rv-wrapper .far,
.ig-rv-wrapper .fab,
.ig-rv-wrapper [class^="fa-"],
.ig-rv-wrapper [class*=" fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 5 Free", "FontAwesome" !important;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
}

.ig-rv-wrapper .fab {
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands" !important;
    font-weight: 400;
}

.ig-rv-wrapper .ig-rv-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px;
}

.ig-rv-wrapper .navigation-1 {
    background: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
    font-family: var(--font-primary);
    backdrop-filter: blur(16px);
}

.ig-rv-wrapper .navbar {
    padding: 1.1rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid rgba(23, 20, 33, 0.08);
    min-height: 76px;
}

.ig-rv-wrapper .navbar-brand img {
    max-height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.ig-rv-wrapper .navbar-brand:hover img {
    transform: scale(1.04);
}

.ig-rv-wrapper .nav-link {
    color: #1f2a44 !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.1rem !important;
    position: relative;
    transition: var(--transition);
}

.ig-rv-wrapper .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 1.1rem;
    background: var(--ig-rv-instagram-gradient);
    transition: width 0.3s ease;
    border-radius: 999px;
}

.ig-rv-wrapper .nav-link:hover::after {
    width: calc(100% - 2.2rem);
}

.ig-rv-wrapper .nav-link:hover {
    color: var(--primary) !important;
}

.ig-rv-wrapper .cta-btn {
    padding: 13px 26px;
    font-size: 1rem;
    font-weight: 700;
    background: var(--ig-rv-instagram-gradient);
    color: #ffffff !important;
    border-radius: 999px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 12px 28px rgba(214, 41, 118, 0.24);
    white-space: nowrap;
}

.ig-rv-wrapper .cta-btn:hover {
    background: var(--ig-rv-instagram-gradient-hover);
    box-shadow: 0 16px 34px rgba(214, 41, 118, 0.32);
    transform: translateY(-2px);
}

.ig-rv-wrapper .navbar-toggler {
    border: 1px solid rgba(214, 41, 118, 0.18);
    padding: 0.7rem;
    background-color: rgba(214, 41, 118, 0.08);
    border-radius: 12px;
}

.ig-rv-wrapper .ig-rv-hero-section {
    padding: var(--ig-rv-section-padding);
    text-align: center;
    background-color: var(--ig-rv-light-color);
}

.ig-rv-wrapper .ig-rv-hero-content {
    position: relative;
    z-index: 1;
}

.ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-title {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: var(--ig-rv-instagram-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-text {
    font-size: 1.08rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.92;
    font-weight: 400;
    color: var(--muted);
}

.ig-rv-wrapper .ig-rv-work-process-section {
    padding: var(--ig-rv-section-padding);
    background: var(--ig-rv-instagram-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.ig-rv-wrapper .ig-rv-work-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 35, 0.08);
}

.ig-rv-wrapper .ig-rv-work-process-content {
    position: relative;
    z-index: 1;
}

.ig-rv-wrapper .ig-rv-process-step {
    text-align: center;
    padding: 30px 22px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    margin: 15px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    transition: var(--transition);
}

.ig-rv-wrapper .ig-rv-process-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 36px rgba(17, 17, 35, 0.22);
}

.ig-rv-wrapper .ig-rv-process-step::before {
    content: "";
}

.ig-rv-wrapper .ig-rv-step-number {
    width: 58px;
    height: 58px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 18px;
    font-size: 1.35rem;
    box-shadow: 0 10px 22px rgba(17, 17, 35, 0.14);
}

.ig-rv-wrapper .ig-rv-features-section {
    padding: var(--ig-rv-section-padding);
    background: white;
}

.ig-rv-wrapper .ig-rv-feature-card {
    padding: 34px 28px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(99, 91, 255, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ig-rv-wrapper .ig-rv-feature-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--ig-rv-instagram-gradient);
    transition: var(--transition);
}

.ig-rv-wrapper .ig-rv-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 52px rgba(30, 24, 75, 0.14);
}

.ig-rv-wrapper .ig-rv-feature-card:hover::before {
    width: 100%;
    opacity: 0.08;
}

.ig-rv-wrapper .ig-rv-feature-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--ig-rv-instagram-gradient);
    color: white;
    font-size: 1.65rem;
    transition: var(--transition);
    box-shadow: 0 12px 24px rgba(214, 41, 118, 0.22);
}

.ig-rv-wrapper .ig-rv-feature-card:hover .ig-rv-feature-icon {
    transform: rotate(8deg) scale(1.06);
    background: var(--ig-rv-instagram-gradient-hover);
}

.ig-rv-wrapper .ig-rv-why-choose-section {
    padding: var(--ig-rv-section-padding);
    background: #f8f9fc;
}

.ig-rv-wrapper .ig-rv-why-choose-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(30, 24, 75, 0.14);
    transform: perspective(1000px) rotateY(-3deg);
    transition: all 0.5s ease;
}

.ig-rv-wrapper .ig-rv-why-choose-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.ig-rv-wrapper .ig-rv-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 10px 24px rgba(30, 24, 75, 0.07);
    transition: var(--transition);
    border: 1px solid rgba(99, 91, 255, 0.08);
}

.ig-rv-wrapper .ig-rv-benefit-item:hover {
    transform: translateX(6px);
    box-shadow: 0 16px 32px rgba(30, 24, 75, 0.12);
}

.ig-rv-wrapper .ig-rv-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background: var(--ig-rv-instagram-gradient);
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ig-rv-wrapper .ig-rv-faq-section {
    padding: var(--ig-rv-section-padding);
    background: white;
}

.ig-rv-wrapper .ig-rv-accordion-item {
    border: 1px solid rgba(99, 91, 255, 0.08);
    border-radius: 14px !important;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 10px 24px rgba(30, 24, 75, 0.07);
}

.ig-rv-wrapper .ig-rv-accordion-button {
    font-weight: 700;
    color: var(--dark);
    padding: 20px 24px;
    background: white;
    box-shadow: none;
    border-radius: 14px 14px 0 0 !important;
}

.ig-rv-wrapper .ig-rv-accordion-button:not(.collapsed) {
    background: #fff7fb;
    color: var(--primary);
    box-shadow: none;
}

.ig-rv-wrapper .ig-rv-accordion-button:focus {
    box-shadow: 0 0 0 4px rgba(214, 41, 118, 0.14);
    border-color: rgba(214, 41, 118, 0.3);
}

.ig-rv-wrapper .ig-rv-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d62976'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ig-rv-wrapper .ig-rv-accordion-body {
    padding: 24px;
    color: var(--muted);
}

.ig-rv-wrapper .ig-rv-section-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.4rem;
    position: relative;
    display: inline-block;
}

.ig-rv-wrapper .ig-rv-section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 62px;
    height: 4px;
    background: var(--ig-rv-instagram-gradient);
    border-radius: 999px;
}

.ig-rv-wrapper .ig-rv-light-title {
    color: white;
}

.ig-rv-wrapper .ig-rv-light-title::after {
    background: white;
}

.ig-rv-wrapper .ig-rv-section-subtitle {
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
}

.ig-rv-wrapper .ig-rv-light-subtitle {
    color: rgba(255, 255, 255, 0.84);
}

@keyframes ig-rv-float {
    0% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }

    100% {
        transform: translateY(0) rotate(0);
    }
}

.ig-rv-wrapper .ig-rv-floating-element {
    animation: ig-rv-float 6s ease-in-out infinite;
}

.ig-rv-wrapper ::-webkit-scrollbar {
    width: 8px;
}

.ig-rv-wrapper ::-webkit-scrollbar-track {
    background: #f1f3f8;
}

.ig-rv-wrapper ::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.ig-rv-wrapper ::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.ig-rv-wrapper .footer-section {
    background: radial-gradient(circle at 20% 0%, rgba(99, 91, 255, 1) 0%, rgba(23, 20, 33, 1) 58%, rgba(92, 18, 84, 1) 100%);
    color: #fff;
    padding-top: 76px;
    padding-bottom: 76px;
}

.ig-rv-wrapper .footer-logo {
    width: 190px;
    margin-bottom: 12px;
    cursor: pointer;
}

.ig-rv-wrapper .footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.ig-rv-wrapper .footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.ig-rv-wrapper .footer-links .footer-link,
.ig-rv-wrapper .footer-tools .footer-tool {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.ig-rv-wrapper .footer-links .footer-link:hover,
.ig-rv-wrapper .footer-tools .footer-tool:hover {
    color: #fff;
    transform: translateX(3px);
}

.ig-rv-wrapper .footer-social .social-icon {
    color: rgba(255, 255, 255, 0.72);
    font-size: 24px;
    text-decoration: none;
    transition: var(--transition);
}

.ig-rv-wrapper .footer-social .social-icon:hover {
    color: #fff;
    transform: translateY(-2px);
}

.ig-rv-wrapper .footer-copyright {
    background-color: #12121a;
}

.ig-rv-wrapper .footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.ig-rv-wrapper .ig-rv-header {
    position: relative;
    background:
        radial-gradient(circle at 12% 12%, rgba(254, 218, 117, 0.5), transparent 26%),
        radial-gradient(circle at 86% 16%, rgba(20, 241, 201, 0.34), transparent 28%),
        linear-gradient(135deg, #42047e 0%, #962fbf 38%, #d62976 68%, #07f49e 100%) !important;
    color: var(--light);
    padding: 64px 24px 104px;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 26px 70px rgba(66, 4, 126, 0.22);
}

.ig-rv-wrapper .ig-rv-header::after {
    content: "";
    position: absolute;
    inset: auto 8% -80px 8%;
    height: 160px;
    background: rgba(255, 255, 255, 0.22);
    filter: blur(55px);
    border-radius: 50%;
    pointer-events: none;
}

.ig-rv-wrapper .ig-rv-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ig-rv-wrapper .ig-rv-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    gap: 14px;
}

.ig-rv-wrapper .ig-rv-logo {
    background: rgba(255, 255, 255, 0.18);
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 14px 30px rgba(0, 0, 0, 0.16);
    flex: 0 0 auto;
}

.ig-rv-wrapper .ig-rv-logo svg {
    color: var(--light);
    display: block;
}

.ig-rv-wrapper .ig-rv-hero-title {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    font-weight: 700;
    line-height: 1.22;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0;
    text-transform: capitalize !important;
    text-wrap: balance;
}

.ig-rv-wrapper .ig-rv-header-subtitle {
    font-size: clamp(0.98rem, 1.6vw, 1.12rem);
    font-weight: 400;
    opacity: 0.94;
    margin: 8px auto 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
}

.ig-rv-wrapper .ig-rv-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: ig-rv-float 8s infinite ease-in-out;
    pointer-events: none;
}

.ig-rv-wrapper .ig-rv-bubble:nth-child(1) {
    width: 120px;
    height: 120px;
    top: -32px;
    left: 10%;
    animation-delay: 0s;
}

.ig-rv-wrapper .ig-rv-bubble:nth-child(2) {
    width: 82px;
    height: 82px;
    top: 50%;
    right: 15%;
    animation-delay: 1s;
}

.ig-rv-wrapper .ig-rv-bubble:nth-child(3) {
    width: 62px;
    height: 62px;
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

.ig-rv-wrapper .ig-rv-bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    bottom: -22px;
    right: 5%;
    animation-delay: 3s;
}

.ig-rv-wrapper .ig-rv-search-section {
    margin-top: -48px;
    position: relative;
    z-index: 5;
}

.ig-rv-wrapper .ig-rv-glass-card {
    background: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(18px);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(30, 24, 75, 0.14);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    text-align: center;
    position: relative;
    z-index: 10;
}

.ig-rv-wrapper .ig-rv-glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(214, 41, 118, 0.18), rgba(99, 91, 255, 0.2));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ig-rv-wrapper .ig-rv-glass-card .ig-rv-card-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 10px;
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ig-rv-wrapper .ig-rv-search-description {
    margin-bottom: 22px;
    color: rgba(23, 20, 33, 0.68);
    font-size: 1rem;
}

.ig-rv-wrapper .ig-rv-search-container {
    display: flex;
    flex-direction: row;
    gap: 14px;
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.ig-rv-wrapper .ig-rv-search-input-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    z-index: 10;
}

.ig-rv-wrapper .ig-rv-search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    width: 22px;
    height: 22px;
    pointer-events: none;
}

.ig-rv-wrapper .ig-rv-search-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.ig-rv-wrapper #ig-rv-search-input {
    width: 100%;
    max-width: 100%;
    height: 54px;
    min-height: 54px;
    max-height: 54px;
    padding: 0 16px 0 52px;
    border-radius: 14px;
    border: 1px solid rgba(99, 91, 255, 0.22);
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 54px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.96);
    color: var(--dark);
    cursor: text;
    position: relative;
    z-index: 10;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(30, 24, 75, 0.06);
    resize: none;
    overflow: hidden;
}

.ig-rv-wrapper #ig-rv-search-input::placeholder {
    color: #98a2b3;
}

.ig-rv-wrapper #ig-rv-search-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.16), 0 12px 24px rgba(30, 24, 75, 0.08);
    background: white;
}

.ig-rv-wrapper #ig-rv-search-input:hover {
    border-color: var(--secondary-light);
}

.ig-rv-wrapper #ig-rv-search-button {
    background: var(--bg-gradient);
    border: none;
    border-radius: 14px;
    color: white;
    min-height: 54px;
    height: 54px;
    padding: 0 24px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: var(--transition);
    box-shadow: 0 12px 26px rgba(214, 41, 118, 0.27);
    white-space: nowrap;
    flex: 0 0 auto;
}

.ig-rv-wrapper #ig-rv-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(214, 41, 118, 0.34);
    background: var(--ig-rv-instagram-gradient-hover);
}

.ig-rv-wrapper #ig-rv-search-button:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(214, 41, 118, 0.24);
}

.ig-rv-wrapper #ig-rv-search-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(214, 41, 118, 0.2), 0 16px 34px rgba(214, 41, 118, 0.32);
}

.ig-rv-wrapper .ig-rv-results-section {
    margin: 42px 0;
    display: none;
}

.ig-rv-wrapper .ig-rv-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.ig-rv-wrapper .ig-rv-results-header .ig-rv-results-title {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.25;
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.ig-rv-wrapper .ig-rv-results-controls {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.ig-rv-wrapper .ig-rv-view-mode {
    display: flex;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 12px;
    padding: 5px;
    border: 1px solid rgba(99, 91, 255, 0.1);
    box-shadow: 0 8px 22px rgba(30, 24, 75, 0.07);
}

.ig-rv-wrapper .ig-rv-view-button {
    width: 40px;
    height: 38px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 10px;
    color: var(--dark);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ig-rv-wrapper .ig-rv-view-button:hover {
    background: rgba(99, 91, 255, 0.1);
    color: var(--secondary);
}

.ig-rv-wrapper .ig-rv-view-button.active,
.ig-rv-wrapper .active {
    background: var(--secondary);
    color: white;
}

.ig-rv-wrapper .ig-rv-sort-filter {
    position: relative;
    display: flex;
    align-items: center;
}

.ig-rv-wrapper .ig-rv-sort-button {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(99, 91, 255, 0.1);
    border-radius: 12px;
    min-height: 48px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 8px 22px rgba(30, 24, 75, 0.07);
}

.ig-rv-wrapper .ig-rv-sort-button:hover {
    background: white;
    border-color: rgba(214, 41, 118, 0.22);
    transform: translateY(-1px);
}

.ig-rv-wrapper .ig-rv-reels-container {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.ig-rv-wrapper .ig-rv-reels-container.grid,
.ig-rv-wrapper .grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.ig-rv-wrapper .ig-rv-reels-container.list {
    grid-template-columns: 1fr;
}

.ig-rv-wrapper .ig-rv-reel-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(255, 255, 255, 0.72);
    display: flex;
    flex-direction: column;
    animation: ig-rv-fadeIn 0.5s ease forwards;
    opacity: 0;
    position: relative;
}

.ig-rv-wrapper .ig-rv-reel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(30, 24, 75, 0.16);
}

@keyframes ig-rv-fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-reel-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 22px;
}

.ig-rv-wrapper .ig-rv-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    overflow: hidden;
    background: #080812;
}

.ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-video-container {
    padding-bottom: 100%;
}

.ig-rv-wrapper .ig-rv-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    inset: 0;
    cursor: pointer;
}

.ig-rv-wrapper .ig-rv-reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
}

.ig-rv-wrapper .ig-rv-video:playing + .ig-rv-reel-overlay {
    opacity: 0;
    pointer-events: none;
}

.ig-rv-wrapper .ig-rv-play-button {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.28);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.ig-rv-wrapper .ig-rv-play-button:hover {
    background: rgba(255, 255, 255, 0.34);
    transform: scale(1.08);
}

.ig-rv-wrapper .play-icon,
.ig-rv-wrapper .pause-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1em;
    height: 1em;
    color: currentColor;
    line-height: 1;
}

.ig-rv-wrapper .fullscreen-button {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 3;
}

.ig-rv-wrapper .fullscreen-button:hover {
    background: rgba(0, 0, 0, 0.58);
    transform: translateY(-1px);
}

.ig-rv-wrapper .ig-rv-reel-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.ig-rv-wrapper .ig-rv-reel-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
}

.ig-rv-wrapper .ig-rv-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 6px 14px rgba(214, 41, 118, 0.16);
}

.ig-rv-wrapper .ig-rv-author-info {
    display: flex;
    align-items: center;
    min-width: 0;
}

.ig-rv-wrapper .ig-rv-author-name {
    font-weight: 700;
    margin-right: 4px;
    color: var(--dark);
}

.ig-rv-wrapper .ig-rv-verified-badge {
    color: var(--secondary);
    font-size: 14px;
}

.ig-rv-wrapper .ig-rv-reel-caption {
    font-size: 0.95rem;
    color: rgba(23, 20, 33, 0.78);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 1.6em;
}

.ig-rv-wrapper .ig-rv-reel-stats {
    display: flex;
    gap: 18px;
    color: rgba(23, 20, 33, 0.68);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.ig-rv-wrapper .ig-rv-stat,
.ig-rv-wrapper .likes,
.ig-rv-wrapper .views,
.ig-rv-wrapper .video-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(23, 20, 33, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}

.ig-rv-wrapper .overlay-time-ago {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.54);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.ig-rv-wrapper .ig-rv-reel-actions {
    display: flex;
    gap: 12px;
    padding: 0 20px 20px;
    flex-direction: row;
}

.ig-rv-wrapper .ig-rv-action-button {
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    font-family: var(--font-primary);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.92rem;
}

.ig-rv-wrapper .ig-rv-download {
    background: var(--bg-gradient);
    color: white;
    box-shadow: 0 10px 22px rgba(214, 41, 118, 0.22);
}

.ig-rv-wrapper .ig-rv-share {
    background: rgba(23, 20, 33, 0.06);
    color: var(--dark);
}

.ig-rv-wrapper .ig-rv-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(214, 41, 118, 0.3);
}

.ig-rv-wrapper .ig-rv-download:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.ig-rv-wrapper .ig-rv-download:disabled:hover {
    transform: none;
    box-shadow: 0 10px 22px rgba(214, 41, 118, 0.22);
}

.ig-rv-wrapper .ig-rv-download-spinner,
.ig-rv-wrapper .download-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: ig-rv-spin 1s linear infinite;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    flex: 0 0 auto;
}

.ig-rv-wrapper .ig-rv-action-button.ig-rv-download:disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ig-rv-wrapper .ig-rv-share:hover {
    background: rgba(23, 20, 33, 0.1);
    transform: translateY(-2px);
}

.ig-rv-wrapper .ig-rv-reel-time {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.62);
    color: white;
    font-size: 0.75rem;
    padding: 5px 9px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.ig-rv-wrapper .ig-rv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.ig-rv-wrapper .ig-rv-pagination-button {
    background: var(--light);
    border: 1px solid rgba(99, 91, 255, 0.12);
    border-radius: 12px;
    min-height: 46px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(30, 24, 75, 0.06);
}

.ig-rv-wrapper .ig-rv-pagination-button:hover:not(:disabled) {
    background: var(--secondary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

.ig-rv-wrapper .ig-rv-pagination-button:disabled {
    opacity: 0.52;
    cursor: not-allowed;
}

.ig-rv-wrapper .prev,
.ig-rv-wrapper .next {
    white-space: nowrap;
}

.ig-rv-wrapper .ig-rv-pagination-dots {
    display: flex;
    gap: 7px;
    align-items: center;
}

.ig-rv-wrapper .ig-rv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(23, 20, 33, 0.14);
    transition: var(--transition);
}

.ig-rv-wrapper .ig-rv-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.ig-rv-wrapper .ig-rv-loading-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 249, 252, 0.82);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ig-rv-wrapper .ig-rv-loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.ig-rv-wrapper .ig-rv-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 20px;
}

.ig-rv-wrapper .ig-rv-loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(99, 91, 255, 0.2);
    border-top: 4px solid var(--secondary);
    border-radius: 50%;
    animation: ig-rv-spin 1s linear infinite;
}

@keyframes ig-rv-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ig-rv-wrapper .ig-rv-loader-card {
    width: min(300px, calc(100vw - 40px));
    background: white;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    padding: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 91, 255, 0.08);
}

.ig-rv-wrapper .ig-rv-skeleton-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ig-rv-wrapper .ig-rv-skeleton {
    background: linear-gradient(90deg, #ececf5, #f8f8fc, #ececf5);
    background-size: 200% 100%;
    animation: ig-rv-skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

.ig-rv-wrapper .ig-rv-skeleton.video,
.ig-rv-wrapper .video {
    height: 160px;
    border-radius: 12px;
}

.ig-rv-wrapper .ig-rv-skeleton.avatar,
.ig-rv-wrapper .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.ig-rv-wrapper .ig-rv-skeleton.text-line,
.ig-rv-wrapper .text-line {
    height: 12px;
    margin-bottom: 8px;
}

.ig-rv-wrapper .ig-rv-skeleton.text-line.short,
.ig-rv-wrapper .short {
    width: 60%;
}

.ig-rv-wrapper .ig-rv-skeleton-actions {
    display: flex;
    gap: 10px;
}

.ig-rv-wrapper .ig-rv-skeleton.button,
.ig-rv-wrapper .button {
    height: 36px;
    flex: 1;
    border-radius: 10px;
}

.ig-rv-wrapper .ig-rv-skeleton.button.small,
.ig-rv-wrapper .small {
    flex: 0.5;
}

@keyframes ig-rv-skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.ig-rv-wrapper .ig-rv-error-message,
.ig-rv-wrapper .error-message {
    text-align: center;
    padding: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: #b42318;
    background: #fff4f3;
    border: 1px solid rgba(180, 35, 24, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(180, 35, 24, 0.08);
}

.ig-rv-wrapper .ig-rv-no-reels,
.ig-rv-wrapper .no-reels {
    text-align: center;
    padding: 48px 24px;
    color: rgba(23, 20, 33, 0.68);
    font-size: 1.04rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px dashed rgba(99, 91, 255, 0.22);
    border-radius: 18px;
}

.ig-rv-wrapper #ig-rv-fullscreen-modal {
    position: fixed;
    z-index: 1500;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 12, 26, 0.76);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.ig-rv-wrapper #ig-rv-fullscreen-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.ig-rv-wrapper .ig-rv-modal-card {
    width: 100%;
    max-width: 520px;
    background: rgba(28, 27, 42, 0.98);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

.ig-rv-wrapper .ig-rv-modal-video-container {
    width: 100%;
    box-sizing: border-box;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ig-rv-wrapper #ig-rv-modal-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 16px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
    display: block;
    max-width: 100%;
    height: auto;
}

.ig-rv-wrapper #ig-rv-close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 1.55rem;
    cursor: pointer;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    line-height: 1;
}

.ig-rv-wrapper #ig-rv-close-modal:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.06);
}

.ig-rv-wrapper #ig-rv-modal-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: 2px solid rgba(255, 255, 255, 0.22);
    transition: var(--transition);
}

.ig-rv-wrapper #ig-rv-modal-play-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.08);
}

.ig-rv-wrapper #ig-rv-modal-duration {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    z-index: 2;
    display: none;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.ig-rv-wrapper .ig-rv-modal-actions {
    margin-top: 26px;
    display: flex;
    gap: 16px;
    justify-content: center;
    width: 100%;
}

.ig-rv-wrapper #ig-rv-modal-download {
    min-height: 48px;
    padding: 0 28px;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 28px rgba(214, 41, 118, 0.28);
    transition: var(--transition);
    text-transform: capitalize !important;
    letter-spacing: 0;
}

.ig-rv-wrapper #ig-rv-modal-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(214, 41, 118, 0.36);
}

.ig-rv-wrapper #ig-rv-modal-share {
    min-height: 48px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.ig-rv-wrapper #ig-rv-modal-share:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ig-rv-wrapper #ig-rv-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-gradient);
    color: white;
    padding: 15px 24px;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    font-family: var(--font-primary);
    font-size: 0.96rem;
    font-weight: 600;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    opacity: 0;
    transition: var(--transition);
    max-width: calc(100vw - 32px);
}

.ig-rv-wrapper #ig-rv-toast-message {
    display: inline-block;
    color: inherit;
}

@media (max-width: 991px) {
    .ig-rv-wrapper {
        --ig-rv-section-padding: 76px 0;
    }

    .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }

    .ig-rv-wrapper .ig-rv-process-step::before {
        display: none;
    }

    .ig-rv-wrapper .ig-rv-container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 768px) {
    .ig-rv-wrapper {
        --ig-rv-section-padding: 64px 0;
        overflow-x: hidden;
    }

    .ig-rv-wrapper .ig-rv-header {
        padding: 48px 16px 82px;
        border-bottom-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .ig-rv-wrapper .ig-rv-logo-container {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 14px;
    }

    .ig-rv-wrapper .ig-rv-logo {
        width: 54px;
        height: 54px;
        border-radius: 16px;
    }

    .ig-rv-wrapper .ig-rv-hero-title {
        font-size: clamp(1.55rem, 6vw, 2rem);
        line-height: 1.25;
        max-width: 100%;
    }

    .ig-rv-wrapper .ig-rv-header-subtitle {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .ig-rv-wrapper .ig-rv-search-section {
        margin-top: -42px;
    }

    .ig-rv-wrapper .ig-rv-glass-card {
        padding: 22px 16px;
        border-radius: 18px;
    }

    .ig-rv-wrapper .ig-rv-search-container {
        flex-direction: column;
        max-width: 520px;
        gap: 12px;
        align-items: stretch;
    }

    .ig-rv-wrapper .ig-rv-search-input-wrapper {
        width: 100%;
        flex: 0 0 auto;
    }

    .ig-rv-wrapper #ig-rv-search-input {
        width: 100%;
        height: 54px;
        min-height: 54px;
        max-height: 54px;
        line-height: 54px;
        font-size: 0.96rem;
    }

    .ig-rv-wrapper #ig-rv-search-button {
        width: 100%;
        max-width: 100%;
        height: 52px;
        min-height: 52px;
        padding: 0 18px;
    }

    .ig-rv-wrapper .ig-rv-results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .ig-rv-wrapper .ig-rv-results-controls {
        width: 100%;
        justify-content: space-between;
        flex-direction: row;
    }

    .ig-rv-wrapper .ig-rv-view-mode,
    .ig-rv-wrapper .ig-rv-sort-filter {
        flex: 1 1 auto;
    }

    .ig-rv-wrapper .ig-rv-sort-button {
        width: 100%;
        justify-content: center;
    }

    .ig-rv-wrapper .ig-rv-reels-container.grid {
        grid-template-columns: 1fr;
    }

    .ig-rv-wrapper .ig-rv-reels-container.list .ig-rv-reel-card {
        grid-template-columns: 1fr;
    }

    .ig-rv-wrapper .ig-rv-reel-author {
        flex-direction: row;
        align-items: center;
    }

    .ig-rv-wrapper .ig-rv-reel-actions {
        flex-direction: column;
    }

    .ig-rv-wrapper .ig-rv-action-button {
        width: 100%;
    }

    .ig-rv-wrapper .ig-rv-pagination {
        gap: 10px;
    }

    .ig-rv-wrapper .ig-rv-pagination-button {
        flex: 1 1 130px;
        justify-content: center;
    }

    .ig-rv-wrapper .ig-rv-modal-card {
        padding: 0;
        margin: 20px;
        max-width: calc(100vw - 32px);
        border-radius: 18px;
    }

    .ig-rv-wrapper #ig-rv-modal-video {
        max-width: 100%;
        min-width: 0;
        min-height: 180px;
    }

    .ig-rv-wrapper .ig-rv-modal-actions {
        flex-direction: column;
        gap: 12px;
    }

    .ig-rv-wrapper #ig-rv-modal-download,
    .ig-rv-wrapper #ig-rv-modal-share {
        width: 100%;
        justify-content: center;
    }

    .ig-rv-wrapper .navbar {
        min-height: 70px;
    }

    .ig-rv-wrapper .navbar-collapse {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 28px rgba(30, 24, 75, 0.14);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .ig-rv-wrapper .nav-link {
        color: #1f2a44 !important;
        padding: 1rem 1.2rem !important;
        font-size: 1.05rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(23, 20, 33, 0.06);
    }

    .ig-rv-wrapper .nav-link:hover {
        color: var(--primary) !important;
        background: #f8fafc;
    }

    .ig-rv-wrapper .nav-link::after {
        display: none;
    }

    .ig-rv-wrapper .cta-btn {
        display: block;
        text-align: center;
        margin: 1.4rem auto;
        padding: 13px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .ig-rv-wrapper .navbar-brand img {
        max-height: 50px;
    }

    .ig-rv-wrapper .navbar-nav {
        margin-top: 1rem;
    }

    .ig-rv-wrapper .ig-rv-hero-section {
        padding: 76px 0 54px;
    }

    .ig-rv-wrapper .ig-rv-hero-section .ig-rv-hero-text {
        font-size: 1rem;
    }

    .ig-rv-wrapper .ig-rv-section-title {
        font-size: 1.65rem;
    }

    .ig-rv-wrapper .footer-logo {
        width: 180px;
    }

    .ig-rv-wrapper .footer-description,
    .ig-rv-wrapper .footer-link,
    .ig-rv-wrapper .footer-tool,
    .ig-rv-wrapper .footer-bottom-text {
        font-size: 14px;
    }

    .ig-rv-wrapper .footer-heading {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .pb-5 {
        padding-bottom: 2rem;
    }

    .ig-rv-wrapper .ig-rv-container {
        padding: 14px;
    }

    .ig-rv-wrapper .ig-rv-header {
        padding: 42px 14px 78px;
    }

    .ig-rv-wrapper .ig-rv-glass-card .ig-rv-card-title {
        font-size: 1.32rem;
    }

    .ig-rv-wrapper .ig-rv-search-description {
        font-size: 0.94rem;
        margin-bottom: 18px;
    }

    .ig-rv-wrapper .ig-rv-search-container {
        width: 100%;
        max-width: 100%;
    }

    .ig-rv-wrapper #ig-rv-search-input {
        height: 52px;
        min-height: 52px;
        max-height: 52px;
        line-height: 52px;
        padding-left: 48px;
    }

    .ig-rv-wrapper #ig-rv-search-button {
        height: 52px;
        min-height: 52px;
    }

    .ig-rv-wrapper .ig-rv-results-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .ig-rv-wrapper .ig-rv-view-mode {
        width: 100%;
        justify-content: center;
    }

    .ig-rv-wrapper .ig-rv-reel-details {
        padding: 18px;
    }

    .ig-rv-wrapper .ig-rv-reel-actions {
        padding: 0 18px 18px;
    }

    .ig-rv-wrapper .ig-rv-modal-card {
        max-width: 98vw;
        border-radius: 14px;
    }

    .ig-rv-wrapper .ig-rv-modal-video-container {
        padding: 12px 2vw;
    }

    .ig-rv-wrapper #ig-rv-close-modal {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
        font-size: 1.4rem;
    }

    .ig-rv-wrapper #ig-rv-toast {
        bottom: 18px;
        width: calc(100vw - 28px);
        justify-content: center;
        padding: 14px 16px;
    }
}