@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');

/* CSS Reset for Icons */
.gallery-info-wrapper i {
font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
font-weight: 900 !important;
font-style: normal !important;
display: inline-block !important;
}
/* Base Wrapper */
.gallery-info-wrapper {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
color: #1a1a2e;
width: 100%;
}
.content-1200 {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.info-block { padding: 80px 0; width: 100%; }
.bg-white { background-color: #ffffff; }
.bg-blue-tint { background-color: #f0f7ff; }
/* Text Styles */
.section-title-group {
text-align: center;
margin-bottom: 50px;
}
.wh-main-title {
font-size: 32px;
font-weight: 800;
margin-bottom: 12px;
color: #E65763; /* Main tool's red theme */
}
.wh-subtitle {
font-size: 17px;
color: #64748b;
max-width: 750px;
margin: 0 auto;
}
/* Grid System */
.card-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 25px;
}
.support-card {
padding: 35px 20px;
border-radius: 10px;
text-align: center;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
border: 1px solid rgba(0,0,0,0.03);
}
.support-card h3 {
font-size: 19px;
font-weight: 700;
margin-bottom: 12px;
color: #1a1a2e;
}
.support-card p {
font-size: 14px;
color: #64748b;
line-height: 1.6;
}
.card-icon {
font-size: 32px;
margin-bottom: 22px;
display: inline-block;
transition: 0.5s ease;
}
/* --- Section 1 Variant: Elevation + Flip Icon --- */
.s1-style { background-color: #f0f7ff; }
.s1-style .card-icon { color: #00BCD4; } /* Cyan from tool */
.s1-style:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 188, 212, 0.12);
}
.s1-style:hover .card-icon {
transform: rotateY(180deg);
}
/* --- Section 2 Variant: Growth + Scale Icon --- */
.s2-style { background-color: #ffffff; border: 1px solid rgba(0,0,0,0.02); text-align: left; }
.icon-circle {
width: 65px; height: 65px;
background: #f0f7ff;
border-radius: 50%;
display: flex !important;
align-items: center; justify-content: center;
color: #FF9800; /* Orange from tool */
}
.s2-style:hover {
transform: scale(1.05);
box-shadow: 0 15px 30px rgba(255, 152, 0, 0.1);
}
.s2-style:hover .icon-circle {
transform: scale(1.2);
box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
}
/* --- Section 3 Variant: Inner Pop + Shaking Icon --- */
.s3-style { background-color: #f0f7ff; }
.icon-glow i { color: #E65763; }
.s3-style:hover {
box-shadow: inset 0 0 10px rgba(230, 87, 99, 0.1), 0 5px 15px rgba(0,0,0,0.05);
}
.s3-style:hover .icon-glow {
animation: iconShake 0.5s ease-in-out;
}
@keyframes iconShake {
0%, 100% { transform: rotate(0); }
25% { transform: rotate(15deg); }
75% { transform: rotate(-15deg); }
}
/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
.card-grid { grid-template-columns: repeat(2, 1fr); }
.wh-main-title { font-size: 28px; }
}
@media (max-width: 768px) {
.info-block { padding: 50px 0; }
.wh-main-title { font-size: 24px; }
}
@media (max-width: 500px) {
.card-grid { grid-template-columns: 1fr; }
}

/* 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: hsla(355, 74%, 62%, 1);

background: linear-gradient(90deg, hsla(355, 74%, 62%, 1) 0%, hsla(0, 0%, 3%, 1) 100%);

background: -moz-linear-gradient(90deg, hsla(355, 74%, 62%, 1) 0%, hsla(0, 0%, 3%, 1) 100%);

background: -webkit-linear-gradient(90deg, hsla(355, 74%, 62%, 1) 0%, hsla(0, 0%, 3%, 1) 100%);

filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#E65763", endColorstr="#080808", GradientType=1 );
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	line-height: 1.6;
	min-height: 100vh;
	padding: 20px 40px;
}

    @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(130, 50, 57, 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: 80%;
        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: 80%;
        margin: 60px auto;
    }

    .ig-anonymous-viewer .ig-result {
        margin-top: 30px;
        background: rgba(130, 50, 57, 0.85);
        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 .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;
}

	
	@media (max-width: 992px) {
    .ig-anonymous-viewer {
        padding: 15px 25px;
        margin: 25px 0;
    }

    .ig-anonymous-viewer .main-contain {
        padding: 15px;
    }

    .ig-anonymous-viewer .ig-tool-wrapper {
        padding: 30px;
    }

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

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

    .ig-anonymous-viewer .ig-input-area {
        padding: 20px 18px;
        gap: 12px;
    }

    .ig-anonymous-viewer .ig-input-area input {
        padding: 12px 16px;
        font-size: 15px;
        margin-bottom: 15px; /* Adjust for consistent spacing */
    }

    .ig-anonymous-viewer .paste-btn,
    .ig-anonymous-viewer .view-btn {
        padding: 12px 18px;
        font-size: 14px;
        margin-bottom: 12px; /* Adjust for consistent spacing */
    }

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

    .ig-anonymous-viewer .view-profile-img {
        width: 32px;
        height: 32px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ig-anonymous-viewer .ipgv-modal-img {
        max-width: 450px;
        max-height: 65vh;
    }

    .ig-anonymous-viewer .skeleton-avatar {
        width: 130px;
        height: 130px;
    }

    .ig-anonymous-viewer .skeleton-username {
        width: 160px;
    }

    .ig-anonymous-viewer .skeleton-fullname {
        width: 120px;
    }

    .ig-anonymous-viewer .skeleton-tab {
        width: 90px;
    }

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

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

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

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

@media (max-width: 768px) {
    .ig-anonymous-viewer {
        padding: 10px 15px;
        margin: 20px 0;
    }

    .ig-anonymous-viewer .main-contain {
        padding: 10px;
    }

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

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

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

    .ig-anonymous-viewer .ig-input-area {
        padding: 18px 15px;
        flex-direction: column;
        border-radius: 14px;
    }

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

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

    .ig-anonymous-viewer .paste-btn {
        display: none; /* Already hidden, ensuring consistency */
    }

    .ig-anonymous-viewer .view-btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 14px;
        justify-content: center;
        margin-bottom: 10px;
    }

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

    .ig-anonymous-viewer .ad-space {
        margin-top: 15px;
        border-radius: 14px;
        padding: 5px;
    }

    .ig-anonymous-viewer .ad-inner {
        border-radius: 10px;
    }

    .ig-anonymous-viewer .ad-placeholder::before {
        font-size: 11px;
        padding: 2px 8px;
        top: 10px;
        left: 10px;
    }

    .ig-anonymous-viewer .note {
        font-size: 13px;
        margin-top: 12px;
    }

    .ig-anonymous-viewer .tools-result {
        margin-top: 40px;
    }

    .ig-anonymous-viewer .ig-result {
        margin-top: 25px;
        padding: 25px;
        border-radius: 16px;
    }

    .ig-anonymous-viewer .ig-profile-header {
        margin-bottom: 30px;
        padding: 25px;
        border-radius: 14px;
    }

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

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

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

    .ig-anonymous-viewer .view-profile-img {
        width: 30px;
        height: 30px;
        bottom: 0px;
        right: 0px;
    }

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

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

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

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

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

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

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

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

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

    .ig-anonymous-viewer .ig-tabs button {
        padding: 9px 18px;
        font-size: 13px;
        gap: 6px;
        border-radius: 40px;
    }

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

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

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

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

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

    .ig-anonymous-viewer .private-account-message i {
        font-size: 16px;
    }

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

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

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

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

    .ig-anonymous-viewer .post-stats {
        gap: 10px;
        margin-bottom: 8px;
        padding: 6px 10px;
        border-radius: 10px;
    }

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

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

    .ig-anonymous-viewer .post-meta .time {
        font-size: 12px;
    }

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

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

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

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

    .ig-anonymous-viewer .story-meta .time {
        font-size: 12px;
    }

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

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

    .ig-anonymous-viewer .highlight-img-container {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
        border-width: 2px;
    }

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

    .ig-anonymous-viewer .highlight-view-btn {
        width: 35px;
        height: 35px;
    }

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

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

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

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

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

    .ig-anonymous-viewer .reel-stats {
        gap: 10px;
        padding: 6px 10px;
        border-radius: 10px;
    }

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

    .ig-anonymous-viewer .reel-meta .time {
        font-size: 12px;
    }

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

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

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

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

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

    .ig-anonymous-viewer .ipgv-modal-download-btn {
        padding: 10px 18px;
        font-size: 13px;
        border-radius: 6px;
    }

    .ig-anonymous-viewer .ipgv-close-modal {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
    }

    .ig-anonymous-viewer .skeleton-profile-header {
        padding: 25px;
        border-radius: 14px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .ig-anonymous-viewer .skeleton-avatar {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .ig-anonymous-viewer .skeleton-username {
        width: 150px;
        height: 25px;
        margin: 0 auto;
    }

    .ig-anonymous-viewer .skeleton-fullname {
        width: 110px;
        height: 18px;
        margin: 0 auto;
    }

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

    .ig-anonymous-viewer .skeleton-stat {
        height: 35px;
        width: 55px;
    }

    .ig-anonymous-viewer .skeleton-bio {
        height: 50px;
        margin-bottom: 25px;
    }

    .ig-anonymous-viewer .skeleton-tabs {
        gap: 10px;
        margin-bottom: 25px;
    }

    .ig-anonymous-viewer .skeleton-tab {
        height: 35px;
        width: 80px;
    }

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

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

    .ig-anonymous-viewer .skeleton-post-img {
        aspect-ratio: 1 / 1;
    }

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

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

    .ig-anonymous-viewer .skeleton-post-stat {
        height: 15px;
        width: 55px;
    }

    .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(140px, 1fr));
        gap: 15px;
    }

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

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

    .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));
        gap: 12px;
    }

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

    .ig-anonymous-viewer .skeleton-highlight-img {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .skeleton-highlight-title {
        height: 15px;
        width: 70px;
    }

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

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

    .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-stats {
        gap: 10px;
        margin-bottom: 8px;
    }

    .ig-anonymous-viewer .skeleton-reel-stat {
        height: 15px;
        width: 55px;
    }

    .ig-anonymous-viewer .skeleton-reel-time {
        height: 13px;
        width: 70px;
    }
}

@media (max-width: 600px) {
    .ig-anonymous-viewer {
        padding: 8px 10px;
        margin: 15px 0;
    }

    .ig-anonymous-viewer .main-contain {
        padding: 8px;
    }

    .ig-anonymous-viewer .ig-tool-wrapper {
        padding: 20px;
        margin: 10px auto;
        border-radius: 14px;
    }

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

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

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

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

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

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

    .ig-anonymous-viewer .error-container {
        bottom: -45px;
    }

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

    .ig-anonymous-viewer .ad-space {
        margin-top: 12px;
        border-radius: 12px;
        padding: 4px;
    }

    .ig-anonymous-viewer .ad-inner {
        border-radius: 8px;
    }

    .ig-anonymous-viewer .ad-placeholder::before {
        font-size: 10px;
        padding: 2px 6px;
        top: 8px;
        left: 8px;
    }

    .ig-anonymous-viewer .note {
        font-size: 12px;
        margin-top: 10px;
    }

    .ig-anonymous-viewer .tools-result {
        margin-top: 30px;
    }

    .ig-anonymous-viewer .ig-result {
        margin-top: 20px;
        padding: 20px;
        border-radius: 14px;
    }

    .ig-anonymous-viewer .ig-profile-header {
        margin-bottom: 25px;
        padding: 20px;
        border-radius: 12px;
    }

    .ig-anonymous-viewer .profile-header-content {
        gap: 15px;
    }

    .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;
        bottom: -2px;
        right: -2px;
    }

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

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

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

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

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

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

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

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

    .ig-anonymous-viewer .ig-tabs button {
        padding: 8px 16px;
        font-size: 12px;
        gap: 5px;
        border-radius: 30px;
    }

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

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

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

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

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

    .ig-anonymous-viewer .private-account-message i {
        font-size: 15px;
    }

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

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

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

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

    .ig-anonymous-viewer .post-stats {
        gap: 8px;
        margin-bottom: 6px;
        padding: 5px 8px;
        border-radius: 8px;
    }

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

    .ig-anonymous-viewer .post-meta .caption {
        font-size: 12px;
        margin-bottom: 6px;
        -webkit-line-clamp: 3; /* Allow more lines for smaller screens if needed */
    }

    .ig-anonymous-viewer .post-meta .time {
        font-size: 11px;
    }

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

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

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

    .ig-anonymous-viewer .story-meta {
        padding: 8px;
    }

    .ig-anonymous-viewer .story-meta .time {
        font-size: 11px;
    }

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

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

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

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

    .ig-anonymous-viewer .highlight-view-btn {
        width: 30px;
        height: 30px;
    }

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

/* CSS Reset for Icons */
.gallery-info-wrapper i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Solid" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
}

