/* Base Styles */
html {
    font-size: 10px;
}
body {
    background-color: #fffc00;
    color: #121314;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

h2 {
    font-size: 2rem;
    line-height: 36px;
    font-weight: 700;
}

h4 {
    font-size: 1rem;
}

a:hover {
    color: #000;
    text-decoration: none;
}

/* Layout Components */
.content-wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Buttons */
.btn-yellow {
    background: #FFFE07;
    border-radius: 30px;
    font-weight: 600;
    padding: 15px;
}

/* Sliding Window */
#slidingWindow {
    background-color: #FAF8FD;
    transition: top 0.5s ease;
    overflow: visible;
    z-index: 999;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 5px 5px 30px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#slidingWindow.active {
    top: 0;
    height: 100%;
}

#slidingWindow h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    letter-spacing: -1px;
    position: relative;
}

#slidingWindow p {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
    text-transform: none;
    letter-spacing: 0.5px;
    opacity: 1;
    text-align: center;
    position: relative;
}

#slidingWindow::after {
    content: '👻';
    position: absolute;
    right: 30px;
    font-size: 2rem;
    animation: sparkle 3s infinite;
}

#slidingWindow .MobileHomepage_videoSlidesContainer__bNnnu {
    position: absolute;
    bottom: 0;
    width: auto;
}

/* Tools Section */
.tools {
    position: relative;
    z-index: 2;
}

.tools li {
    cursor: pointer;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 5px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: flex-start;
    background: #fff;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tools li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.tools li span.lnr {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    flex-shrink: 0;
}

.tools li .d-flex.flex-column {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left;
    flex-grow: 1;
    margin-top: 2px;
}

.tools li .title {
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.tools li .subtitle {
    font-size: 1rem;
    color: #575656;
    font-weight: 500;
    line-height: 1.4;
    background: linear-gradient(135deg, #a0aec0 0%, #718096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0;
}

.tools li .arrow {
    width: 18px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tools li:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(3px);
}

/* Tool Icon Colors */
.tools li[data-id="1"] span.lnr {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.tools li[data-id="2"] span.lnr {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.tools li[data-id="3"] span.lnr {
    background: linear-gradient(135deg, #45b7d1 0%, #96c93d 100%);
}

.tools li[data-id="4"] span.lnr {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Next Page */
.next-page {
    padding: 50px 15px;
    background-image: linear-gradient(to right bottom, #16120A, #201C14);
    color: #fff;
    position: fixed; /* Changed from absolute to fixed */
    top: 100%;
    left: 0;
    padding-top: 50px;
    transition: top ease-in-out .3s;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.next-page.active {
    top: 0;
}

/* Background Components */
.logo-snapchat-wrap {
    height: 200px;
    background-size: contain;
    background-image: url(../images/background.png);
    background-position: center;
    background-repeat: no-repeat;
}

.gradient-bg {
    background: linear-gradient(40deg, #a6b5d9, #88a0d9, #7b9ae4, #4d7be8, #e8e74d, #bbbbbb);
    background-size: 1200% 1200%;
    -webkit-animation: AnimationName 20s ease infinite;
    -moz-animation: AnimationName 20s ease infinite;
    animation: AnimationName 20s ease infinite;
}

.loader-wrap-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid #e5e5e5;
}

.stats-section {
    background-color: #f8f9fa;
    padding: 16px 24px;
}

.stats-container {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #374151;
    gap: 40px;
}

.accounts-count {
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 8px;
}

.update-date {
    color: #7c3aed;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.update-icon {
    width: 16px;
    height: 16px;
    color: #7c3aed;
}

.links-section {
    padding: 10px 12px;
}

.links-container {
    max-width: 1024px;
    margin: 0 auto;
    text-align: center;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.links a {
    color: #6366f1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.links a:hover {
    color: #4f46e5;
    background-color: #f0f9ff;
    transform: translateY(-1px);
}

.separator {
    color: #9ca3af;
}

.copyright {
    font-size: 1rem;
    color: #9ca3af;
}

/* Testimonial Component */
.testimonial-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #f0f0f0;
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 30px;
}

.testimonial-content {
    text-align: center;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 auto 10px;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.verified-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.8rem;
    color: #10b981;
    margin-bottom: 16px;
}

.verified-icon {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #374151;
    font-style: italic;
    max-width: 300px;
    margin: 0 auto;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.nav-button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-button:hover {
    background-color: #e5e7eb;
    color: #374151;
}

.nav-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #fbbf24;
    transform: scale(1.2);
}

/* Verification Card */
.verification-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 450px;
    width: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.unlock-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

.unlock-icon i {
    font-size: 2rem;
    color: white;
    animation: bounce 1.5s infinite;
    height: 10px;
}

.main-title {
    font-size: 1.6rem;
    font-weight: bold;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
}

.text-verfication {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.progress-section {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 2px dashed #ddd;
}

.progress-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.step.active .step-circle {
    background: #FFD700;
    color: white;
    border-color: #FFA500;
    animation: glow 1.5s infinite alternate;
}

.step-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.step.active .step-text {
    color: #333;
    font-weight: bold;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: -1;
}

.step:last-child .step-line {
    display: none;
}

.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 1rem;
    color: #28a745;
}

.floating-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.1;
}

.floating-elements i {
    font-size: 1rem;
    color: #FFD700;
    animation: float 3s ease-in-out infinite;
}

.benefit-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.benefit-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #B8860B;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Utility Classes */
.visually-hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ghost {
    animation: floating 2s infinite ease-in-out;
}

.ghost-loader {
    animation: flyAndDisappear 3s infinite ease-in-out;
}

.text-yellow {
    color: #fffc00;
}

.emoji {
    font-size: 18px;
}

#info-icon {
    font-size: 2rem;
    color: #fff;
}

/* Form Inputs */
input[name="username"] {
    background-color: #fff !important;
    color: #000 !important;
    position: relative;
    z-index: 9999;
    touch-action: manipulation;
}

/* Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(-50%);
    }
    40% {
        transform: translateY(-60%);
    }
    60% {
        transform: translateY(-55%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(0deg) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg) scale(1.2);
    }
}

@keyframes AnimationName {
    0% { background-position: 78% 0%; }
    50% { background-position: 23% 100%; }
    100% { background-position: 78% 0%; }
}

@keyframes flyAndDisappear {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes floating {
    50% {
        transform: translateY(-30px);
    }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes glow {
    from { box-shadow: 0 0 5px #FFD700; }
    to { box-shadow: 0 0 20px #FFD700, 0 0 30px #FFD700; }
}

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

/* Webkit-specific animations */
@-webkit-keyframes AnimationName {
    0% { background-position: 78% 0%; }
    50% { background-position: 23% 100%; }
    100% { background-position: 78% 0%; }
}

@-moz-keyframes AnimationName {
    0% { background-position: 78% 0%; }
    50% { background-position: 23% 100%; }
    100% { background-position: 78% 0%; }
}

/* Media Queries */
@media (max-width: 480px) {
    .logo-snapchat-wrap {
        height: 150px;
    }
    
    .tools li {
        padding: 12px;
    }

    .tools li span.lnr {
        width: 40px;
        height: 40px;
        margin-right: 12px;
        font-size: 1.8rem;
    }

    .tools li .title {
        font-size: 1.8rem;
    }

    .tools li .subtitle {
        font-size: 1.4rem;
    }
}