@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Base Reset */
.ia-supportive-alt {
width: 100%;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: #220657; /* Tool Midnight Blue */
}
/* Force standard solid icons */
.ia-supportive-alt i {
font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
font-weight: 900 !important;
font-style: normal !important;
display: inline-block !important;
}
.content-limit {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.support-sec { padding: 90px 0; width: 100%; }
.bg-white { background-color: #ffffff; }
.bg-light-blue { background-color: #f0f7ff; }
/* Centered Header Section */
.heading-area { text-align: center; margin-bottom: 50px; }
.wh-main-title {
font-size: clamp(24px, 5vw, 34px);
font-weight: 800;
margin-bottom: 12px;
color: #5235DD; /* Tool Primary Purple */
letter-spacing: -0.02em;
}
.wh-description {
font-size: clamp(14px, 3vw, 17px);
color: #64748b;
max-width: 800px;
margin: 0 auto;
}
/* 4 Column Card Grid */
.grid-layout {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.feature-card {
padding: 35px 20px;
border-radius: 10px; /* Radius requirement */
text-align: center;
transition: all 0.4s ease;
border: 1px solid rgba(0,0,0,0.03);
}
.feature-card h3 {
font-size: 18px;
font-weight: 700;
margin-bottom: 12px;
color: #220657;
}
.feature-card p {
font-size: 14px;
color: #4b5563;
line-height: 1.6;
}
.icon-wrap, .icon-box, .icon-pop {
font-size: 32px;
margin-bottom: 22px;
display: inline-block;
transition: all 0.4s ease;
}
/* --- Section 1: 3D Perspective + Icon Parallax --- */
.bg-white .feature-card { background-color: #f0f7ff; }
.v1-hover:hover {
transform: perspective(1000px) rotateX(10deg) translateY(-5px);
box-shadow: 0 15px 30px rgba(34, 6, 87, 0.1);
}
.v1-hover:hover .float-anim {
transform: translateZ(30px) translateY(-5px);
color: #FF9800; /* Tool Accent Orange */
}
/* --- Section 2: Border Glow + Icon Pulse --- */
.bg-light-blue .feature-card { background-color: #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.v2-hover:hover {
transform: scale(1.05);
box-shadow: 0 0 0 2px #5235DD, 0 10px 25px rgba(82, 53, 221, 0.1);
}
.v2-hover:hover .pulse-anim {
animation: iconPulse 0.8s infinite alternate;
color: #5235DD;
}
@keyframes iconPulse { to { transform: scale(1.3); } }
/* --- Section 3: Inset Pop + Icon Spin --- */
.bg-white .v3-hover { background-color: #f0f7ff; }
.v3-hover:hover {
box-shadow: inset 0 0 15px rgba(82, 53, 221, 0.05), 0 5px 15px rgba(0,0,0,0.05);
}
.v3-hover:hover .flip-anim {
transform: rotateY(180deg);
color: #E1306C; /* Insta Pink */
}
/* Responsive Logic */
@media (max-width: 1024px) {
.grid-layout { grid-template-columns: repeat(2, 1fr); }
.wh-main-title { font-size: 28px; }
}
@media (max-width: 768px) {
.support-sec { padding: 60px 0; }
}
@media (max-width: 550px) {
.grid-layout { grid-template-columns: 1fr; }
.feature-card { padding: 30px 15px; }
.wh-main-title { font-size: 24px; }
}

/* Reset and Base Styles */
    .ig-anonymous-viewer * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .ig-anonymous-viewer {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        background: linear-gradient(135deg, #1a2a3a, #16213e, #0f3460);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
        line-height: 1.6;
        padding:80px 16px;
        padding: 20px 0;
			  margin:0;
    }

    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .ig-anonymous-viewer .main-contain {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Tool Wrapper */
    .ig-anonymous-viewer .ig-tool-wrapper {
        width: 80%;
        margin: 20px auto;
        padding: 35px;
        border-radius: 20px;
        background: rgba(20, 30, 48, 0.85);
        backdrop-filter: blur(10px);
        color: white;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .ig-tool-wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, rgba(66, 66, 107, 0.2), transparent 60%);
        pointer-events: none;
    }

    .ig-anonymous-viewer .ig-header h1 {
        font-size: 36px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .ig-header h1 span {
        color: #FF9800;
        position: relative;
        display: inline-block;
    }

    .ig-anonymous-viewer .ig-header h1 span::after {
        content: "";
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 100%;
        height: 3px;
        background: #FF9800;
        border-radius: 10px;
    }

    .ig-anonymous-viewer .ig-header p {
        font-size: 17px;
        margin: 15px 0 25px;
        line-height: 1.6;
        font-weight: 400;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Input Area */
    .ig-anonymous-viewer .ig-input-area {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 25px 20px;
        border-radius: 16px;
        gap: 15px;
        margin: 0 auto;
        max-width: 100%;
        flex-wrap: wrap;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .ig-icon {
        font-size: 16px;
        color: #e0e0e0;
        font-weight: 500;
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .ig-input-area input {
        flex-grow: 1;
        padding: 14px 18px;
        font-size: 16px;
        border: none;
        outline: none;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 12px;
        transition: all 0.3s;
        color: #1a1a2e;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .ig-anonymous-viewer .ig-input-area input:focus {
        background: #fff;
        box-shadow: 0 0 0 2px rgba(255, 152, 0, 0.5);
    }

    .ig-anonymous-viewer .error-container {
        margin-top: 25px;
        position: absolute;
        bottom: -60px;
        left: 20px;
        right: 20px;
    }

    .ig-anonymous-viewer #error-message {
        color: #ff6b6b;
        margin-top: 25px;
        display: none;
        font-weight: 500;
    }

    .ig-anonymous-viewer .paste-btn,
    .ig-anonymous-viewer .view-btn {
        border: none;
        border-radius: 12px;
        padding: 14px 20px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        margin-bottom: 15px;
    }

    .ig-anonymous-viewer .paste-btn {
        background: linear-gradient(135deg, #00BCD4, #0097A7);
        color: white;
    }

    .ig-anonymous-viewer .paste-btn:hover {
        background: linear-gradient(135deg, #00ACC1, #00838F);
        transform: translateY(-2px);
    }

    .ig-anonymous-viewer .view-btn {
        background: linear-gradient(135deg, #FF9800, #F57C00);
        color: white;
        box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    }

    .ig-anonymous-viewer .view-btn:hover {
        background: linear-gradient(135deg, #FB8C00, #EF6C00);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
    }

    .ig-anonymous-viewer .view-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* Ad Space */
    .ig-anonymous-viewer .ad-space {
        margin-top: 20px;
        text-align: center;
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        padding: 6px;
        background: linear-gradient(135deg, #00BCD4, #FF9800, #F57C00);
        background-size: 300% 300%;
        animation: gradientBorder 6s ease infinite;
    }

    @keyframes gradientBorder {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .ig-anonymous-viewer .ad-inner {
        border-radius: 12px;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        animation: floatAd 5s ease-in-out infinite;
    }

    @keyframes floatAd {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-5px); }
    }

    .ig-anonymous-viewer .ad-placeholder {
        display: block;
        position: relative;
        text-decoration: none;
        color: inherit;
    }

    .ig-anonymous-viewer .ad-placeholder::before {
        content: "Sponsored";
        position: absolute;
        top: 12px;
        left: 12px;
        background-color: #fff;
        color: #F57C00;
        font-size: 12px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 5px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
        animation: pulseTag 2s infinite;
        z-index: 2;
    }

    @keyframes pulseTag {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.05); opacity: 0.85; }
        100% { transform: scale(1); opacity: 1; }
    }

    .ig-anonymous-viewer .ad-image {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .ig-anonymous-viewer .ad-placeholder:hover .ad-image {
        animation: wiggle 0.4s ease;
        transform: scale(1.04);
    }

    @keyframes wiggle {
        0% { transform: rotate(0deg); }
        25% { transform: rotate(1.5deg); }
        50% { transform: rotate(-1.5deg); }
        75% { transform: rotate(1.5deg); }
        100% { transform: rotate(0deg); }
    }

    .ig-anonymous-viewer .note {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 15px;
        font-style: italic;
    }

    /* Result Section */
    .ig-anonymous-viewer .tools-result {
        width: 100%;
        margin-top: 60px;
    }

    .ig-anonymous-viewer .ig-result {
        margin-top: 30px;
        background: rgba(20, 30, 48, 0.9);
        border-radius: 20px;
        padding: 30px;
        color: #e0e0e0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.5s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Profile Header */
    .ig-anonymous-viewer .ig-profile-header {
        margin-bottom: 40px;
        position: relative;
        background: linear-gradient(to bottom, rgba(0, 188, 212, 0.1), rgba(255, 152, 0, 0.1));
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .profile-header-content {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .ig-anonymous-viewer .profile-image-container {
        position: relative;
        flex-shrink: 0;
    }

    .ig-anonymous-viewer .profile-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s;
        background: linear-gradient(to bottom right, #00BCD4, #FF9800);
        padding: 3px;
        min-height: 150px;
        min-width: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e0e0e0;
        font-size: 60px;
    }

    .ig-anonymous-viewer .profile-image:hover {
        transform: scale(1.03);
    }

    .ig-anonymous-viewer .view-profile-img {
        position: absolute;
        bottom: 5px;
        right: 5px;
        background-color: #F57C00;
        color: white;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(245, 124, 0, 0.4);
        z-index: 5;
    }

    .ig-anonymous-viewer .view-profile-img:hover {
        transform: scale(1.1) rotate(15deg);
        background-color: #EF6C00;
    }

    .ig-anonymous-viewer .profile-info {
        flex: 1;
        text-align: left;
        min-width: 250px;
    }

    .ig-anonymous-viewer .profile-info h3 {
        font-size: 24px;
        margin: 0 0 5px;
        font-weight: 700;
        color: #FF9800;
    }

    .ig-anonymous-viewer .profile-info h4 {
        font-size: 18px;
        margin: 0 0 15px;
        font-weight: 600;
        color: #a0a0a0;
    }
  
  .ig-anonymous-viewer .ad-space {
margin-top: 20px;
text-align: center;
position: relative;
border-radius: 16px;
overflow: hidden;
padding: 6px;
background: linear-gradient(135deg, #00BCD4, #FF9800, #F57C00);
background-size: 300% 300%;
animation: gradientBorder 6s ease infinite;
display: none;
}

    .ig-anonymous-viewer .stats {
        display: flex;
        gap: 25px;
        margin: 15px 0;
    }

    .ig-anonymous-viewer .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ig-anonymous-viewer .stat-value {
        font-size: 20px;
        font-weight: 700;
        color: #00BCD4;
    }

    .ig-anonymous-viewer .stat-label {
        font-size: 14px;
        color: #a0a0a0;
        margin-top: 3px;
    }

    .ig-anonymous-viewer .profile-bio {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        color: #d0d0d0;
        line-height: 1.6;
    }

    .ig-anonymous-viewer .profile-link {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #00BCD4;
        text-decoration: none;
        font-weight: 500;
        margin-top: 10px;
        transition: all 0.3s;
    }

    .ig-anonymous-viewer .profile-link:hover {
        color: #00ACC1;
        text-decoration: underline;
    }

    /* Tabs */
    .ig-anonymous-viewer .ig-tabs {
        display: flex;
        justify-content: center;
        margin: 30px 0;
        gap: 15px;
        flex-wrap: wrap;
    }

    .ig-anonymous-viewer .ig-tabs button {
        background: rgba(255, 255, 255, 0.1);
        color: #d0d0d0;
        border: none;
        font-weight: 600;
        font-size: 15px;
        padding: 12px 24px;
        cursor: pointer;
        border-radius: 50px;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .ig-tabs button i {
        font-size: 16px;
    }

    .ig-anonymous-viewer .ig-tabs button.active {
        background: linear-gradient(135deg, #00BCD4, #FF9800);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        transform: translateY(-2px);
        border: none;
    }

    .ig-anonymous-viewer .ig-tabs button:hover:not(.active) {
        background: rgba(255, 255, 255, 0.15);
        color: #f0f0f0;
        transform: translateY(-2px);
    }

    /* Tab Content */
    .ig-anonymous-viewer .tab-content {
        padding: 20px;
        text-align: center;
        color: #a0a0a0;
        display: none;
    }

    .ig-anonymous-viewer .tab-content.active {
        display: block;
    }

    .ig-anonymous-viewer .no-result {
        border: 1px dashed rgba(255, 255, 255, 0.2);
        padding: 30px 20px;
        margin-top: 30px;
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        border-radius: 12px;
        color: #a0a0a0;
        background: rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .no-result i {
        font-size: 48px;
        color: rgba(255, 255, 255, 0.2);
        margin-bottom: 15px;
        display: block;
    }

    /* Private Account Message */
    .ig-anonymous-viewer .private-account-message {
        background-color: rgba(255, 107, 107, 0.1);
        color: #ff6b6b;
        padding: 20px;
        border-radius: 12px;
        margin-top: 20px;
        text-align: center;
        font-weight: 500;
        border: 1px solid rgba(255, 107, 107, 0.2);
        animation: fadeIn 0.5s ease-out;
    }

    .ig-anonymous-viewer .private-account-message i {
        margin-right: 8px;
        font-size: 18px;
    }

    /* Posts Grid */
    .ig-anonymous-viewer .posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 25px;
    }

    .ig-anonymous-viewer .post-card {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
        animation: slideUp 0.5s ease-out;
        animation-fill-mode: both;
    }

    .ig-anonymous-viewer .post-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .post-img-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
    }

    .ig-anonymous-viewer .post-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .ig-anonymous-viewer .post-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        transition: opacity 0.3s ease;
        z-index: 3;
    }

    .ig-anonymous-viewer .post-img-container:hover .post-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .post-img-container:hover .post-thumb {
        transform: scale(1.08);
    }

    .ig-anonymous-viewer .post-download-btn,
    .ig-anonymous-viewer .post-view-btn {
        background: rgba(255, 255, 255, 0.9);
        color: #F57C00;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-size: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .post-download-btn:hover,
    .ig-anonymous-viewer .post-view-btn:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3);
    }

    .ig-anonymous-viewer .post-download-btn:hover {
        background: #00BCD4;
        color: white;
    }

    .ig-anonymous-viewer .post-view-btn {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 20px;
    }

    .ig-anonymous-viewer .post-view-btn:hover {
        background: white;
        transform: scale(1.1);
    }

    .ig-anonymous-viewer .post-meta {
        padding: 20px;
    }

    .ig-anonymous-viewer .post-stats,
    .ig-anonymous-viewer .reel-stats {
        background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(255, 152, 0, 0.15));
        padding: 8px 12px;
        border-radius: 12px;
        border: 1px solid rgba(0, 188, 212, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .ig-anonymous-viewer .post-stats span,
    .ig-anonymous-viewer .reel-stats span {
        color: #00BCD4;
        font-weight: 600;
        font-size: 13px;
    }

    .ig-anonymous-viewer .post-stats span i,
    .ig-anonymous-viewer .reel-stats span i {
        color: #F57C00;
        margin-right: 4px;
    }

    .ig-anonymous-viewer .post-stats {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .post-stats span {
        font-size: 14px;
        color: #d0d0d0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .ig-anonymous-viewer .post-stats span i {
        color: #F57C00;
    }

    .ig-anonymous-viewer .post-meta .caption {
        font-size: 15px;
        color: #e0e0e0;
        margin-bottom: 10px;
        line-height: 1.5;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ig-anonymous-viewer .post-meta .time {
        font-size: 13px;
        color: #a0a0a0;
        display: block;
        font-weight: 400;
    }

    .ig-anonymous-viewer .post-stats-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Stories Container */
    .ig-anonymous-viewer .stories-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }

    .ig-anonymous-viewer .story-card {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .story-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .story-img-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 9 / 16;
    }

    .ig-anonymous-viewer .story-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .ig-anonymous-viewer .story-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.3s;
        gap: 15px;
        flex-direction: column;
    }

    .ig-anonymous-viewer .story-img-container:hover .story-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .story-img-container:hover .story-thumb {
        transform: scale(1.05);
    }

    .ig-anonymous-viewer .story-download-btn,
    .ig-anonymous-viewer .story-view-btn {
        background: rgba(255, 255, 255, 0.9);
        color: #00BCD4;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-size: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 0;
    }

    .ig-anonymous-viewer .story-download-btn:hover,
    .ig-anonymous-viewer .story-view-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .ig-anonymous-viewer .story-download-btn:hover {
        background: #F57C00;
        color: white;
    }

    .ig-anonymous-viewer .story-view-btn:hover {
        background: #00BCD4;
        color: white;
    }

    .ig-anonymous-viewer .story-meta {
        padding: 12px;
        text-align: center;
    }

    .ig-anonymous-viewer .story-meta .time {
        font-size: 13px;
        color: #a0a0a0;
        font-weight: 400;
    }

    .ig-anonymous-viewer .story-stats-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 152, 0, 0.1));
        padding: 6px 10px;
        border-radius: 8px;
        border: 1px solid rgba(0, 188, 212, 0.2);
    }

    .ig-anonymous-viewer .story-stats-row .time {
        color: #d0d0d0;
        font-weight: 500;
    }

    .ig-anonymous-viewer .story-stats-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Highlights Container */
    .ig-anonymous-viewer .highlights-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 25px;
    }

    .ig-anonymous-viewer .highlight-card {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
        padding: 15px 10px;
        text-align: center;
    }

    .ig-anonymous-viewer .highlight-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .highlight-img-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
        width: 120px;
        height: 120px;
        margin: 0 auto 10px;
        border: 3px solid #F57C00;
        background: linear-gradient(to bottom right, #00BCD4, #FF9800);
        padding: 3px;
    }

    .ig-anonymous-viewer .highlight-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
        border-radius: 50%;
    }

    .ig-anonymous-viewer .highlight-meta {
        padding: 5px;
        text-align: center;
    }

    .ig-anonymous-viewer .highlight-title {
        font-size: 14px;
        color: #e0e0e0;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ig-anonymous-viewer .highlight-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ig-anonymous-viewer .highlight-img-container:hover .highlight-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .highlight-view-btn {
        background-color: white;
        color: #F57C00;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: transform 0.2s;
    }
	
	.ig-anonymous-viewer .tools-result {
	width: 80%;
	margin-top: 60px;
	margin: 0 auto;
}

    .ig-anonymous-viewer .highlight-view-btn:hover {
        transform: scale(1.1);
    }

    /* Reels Grid */
    .ig-anonymous-viewer .reels-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 25px;
    }

    .ig-anonymous-viewer .reel-card {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .reel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .reel-img-container {
        position: relative;
        overflow: hidden;
        aspect-ratio: 9 / 16;
    }

    .ig-anonymous-viewer .reel-thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s;
    }

    .ig-anonymous-viewer .reel-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: all 0.3s;
        gap: 15px;
        flex-direction: column;
    }

    .ig-anonymous-viewer .reel-img-container:hover .reel-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .reel-img-container:hover .reel-thumb {
        transform: scale(1.05);
    }

    .ig-anonymous-viewer .reel-download-btn,
    .ig-anonymous-viewer .reel-view-btn {
        background: rgba(255, 255, 255, 0.9);
        color: #00BCD4;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
        border: none;
        font-size: 16px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .reel-download-btn:hover {
        background: #F57C00;
        color: white;
    }

    .ig-anonymous-viewer .reel-view-btn:hover {
        background: #00BCD4;
        color: #fff;
    }

    .ig-anonymous-viewer .reel-meta {
        padding: 20px;
    }

    .ig-anonymous-viewer .reel-meta .caption {
        font-size: 15px;
        color: #e0e0e0;
        margin-bottom: 10px;
        line-height: 1.5;
        font-weight: 500;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ig-anonymous-viewer .reel-stats,
    .ig-anonymous-viewer .post-stats {
        background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(255, 152, 0, 0.15));
        padding: 8px 12px;
        border-radius: 12px;
        border: 1px solid rgba(0, 188, 212, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .ig-anonymous-viewer .reel-stats span,
    .ig-anonymous-viewer .post-stats span {
        color: #00BCD4;
        font-weight: 600;
        font-size: 13px;
    }

    .ig-anonymous-viewer .reel-stats span i,
    .ig-anonymous-viewer .post-stats span i {
        color: #F57C00;
        margin-right: 4px;
    }

    .ig-anonymous-viewer .reel-stats {
        display: flex;
        gap: 15px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .reel-stats span {
        font-size: 13px;
        color: #d0d0d0;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .ig-anonymous-viewer .reel-stats span i {
        color: #F57C00;
    }

    .ig-anonymous-viewer .reel-meta .time {
        font-size: 13px;
        color: #a0a0a0;
        display: block;
        font-weight: 400;
    }

    .ig-anonymous-viewer .reel-stats-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Video Elements */
    .ig-anonymous-viewer .post-video,
    .ig-anonymous-viewer .story-video,
    .ig-anonymous-viewer .reel-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
    }

    .ig-anonymous-viewer .post-fullscreen-btn,
    .ig-anonymous-viewer .story-fullscreen-btn,
    .ig-anonymous-viewer .reel-fullscreen-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 16px;
        z-index: 4;
    }

    .ig-anonymous-viewer .post-fullscreen-btn:hover,
    .ig-anonymous-viewer .story-fullscreen-btn:hover,
    .ig-anonymous-viewer .reel-fullscreen-btn:hover {
        background: white;
        transform: scale(1.1);
    }

    /* Media Type Indicators */
    .ig-anonymous-viewer .media-type-indicator {
        position: absolute;
        top: 8px;
        left: 8px;
        background-color: rgba(0, 0, 0, 0.8);
        color: white;
        border-radius: 4px;
        padding: 4px 8px;
        font-size: 11px;
        font-weight: bold;
        z-index: 5;
        display: flex;
        align-items: center;
        gap: 4px;
        pointer-events: none;
    }

    .ig-anonymous-viewer .video-indicator {
        background-color: rgba(245, 124, 0, 0.9);
    }

    .ig-anonymous-viewer .image-indicator {
        background-color: rgba(0, 188, 212, 0.9);
    }

    /* Modal Styles */
    .ig-anonymous-viewer .ipgv-profile-img-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .ig-anonymous-viewer .ipgv-profile-img-modal.active {
        opacity: 1;
        visibility: visible;
    }

    .ig-anonymous-viewer .ipgv-modal-backdrop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        cursor: pointer;
    }

    .ig-anonymous-viewer .ipgv-modal-content {
        position: relative;
        max-width: 90vw;
        max-height: 90vh;
        background-color: #1a1a2e;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transform: scale(0.8);
        transition: transform 0.3s ease;
        z-index: 10001;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ig-anonymous-viewer .ipgv-profile-img-modal.active .ipgv-modal-content {
        transform: scale(1);
    }

    .ig-anonymous-viewer .ipgv-modal-img {
        display: block;
        width: 100%;
        max-width: 500px;
        height: auto;
        max-height: 70vh;
        object-fit: contain;
    }

    .ig-anonymous-viewer .ipgv-modal-actions {
        display: flex;
        justify-content: center;
        padding: 20px;
        background-color: rgba(20, 30, 48, 0.9);
    }

    .ig-anonymous-viewer .ipgv-modal-download-btn {
        background: linear-gradient(135deg, #00BCD4, #FF9800);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 24px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .ig-anonymous-viewer .ipgv-modal-download-btn:hover {
        background: linear-gradient(135deg, #00ACC1, #FB8C00);
        transform: translateY(-1px);
    }

    .ig-anonymous-viewer .ipgv-close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
        z-index: 10002;
    }

    .ig-anonymous-viewer .ipgv-close-modal:hover {
        background-color: rgba(255, 107, 107, 0.8);
        transform: scale(1.1);
    }

    .ig-anonymous-viewer body.ipgv-modal-open {
        overflow: hidden;
    }

    /* Fixed Reel Controls - Always Visible Play and Fullscreen */
    .ig-anonymous-viewer .reel-img-container .reel-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .reel-img-container .reel-view-btn {
        opacity: 1;
        visibility: visible;
    }

    .ig-anonymous-viewer .reel-img-container .reel-fullscreen-btn {
        opacity: 1;
        visibility: visible;
        display: flex;
    }

    .ig-anonymous-viewer .reel-img-container:hover .reel-overlay {
        opacity: 1;
    }

    .ig-anonymous-viewer .reel-video.playing {
        display: block;
    }

    .ig-anonymous-viewer .reel-thumb.hidden {
        display: none;
    }

    /* Skeleton Loaders */
    @keyframes shimmer {
        0% { background-position: -1000px 0; }
        100% { background-position: 1000px 0; }
    }

    .ig-anonymous-viewer .skeleton-profile {
        width: 100%;
        animation: fadeIn 0.5s ease-out;
    }

    .ig-anonymous-viewer .skeleton-profile-header {
        display: flex;
        gap: 30px;
        padding: 30px;
        background: rgba(20, 30, 48, 0.7);
        border-radius: 16px;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .skeleton-avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        flex-shrink: 0;
        border: 4px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .ig-anonymous-viewer .skeleton-profile-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .ig-anonymous-viewer .skeleton-username {
        height: 28px;
        width: 180px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 6px;
    }

    .ig-anonymous-viewer .skeleton-fullname {
        height: 20px;
        width: 140px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 6px;
    }

    .ig-anonymous-viewer .skeleton-stats {
        display: flex;
        gap: 25px;
        margin-top: 10px;
    }

    .ig-anonymous-viewer .skeleton-stat {
        height: 40px;
        width: 60px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 6px;
    }

    .ig-anonymous-viewer .skeleton-bio {
        height: 60px;
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 6px;
        margin-bottom: 30px;
    }

    .ig-anonymous-viewer .skeleton-tabs {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .ig-anonymous-viewer .skeleton-tab {
        height: 40px;
        width: 100px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 50px;
    }

    /* Posts Skeleton */
    .ig-anonymous-viewer .skeleton-posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .ig-anonymous-viewer .skeleton-post {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(20, 30, 48, 0.7);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .skeleton-post-img {
        aspect-ratio: 1 / 1;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
    }

    .ig-anonymous-viewer .skeleton-post-meta {
        padding: 20px;
    }

    .ig-anonymous-viewer .skeleton-post-stats {
        display: flex;
        gap: 15px;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .skeleton-post-stat {
        height: 16px;
        width: 60px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
    }

    .ig-anonymous-viewer .skeleton-post-caption {
        height: 16px;
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .skeleton-post-caption-short {
        height: 16px;
        width: 70%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .skeleton-post-time {
        height: 14px;
        width: 80px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
    }

    /* Stories Skeleton */
    .ig-anonymous-viewer .skeleton-stories-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .ig-anonymous-viewer .skeleton-story {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(20, 30, 48, 0.7);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .skeleton-story-img {
        aspect-ratio: 9 / 16;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
    }

    .ig-anonymous-viewer .skeleton-story-meta {
        padding: 12px;
        text-align: center;
    }

    .ig-anonymous-viewer .skeleton-story-time {
        height: 14px;
        width: 80px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin: 0 auto;
    }

    /* Highlights Skeleton */
    .ig-anonymous-viewer .skeleton-highlights-container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }

    .ig-anonymous-viewer .skeleton-highlight {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(20, 30, 48, 0.7);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.05);
        padding: 15px 10px;
        text-align: center;
    }

    .ig-anonymous-viewer .skeleton-highlight-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        margin: 0 auto 10px;
        border: 3px solid #F57C00;
    }

    .ig-anonymous-viewer .skeleton-highlight-title {
        height: 16px;
        width: 80px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin: 0 auto;
    }

    /* Reels Skeleton */
    .ig-anonymous-viewer .skeleton-reels-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }

    .ig-anonymous-viewer .skeleton-reel {
        border-radius: 16px;
        overflow: hidden;
        background: rgba(20, 30, 48, 0.7);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ig-anonymous-viewer .skeleton-reel-img {
        aspect-ratio: 9 / 16;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
    }

    .ig-anonymous-viewer .skeleton-reel-meta {
        padding: 20px;
    }

    .ig-anonymous-viewer .skeleton-reel-caption {
        height: 16px;
        width: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .skeleton-reel-caption-short {
        height: 16px;
        width: 70%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .skeleton-reel-stats {
        display: flex;
        gap: 15px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .skeleton-reel-stat {
        height: 16px;
        width: 60px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
    }

    .ig-anonymous-viewer .skeleton-reel-time {
        height: 14px;
        width: 80px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 75%);
        background-size: 1000px 100%;
        animation: shimmer 2s infinite linear;
        border-radius: 4px;
    }

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

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

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .ig-anonymous-viewer .ig-header h1 {
            font-size: 28px;
        }

        .ig-anonymous-viewer .ig-header p {
            font-size: 15px;
        }

        .ig-anonymous-viewer .ig-input-area {
            padding: 20px 15px;
            flex-direction: column;
        }

        .ig-anonymous-viewer .ig-icon {
            width: 100%;
            text-align: left;
            margin-left: 0;
        }

        .ig-anonymous-viewer .ig-input-area input {
            margin: 0 0 15px 0;
            width: 100%;
            min-width: 100%;
        }

        .ig-anonymous-viewer .paste-btn {
            display: none;
        }

        .ig-anonymous-viewer .view-btn {
            width: 100%;
            justify-content: center;
        }

        .ig-anonymous-viewer .profile-header-content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .ig-anonymous-viewer .profile-info {
            text-align: center;
        }

        .ig-anonymous-viewer .stats {
            justify-content: center;
        }

        .ig-anonymous-viewer .posts-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 15px;
        }

        .ig-anonymous-viewer .stories-container {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }

        .ig-anonymous-viewer .highlights-container {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }

        .ig-anonymous-viewer .reels-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }

        .ig-anonymous-viewer .post-meta .caption,
        .ig-anonymous-viewer .reel-meta .caption {
            font-size: 14px;
        }

        .ig-anonymous-viewer .ig-tabs button {
            padding: 10px 16px;
            font-size: 14px;
        }

        .ig-anonymous-viewer .ipgv-modal-content {
            max-width: 95vw;
            max-height: 85vh;
            margin: 20px;
        }

        .ig-anonymous-viewer .ipgv-modal-img {
            max-height: 60vh;
        }

        .ig-anonymous-viewer .ipgvmodal-actions {
            padding: 15px;
        }

        .ig-anonymous-viewer .ipgv-modal-download-btn {
            padding: 10px 20px;
            font-size: 13px;
        }

        .ig-anonymous-viewer .skeleton-profile-header {
            flex-direction: column;
            align-items: center;
        }

        .ig-anonymous-viewer .skeleton-avatar {
            margin-bottom: 20px;
        }

        .ig-anonymous-viewer .skeleton-username,
        .ig-anonymous-viewer .skeleton-fullname {
            margin: 0 auto;
        }

        .ig-anonymous-viewer .skeleton-stats {
            justify-content: center;
        }

        .ig-anonymous-viewer .skeleton-posts-grid {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        }

        .ig-anonymous-viewer .skeleton-stories-container {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }

        .ig-anonymous-viewer .skeleton-highlights-container {
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        }

        .ig-anonymous-viewer .skeleton-reels-grid {
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        }
    }

    .ig-anonymous-viewer .ig-input-area input {
flex-grow: 1;
padding: 14px 18px;
font-size: 16px;
border: none;
outline: none;
min-width: 200px;
background: rgba(255, 255, 255, 0.9);
border-radius: 12px;
transition: all 0.3s;
color: #1a1a2e;
font-weight: 500;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
margin-bottom: 18px;
}

    /* Responsive Design */

/* For devices smaller than 992px */
@media (max-width: 991px) {
.ig-anonymous-viewer .main-contain {
    padding: 15px;
}

.ig-anonymous-viewer .ig-tool-wrapper {
    padding: 25px;
    margin: 15px auto;
}

.ig-anonymous-viewer .ig-header h1 {
    font-size: 32px;
}

.ig-anonymous-viewer .ig-header p {
    font-size: 16px;
    margin: 10px 0 20px;
    max-width: 90%;
}

.ig-anonymous-viewer .ig-input-area {
    padding: 20px 15px;
    flex-direction: column;
    gap: 10px;
}

.ig-anonymous-viewer .ig-icon {
    width: 100%;
    text-align: left;
    margin-bottom: 5px;
}

.ig-anonymous-viewer .ig-input-area input {
    width: 100%;
    min-width: unset;
    margin-bottom: 10px;
}

.ig-anonymous-viewer .paste-btn,
.ig-anonymous-viewer .view-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
}

.ig-anonymous-viewer .paste-btn {
    order: 2; /* Move paste button below view button on smaller screens */
}

.ig-anonymous-viewer .view-btn {
    order: 1;
    margin-bottom: 10px;
}

.ig-anonymous-viewer .ig-profile-header {
    padding: 25px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ig-anonymous-viewer .profile-header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.ig-anonymous-viewer .profile-image-container {
    margin-bottom: 15px;
}

.ig-anonymous-viewer .profile-image {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    font-size: 50px;
}

.ig-anonymous-viewer .view-profile-img {
    width: 32px;
    height: 32px;
    font-size: 14px;
    bottom: 0;
    right: 0;
}

.ig-anonymous-viewer .profile-info {
    text-align: center;
    min-width: unset;
}

.ig-anonymous-viewer .profile-info h3 {
    font-size: 22px;
    margin-bottom: 3px;
}

.ig-anonymous-viewer .profile-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.ig-anonymous-viewer .stats {
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.ig-anonymous-viewer .stat-value {
    font-size: 18px;
}

.ig-anonymous-viewer .stat-label {
    font-size: 13px;
}

.ig-anonymous-viewer .profile-bio {
    margin-top: 20px;
    padding-top: 15px;
    font-size: 14px;
    text-align: center;
}

.ig-anonymous-viewer .profile-link {
    font-size: 14px;
}

.ig-anonymous-viewer .ig-tabs {
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 10px;
}

.ig-anonymous-viewer .ig-tabs button {
    padding: 10px 18px;
    font-size: 14px;
    width: auto;
    flex-grow: 1;
    max-width: fit-content;
}

.ig-anonymous-viewer .tab-content {
    padding: 15px 0;
}

.ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ig-anonymous-viewer .post-card {
    border-radius: 14px;
}

.ig-anonymous-viewer .post-meta {
    padding: 15px;
}

.ig-anonymous-viewer .post-meta .caption {
    font-size: 14px;
    -webkit-line-clamp: 3;
}

.ig-anonymous-viewer .post-stats span,
.ig-anonymous-viewer .reel-stats span {
    font-size: 12px;
}

.ig-anonymous-viewer .post-download-btn,
.ig-anonymous-viewer .post-view-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.ig-anonymous-viewer .stories-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ig-anonymous-viewer .story-card {
    border-radius: 14px;
}

.ig-anonymous-viewer .story-download-btn,
.ig-anonymous-viewer .story-view-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.ig-anonymous-viewer .highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.ig-anonymous-viewer .highlight-card {
    padding: 10px 8px;
    border-radius: 14px;
}

.ig-anonymous-viewer .highlight-img-container {
    width: 90px;
    height: 90px;
}

.ig-anonymous-viewer .highlight-title {
    font-size: 13px;
}

.ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ig-anonymous-viewer .reel-card {
    border-radius: 14px;
}

.ig-anonymous-viewer .reel-meta {
    padding: 15px;
}

.ig-anonymous-viewer .reel-meta .caption {
    font-size: 14px;
    -webkit-line-clamp: 3;
}

.ig-anonymous-viewer .reel-download-btn,
.ig-anonymous-viewer .reel-view-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
}

.ig-anonymous-viewer .post-fullscreen-btn,
.ig-anonymous-viewer .story-fullscreen-btn,
.ig-anonymous-viewer .reel-fullscreen-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

.ig-anonymous-viewer .ipgv-modal-content {
    max-width: 95vw;
    max-height: 85vh;
}

.ig-anonymous-viewer .ipgv-modal-img {
    max-height: 70vh;
    width: auto;
}

.ig-anonymous-viewer .ipgv-modal-actions {
    padding: 15px;
}

.ig-anonymous-viewer .ipgv-modal-download-btn {
    padding: 10px 20px;
    font-size: 13px;
}

.ig-anonymous-viewer .ipgv-close-modal {
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: 10px;
    right: 10px;
}

/* Skeleton Loaders */
.ig-anonymous-viewer .skeleton-profile-header {
    padding: 25px;
    gap: 20px;
}
.ig-anonymous-viewer .skeleton-avatar {
    width: 120px;
    height: 120px;
}
.ig-anonymous-viewer .skeleton-username {
    height: 25px;
    width: 160px;
}
.ig-anonymous-viewer .skeleton-fullname {
    height: 18px;
    width: 120px;
}
.ig-anonymous-viewer .skeleton-stats {
    gap: 20px;
}
.ig-anonymous-viewer .skeleton-stat {
    height: 35px;
    width: 55px;
}
.ig-anonymous-viewer .skeleton-bio {
    height: 50px;
}
.ig-anonymous-viewer .skeleton-tab {
    height: 38px;
    width: 90px;
}
.ig-anonymous-viewer .skeleton-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.ig-anonymous-viewer .skeleton-post-meta {
    padding: 15px;
}
.ig-anonymous-viewer .skeleton-post-caption, .ig-anonymous-viewer .skeleton-post-caption-short {
    height: 15px;
}
.ig-anonymous-viewer .skeleton-post-time {
    height: 13px;
    width: 70px;
}
.ig-anonymous-viewer .skeleton-stories-container {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.ig-anonymous-viewer .skeleton-story-time {
    height: 13px;
    width: 70px;
}
.ig-anonymous-viewer .skeleton-highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.ig-anonymous-viewer .skeleton-highlight-img {
    width: 90px;
    height: 90px;
}
.ig-anonymous-viewer .skeleton-highlight-title {
    height: 15px;
    width: 70px;
}
.ig-anonymous-viewer .skeleton-reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.ig-anonymous-viewer .skeleton-reel-meta {
    padding: 15px;
}
.ig-anonymous-viewer .skeleton-reel-caption, .ig-anonymous-viewer .skeleton-reel-caption-short {
    height: 15px;
}
.ig-anonymous-viewer .skeleton-reel-time {
    height: 13px;
    width: 70px;
}
  .ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 20px !important;
}
}

/* For devices smaller than 768px */
@media (max-width: 767px) {
.ig-anonymous-viewer .ig-tool-wrapper {
    padding: 20px;
    margin: 10px auto;
    border-radius: 15px;
}

.ig-anonymous-viewer .ig-header h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ig-anonymous-viewer .ig-header p {
    font-size: 15px;
    margin: 10px 0 15px;
    max-width: 95%;
}

.ig-anonymous-viewer .ig-input-area {
    padding: 15px 10px;
    border-radius: 12px;
    gap: 8px;
}

.ig-anonymous-viewer .ig-icon {
    font-size: 14px;
    margin-bottom: 5px;
}

.ig-anonymous-viewer .ig-input-area input {
    padding: 12px 15px;
    font-size: 14px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.ig-anonymous-viewer .paste-btn,
.ig-anonymous-viewer .view-btn {
    padding: 12px 18px;
    font-size: 14px;
    border-radius: 10px;
}

.ig-anonymous-viewer .view-btn {
    margin-bottom: 8px;
}

.ig-anonymous-viewer .error-container {
    bottom: -50px;
    left: 10px;
    right: 10px;
}

.ig-anonymous-viewer #error-message {
    font-size: 13px;
    margin-top: 15px;
}

.ig-anonymous-viewer .ig-profile-header {
    padding: 20px;
    border-radius: 14px;
}

.ig-anonymous-viewer .profile-image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    font-size: 40px;
    border-width: 3px;
}

.ig-anonymous-viewer .view-profile-img {
    width: 28px;
    height: 28px;
    font-size: 12px;
    bottom: -5px;
    right: -5px;
}

.ig-anonymous-viewer .profile-info h3 {
    font-size: 20px;
    margin-bottom: 0;
}

.ig-anonymous-viewer .profile-info h4 {
    font-size: 15px;
    margin-bottom: 8px;
}

.ig-anonymous-viewer .stats {
    gap: 15px;
    margin: 8px 0;
}

.ig-anonymous-viewer .stat-value {
    font-size: 16px;
}

.ig-anonymous-viewer .stat-label {
    font-size: 12px;
}

.ig-anonymous-viewer .profile-bio {
    margin-top: 15px;
    padding-top: 10px;
    font-size: 13px;
}

.ig-anonymous-viewer .profile-link {
    font-size: 13px;
}

.ig-anonymous-viewer .ig-tabs {
    margin: 15px 0;
    gap: 8px;
}

.ig-anonymous-viewer .ig-tabs button {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 40px;
}

.ig-anonymous-viewer .tab-content {
    padding: 10px 0;
}

.ig-anonymous-viewer .no-result {
    padding: 20px 15px;
    margin-top: 20px;
    font-size: 14px;
    border-radius: 10px;
}

.ig-anonymous-viewer .no-result i {
    font-size: 40px;
    margin-bottom: 10px;
}

.ig-anonymous-viewer .private-account-message {
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
}

.ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ig-anonymous-viewer .post-card {
    border-radius: 12px;
}

.ig-anonymous-viewer .post-meta {
    padding: 12px;
}

.ig-anonymous-viewer .post-meta .caption {
    font-size: 13px;
    margin-bottom: 8px;
}

.ig-anonymous-viewer .post-stats span {
    font-size: 11px;
}

.ig-anonymous-viewer .post-download-btn,
.ig-anonymous-viewer .post-view-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.ig-anonymous-viewer .stories-container {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.ig-anonymous-viewer .story-card {
    border-radius: 12px;
}

.ig-anonymous-viewer .story-download-btn,
.ig-anonymous-viewer .story-view-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
}

.ig-anonymous-viewer .highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.ig-anonymous-viewer .highlight-card {
    padding: 8px 5px;
    border-radius: 12px;
}

.ig-anonymous-viewer .highlight-img-container {
    width: 70px;
    height: 70px;
    border-width: 2px;
}

.ig-anonymous-viewer .highlight-title {
    font-size: 12px;
}

.ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.ig-anonymous-viewer .reel-card {
    border-radius: 12px;
}

.ig-anonymous-viewer .reel-meta {
    padding: 12px;
}

.ig-anonymous-viewer .reel-meta .caption {
    font-size: 13px;
    margin-bottom: 8px;
}

.ig-anonymous-viewer .reel-stats span {
    font-size: 11px;
}

.ig-anonymous-viewer .reel-download-btn,
.ig-anonymous-viewer .reel-view-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
}

.ig-anonymous-viewer .post-fullscreen-btn,
.ig-anonymous-viewer .story-fullscreen-btn,
.ig-anonymous-viewer .reel-fullscreen-btn {
    width: 32px;
    height: 32px;
    font-size: 13px;
    top: 8px;
    right: 8px;
}

.ig-anonymous-viewer .media-type-indicator {
    font-size: 10px;
    padding: 3px 6px;
    top: 6px;
    left: 6px;
}

.ig-anonymous-viewer .ipgv-modal-content {
    margin: 10px;
}

.ig-anonymous-viewer .ipgv-modal-img {
    max-height: 60vh;
}

.ig-anonymous-viewer .ipgv-modal-actions {
    padding: 10px;
}

.ig-anonymous-viewer .ipgv-modal-download-btn {
    padding: 8px 16px;
    font-size: 12px;
    gap: 6px;
}

.ig-anonymous-viewer .ipgv-close-modal {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 8px;
    right: 8px;
}

/* Skeleton Loaders */
.ig-anonymous-viewer .skeleton-profile-header {
    padding: 20px;
    gap: 15px;
}
.ig-anonymous-viewer .skeleton-avatar {
    width: 100px;
    height: 100px;
}
.ig-anonymous-viewer .skeleton-username {
    height: 22px;
    width: 140px;
}
.ig-anonymous-viewer .skeleton-fullname {
    height: 16px;
    width: 100px;
}
.ig-anonymous-viewer .skeleton-stats {
    gap: 15px;
}
.ig-anonymous-viewer .skeleton-stat {
    height: 30px;
    width: 50px;
}
.ig-anonymous-viewer .skeleton-bio {
    height: 40px;
}
.ig-anonymous-viewer .skeleton-tab {
    height: 35px;
    width: 80px;
}
.ig-anonymous-viewer .skeleton-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.ig-anonymous-viewer .skeleton-post-meta {
    padding: 12px;
}
.ig-anonymous-viewer .skeleton-post-caption, .ig-anonymous-viewer .skeleton-post-caption-short {
    height: 14px;
}
.ig-anonymous-viewer .skeleton-post-time {
    height: 12px;
    width: 60px;
}
.ig-anonymous-viewer .skeleton-stories-container {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}
.ig-anonymous-viewer .skeleton-story-time {
    height: 12px;
    width: 60px;
}
.ig-anonymous-viewer .skeleton-highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
}
.ig-anonymous-viewer .skeleton-highlight-img {
    width: 70px;
    height: 70px;
}
.ig-anonymous-viewer .skeleton-highlight-title {
    height: 14px;
    width: 60px;
}
.ig-anonymous-viewer .skeleton-reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.ig-anonymous-viewer .skeleton-reel-meta {
    padding: 12px;
}
.ig-anonymous-viewer .skeleton-reel-caption, .ig-anonymous-viewer .skeleton-reel-caption-short {
    height: 14px;
}
.ig-anonymous-viewer .skeleton-reel-time {
    height: 12px;
    width: 60px;
}
  .ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 20px !important;
}
	.ig-anonymous-viewer .posts-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	margin-top: 10px;
}
	.ig-anonymous-viewer .ig-header h1 span {
	color: #FF9800;
	position: relative;
	display: inline-block;
	margin-top: 30px;
}
}

/* For devices smaller than 600px */
@media (max-width: 599px) {
.ig-anonymous-viewer .ig-tool-wrapper {
    padding: 15px;
    border-radius: 12px;
}

.ig-anonymous-viewer .ig-header h1 {
    font-size: 24px;
}

.ig-anonymous-viewer .ig-header p {
    font-size: 13px;
    margin: 8px 0 12px;
}

.ig-anonymous-viewer .ig-input-area {
    padding: 12px 8px;
    border-radius: 10px;
}

.ig-anonymous-viewer .ig-icon {
    font-size: 13px;
    margin-bottom: 3px;
}

.ig-anonymous-viewer .ig-input-area input {
    padding: 10px 12px;
    font-size: 13px;
    border-radius: 8px;
}

.ig-anonymous-viewer .paste-btn,
.ig-anonymous-viewer .view-btn {
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 8px;
}

.ig-anonymous-viewer .ig-profile-header {
    padding: 15px;
    border-radius: 12px;
}

.ig-anonymous-viewer .profile-image {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    font-size: 30px;
    border-width: 2px;
}

.ig-anonymous-viewer .view-profile-img {
    width: 24px;
    height: 24px;
    font-size: 10px;
    bottom: -8px;
    right: -8px;
}

.ig-anonymous-viewer .profile-info h3 {
    font-size: 18px;
}

.ig-anonymous-viewer .profile-info h4 {
    font-size: 14px;
}

.ig-anonymous-viewer .stats {
    gap: 10px;
    margin: 5px 0;
}

.ig-anonymous-viewer .stat-value {
    font-size: 14px;
}

.ig-anonymous-viewer .stat-label {
    font-size: 11px;
}

.ig-anonymous-viewer .profile-bio {
    margin-top: 10px;
    padding-top: 8px;
    font-size: 12px;
}

.ig-anonymous-viewer .profile-link {
    font-size: 12px;
}

.ig-anonymous-viewer .ig-tabs {
    margin: 10px 0;
    gap: 6px;
}

.ig-anonymous-viewer .ig-tabs button {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 30px;
}

.ig-anonymous-viewer .no-result {
    padding: 15px 10px;
    margin-top: 15px;
    font-size: 13px;
    border-radius: 8px;
}

.ig-anonymous-viewer .no-result i {
    font-size: 30px;
    margin-bottom: 8px;
}

.ig-anonymous-viewer .private-account-message {
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
}

.ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.ig-anonymous-viewer .post-card {
    border-radius: 10px;
}

.ig-anonymous-viewer .post-meta {
    padding: 10px;
}

.ig-anonymous-viewer .post-meta .caption {
    font-size: 12px;
    margin-bottom: 5px;
    -webkit-line-clamp: 3;
}

.ig-anonymous-viewer .post-stats span {
    font-size: 10px;
}

.ig-anonymous-viewer .post-download-btn,
.ig-anonymous-viewer .post-view-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.ig-anonymous-viewer .stories-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.ig-anonymous-viewer .story-card {
    border-radius: 10px;
}

.ig-anonymous-viewer .story-download-btn,
.ig-anonymous-viewer .story-view-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.ig-anonymous-viewer .highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.ig-anonymous-viewer .highlight-card {
    padding: 6px 4px;
    border-radius: 10px;
}

.ig-anonymous-viewer .highlight-img-container {
    width: 60px;
    height: 60px;
    border-width: 2px;
}

.ig-anonymous-viewer .highlight-title {
    font-size: 11px;
}

.ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.ig-anonymous-viewer .reel-card {
    border-radius: 10px;
}

.ig-anonymous-viewer .reel-meta {
    padding: 10px;
}

.ig-anonymous-viewer .reel-meta .caption {
    font-size: 12px;
    margin-bottom: 5px;
}

.ig-anonymous-viewer .reel-stats span {
    font-size: 10px;
}

.ig-anonymous-viewer .reel-download-btn,
.ig-anonymous-viewer .reel-view-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
}

.ig-anonymous-viewer .post-fullscreen-btn,
.ig-anonymous-viewer .story-fullscreen-btn,
.ig-anonymous-viewer .reel-fullscreen-btn {
    width: 28px;
    height: 28px;
    font-size: 12px;
    top: 6px;
    right: 6px;
}

.ig-anonymous-viewer .media-type-indicator {
    font-size: 9px;
    padding: 2px 5px;
    top: 5px;
    left: 5px;
}

/* Modal */
.ig-anonymous-viewer .ipgv-modal-content {
    max-width: 98vw;
    max-height: 80vh;
    margin: 5px;
}

.ig-anonymous-viewer .ipgv-modal-img {
    max-height: 50vh;
}

.ig-anonymous-viewer .ipgv-modal-actions {
    padding: 8px;
}

.ig-anonymous-viewer .ipgv-modal-download-btn {
    padding: 6px 12px;
    font-size: 11px;
    gap: 5px;
}

.ig-anonymous-viewer .ipgv-close-modal {
    width: 24px;
    height: 24px;
    font-size: 11px;
    top: 6px;
    right: 6px;
}

/* Skeleton Loaders */
.ig-anonymous-viewer .skeleton-profile-header {
    padding: 15px;
    gap: 10px;
}
.ig-anonymous-viewer .skeleton-avatar {
    width: 80px;
    height: 80px;
}
.ig-anonymous-viewer .skeleton-username {
    height: 20px;
    width: 120px;
}
.ig-anonymous-viewer .skeleton-fullname {
    height: 14px;
    width: 80px;
}
.ig-anonymous-viewer .skeleton-stats {
    gap: 10px;
}
.ig-anonymous-viewer .skeleton-stat {
    height: 25px;
    width: 45px;
}
.ig-anonymous-viewer .skeleton-bio {
    height: 35px;
}
.ig-anonymous-viewer .skeleton-tab {
    height: 30px;
    width: 70px;
}
.ig-anonymous-viewer .skeleton-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.ig-anonymous-viewer .skeleton-post-meta {
    padding: 10px;
}
.ig-anonymous-viewer .skeleton-post-caption, .ig-anonymous-viewer .skeleton-post-caption-short {
    height: 12px;
}
.ig-anonymous-viewer .skeleton-post-time {
    height: 10px;
    width: 50px;
}
.ig-anonymous-viewer .skeleton-stories-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.ig-anonymous-viewer .skeleton-story-time {
    height: 10px;
    width: 50px;
}
.ig-anonymous-viewer .skeleton-highlights-container {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
}
.ig-anonymous-viewer .skeleton-highlight-img {
    width: 60px;
    height: 60px;
}
.ig-anonymous-viewer .skeleton-highlight-title {
    height: 12px;
    width: 50px;
}
.ig-anonymous-viewer .skeleton-reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}
.ig-anonymous-viewer .skeleton-reel-meta {
    padding: 10px;
}
.ig-anonymous-viewer .skeleton-reel-caption, .ig-anonymous-viewer .skeleton-reel-caption-short {
    height: 12px;
}
.ig-anonymous-viewer .skeleton-reel-time {
    height: 10px;
    width: 50px;
}
  .ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 20px !important;
}
  .ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
	.ig-anonymous-viewer .posts-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	margin-top: 10px;
}
	.ig-anonymous-viewer .ig-header h1 span {
	color: #FF9800;
	position: relative;
	display: inline-block;
	margin-top: 30px;
}
}

/* For devices smaller than 400px */
@media (max-width: 399px) {
.ig-anonymous-viewer .ig-tool-wrapper {
    padding: 12px;
}

.ig-anonymous-viewer .ig-header h1 {
    font-size: 20px;
}

.ig-anonymous-viewer .ig-header p {
    font-size: 12px;
}

.ig-anonymous-viewer .ig-input-area {
    padding: 10px 5px;
}

.ig-anonymous-viewer .ig-input-area input {
    padding: 8px 10px;
    font-size: 12px;
}

.ig-anonymous-viewer .paste-btn,
.ig-anonymous-viewer .view-btn {
    padding: 8px 12px;
    font-size: 12px;
}

.ig-anonymous-viewer .ig-profile-header {
    padding: 12px;
}

.ig-anonymous-viewer .profile-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    font-size: 25px;
    border-width: 2px;
}

.ig-anonymous-viewer .profile-info h3 {
    font-size: 16px;
}

.ig-anonymous-viewer .profile-info h4 {
    font-size: 13px;
}

.ig-anonymous-viewer .stats {
    gap: 8px;
}

.ig-anonymous-viewer .stat-value {
    font-size: 13px;
}

.ig-anonymous-viewer .stat-label {
    font-size: 10px;
}

.ig-anonymous-viewer .profile-bio {
    font-size: 11px;
}

.ig-anonymous-viewer .profile-link {
    font-size: 11px;
}

.ig-anonymous-viewer .ig-tabs button {
    padding: 6px 10px;
    font-size: 11px;
}

.ig-anonymous-viewer .no-result {
    padding: 12px 8px;
    font-size: 12px;
}

.ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
}

.ig-anonymous-viewer .post-meta {
    padding: 8px;
}
  .ig-anonymous-viewer .reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
    margin-top: 20px !important;
}
  .ig-anonymous-viewer .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
	.ig-anonymous-viewer .posts-grid {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	margin-top: 10px;
}
	.ig-anonymous-viewer .ig-header h1 span {
	color: #FF9800;
	position: relative;
	display: inline-block;
	margin-top: 30px;
}

  }

/* Base Reset */
.ia-supportive-alt {
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #220657; /* Tool Midnight Blue */
}

/* Force standard solid icons */
.ia-supportive-alt i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}

.content-limit {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-sec { padding: 90px 0; width: 100%; }
.bg-white { background-color: #ffffff; }
.bg-light-blue { background-color: #f0f7ff; }

/* Centered Header Section */
.heading-area { text-align: center; margin-bottom: 50px; }

.wh-main-title {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #5235DD; /* Tool Primary Purple */
    letter-spacing: -0.02em;
}

.wh-description {
    font-size: clamp(14px, 3vw, 17px);
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

/* 4 Column Card Grid */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 35px 20px;
    border-radius: 10px; /* Radius requirement */
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #220657;
}

.feature-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.icon-wrap, .icon-box, .icon-pop {
    font-size: 32px;
    margin-bottom: 22px;
    display: inline-block;
    transition: all 0.4s ease;
}

/* --- Section 1: 3D Perspective + Icon Parallax --- */
.bg-white .feature-card { background-color: #f0f7ff; }

.v1-hover:hover {
    transform: perspective(1000px) rotateX(10deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 6, 87, 0.1);
}

.v1-hover:hover .float-anim {
    transform: translateZ(30px) translateY(-5px);
    color: #FF9800; /* Tool Accent Orange */
}

/* --- Section 2: Border Glow + Icon Pulse --- */
.bg-light-blue .feature-card { background-color: #ffffff; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }

.v2-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 0 2px #5235DD, 0 10px 25px rgba(82, 53, 221, 0.1);
}

.v2-hover:hover .pulse-anim {
    animation: iconPulse 0.8s infinite alternate;
    color: #5235DD;
}

@keyframes iconPulse { to { transform: scale(1.3); } }

/* --- Section 3: Inset Pop + Icon Spin --- */
.bg-white .v3-hover { background-color: #f0f7ff; }

.v3-hover:hover {
    box-shadow: inset 0 0 15px rgba(82, 53, 221, 0.05), 0 5px 15px rgba(0,0,0,0.05);
}

.v3-hover:hover .flip-anim {
    transform: rotateY(180deg);
    color: #E1306C; /* Insta Pink */
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .grid-layout { grid-template-columns: repeat(2, 1fr); }
    .wh-main-title { font-size: 28px; }
}

@media (max-width: 768px) {
    .support-sec { padding: 60px 0; }
}

@media (max-width: 550px) {
    .grid-layout { grid-template-columns: 1fr; }
    .feature-card { padding: 30px 15px; }
    .wh-main-title { font-size: 24px; }
}