/* Base Wrapper */
.gallery-info-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a2e;
    width: 100%;
}

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

.info-block { padding: 80px 0; width: 100%; }
.bg-white { background-color: #ffffff; }
.bg-blue-tint { background-color: #f0f7ff; }

/* Text Styles */
.section-title-group {
    text-align: center;
    margin-bottom: 50px;
}

.wh-main-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #E65763; /* Main tool's red theme */
}

.wh-subtitle {
    font-size: 17px;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
}

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

.support-card {
    padding: 35px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
}

.support-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.support-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.card-icon {
    font-size: 32px;
    margin-bottom: 22px;
    display: inline-block;
    transition: 0.5s ease;
}

/* --- Section 1 Variant: Elevation + Flip Icon --- */
.s1-style { background-color: #f0f7ff; }
.s1-style .card-icon { color: #00BCD4; } /* Cyan from tool */

.s1-style:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.12);
}

.s1-style:hover .card-icon {
    transform: rotateY(180deg);
}

/* --- Section 2 Variant: Growth + Scale Icon --- */
.s2-style { background-color: #ffffff; border: 1px solid rgba(0,0,0,0.02); text-align: left; }

.icon-circle {
    width: 65px; height: 65px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex !important;
    align-items: center; justify-content: center;
    color: #FF9800; /* Orange from tool */
}

.s2-style:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 152, 0, 0.1);
}

.s2-style:hover .icon-circle {
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
}

/* --- Section 3 Variant: Inner Pop + Shaking Icon --- */
.s3-style { background-color: #f0f7ff; }
.icon-glow i { color: #E65763; }

.s3-style:hover {
    box-shadow: inset 0 0 10px rgba(230, 87, 99, 0.1), 0 5px 15px rgba(0,0,0,0.05);
}

.s3-style:hover .icon-glow {
    animation: iconShake 0.5s ease-in-out;
}

@keyframes iconShake {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

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

@media (max-width: 768px) {
    .info-block { padding: 50px 0; }
    .wh-main-title { font-size: 24px; }
}

@media (max-width: 500px) {
    .card-grid { grid-template-columns: 1fr; }
}