@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* tc-scoped:tc-wp-tool-root */

.tc-wp-tool-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-tool-root img,
.tc-wp-tool-root video,
.tc-wp-tool-root svg,
.tc-wp-tool-root iframe {
  max-width: 100%;
  height: auto;
}

.tc-wp-tool-root{
    --primary-color: #7C3AED;
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --secondary-color: #EC4899;
    --secondary-light: #F9A8D4;
    --secondary-dark: #BE185D;
    --accent-color: #14B8A6;
    --accent-light: #5EEAD4;
    --accent-dark: #0F766E;
    --warning-color: #F59E0B;
    --warning-light: #FBBF24;
    --danger-color: #EF4444;
    --danger-light: #FCA5A5;
    --success-color: #22C55E;
    --success-light: #86EFAC;
    --bg-primary: #080B18;
    --bg-secondary: rgba(17, 24, 39, 0.82);
    --bg-tertiary: #25304A;
    --bg-card: rgba(30, 41, 59, 0.78);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.14);
    --text-primary: #F8FAFC;
    --text-secondary: #D8E0EE;
    --text-muted: #9AA8BD;
    --text-accent: #C4B5FD;
    --shadow-sm: 0 6px 18px rgba(8, 11, 24, 0.18);
    --shadow-md: 0 12px 30px rgba(8, 11, 24, 0.24);
    --shadow-lg: 0 20px 48px rgba(8, 11, 24, 0.32);
    --shadow-xl: 0 28px 70px rgba(8, 11, 24, 0.42);
    --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #EC4899 52%, #FB7185 100%);
    --gradient-secondary: linear-gradient(135deg, #14B8A6 0%, #38BDF8 100%);
    --gradient-accent: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}.tc-wp-tool-root .reddit-explorer-wrapper *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.tc-wp-tool-root .reddit-explorer-wrapper{
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: #080B18;
    background-image:
        radial-gradient(circle at 18% 12%, rgba(124, 58, 237, 0.22) 0%, transparent 34%),
        radial-gradient(circle at 82% 24%, rgba(236, 72, 153, 0.18) 0%, transparent 32%),
        radial-gradient(circle at 50% 100%, rgba(20, 184, 166, 0.16) 0%, transparent 38%);
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    text-transform: capitalize !important;
}.tc-wp-tool-root .reddit-explorer-container{
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 18px 48px;
    position: relative;
}.tc-wp-tool-root .reddit-explorer-header{
    text-align: center;
    margin-bottom: 28px;
    padding: 26px 0 14px;
    animation: slideInDown 0.7s ease-out;
}.tc-wp-tool-root .reddit-explorer-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}.tc-wp-tool-root .reddit-explorer-logo-icon{
    width: 62px;
    height: 62px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    animation: float 3.4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-logo-icon::before{
    content: '';
    position: absolute;
    top: -70%;
    left: -70%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}.tc-wp-tool-root .reddit-explorer-logo-text{
    font-size: clamp(1.9rem, 4.2vw, 2.65rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #DAD4FF 38%, #F9A8D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0;
    line-height: 1.15;
    text-shadow: 0 0 24px rgba(124, 58, 237, 0.28);
}.tc-wp-tool-root .reddit-explorer-subtitle{
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    margin: 0 auto 24px;
    max-width: 720px;
}.tc-wp-tool-root .reddit-explorer-features-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 30px;
}.tc-wp-tool-root .reddit-explorer-feature-card{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
    border: 1px solid var(--glass-border);
    padding: 16px 12px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}.tc-wp-tool-root .reddit-explorer-feature-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.55s ease;
}.tc-wp-tool-root .reddit-explorer-feature-card:hover::before{
    left: 100%;
}.tc-wp-tool-root .reddit-explorer-feature-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(167, 139, 250, 0.55);
}.tc-wp-tool-root .reddit-explorer-feature-icon{
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 19px;
    color: #fff;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-feature-title{
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.35;
}.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card, .tc-wp-tool-root .reddit-explorer-section-title{
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.88), rgba(15, 23, 42, 0.76));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(18px);
}.tc-wp-tool-root .reddit-explorer-search-container{
    padding: 26px;
    border-radius: 24px;
    margin-bottom: 34px;
    animation: slideInUp 0.7s ease-out 0.15s both;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-search-container::before, .tc-wp-tool-root .reddit-explorer-user-info::before, .tc-wp-tool-root .reddit-explorer-section-title::before, .tc-wp-tool-root .reddit-explorer-post-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}.tc-wp-tool-root .reddit-explorer-search-form{
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
}.tc-wp-tool-root .reddit-explorer-search-input{
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
    padding: 0 18px !important;
    border: 1px solid rgba(148, 163, 184, 0.28) !important;
    border-radius: 16px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    background: rgba(8, 11, 24, 0.72) !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
    outline: none !important;
    color: var(--text-primary) !important;
    font-family: inherit !important;
    line-height: 54px !important;
    resize: none !important;
    overflow: hidden !important;
}.tc-wp-tool-root .reddit-explorer-search-input:focus{
    border-color: rgba(167, 139, 250, 0.9) !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18), 0 10px 26px rgba(124, 58, 237, 0.15) !important;
    background: rgba(15, 23, 42, 0.9) !important;
}.tc-wp-tool-root .reddit-explorer-search-input::placeholder{
    color: var(--text-muted);
    font-weight: 400;
}.tc-wp-tool-root .reddit-explorer-search-btn, .tc-wp-tool-root .reddit-explorer-control-btn, .tc-wp-tool-root .reddit-explorer-expand-btn, .tc-wp-tool-root .reddit-explorer-cancel-btn{
    min-height: 48px;
    font-family: inherit;
    text-transform: capitalize !important;
}.tc-wp-tool-root .reddit-explorer-search-btn{
    padding: 0 24px;
    height: 54px;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    min-width: 146px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}.tc-wp-tool-root .reddit-explorer-search-btn::before, .tc-wp-tool-root .reddit-explorer-control-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transition: left 0.5s ease;
}.tc-wp-tool-root .reddit-explorer-search-btn:hover::before, .tc-wp-tool-root .reddit-explorer-control-btn:hover::before{
    left: 110%;
}.tc-wp-tool-root .reddit-explorer-search-btn:hover:not(:disabled), .tc-wp-tool-root .reddit-explorer-control-btn:hover, .tc-wp-tool-root .reddit-explorer-expand-btn:hover, .tc-wp-tool-root .reddit-explorer-external-link:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: saturate(1.08);
}.tc-wp-tool-root .reddit-explorer-search-btn:focus-visible, .tc-wp-tool-root .reddit-explorer-control-btn:focus-visible, .tc-wp-tool-root .reddit-explorer-expand-btn:focus-visible, .tc-wp-tool-root .reddit-explorer-cancel-btn:focus-visible, .tc-wp-tool-root .reddit-explorer-close:focus-visible{
    outline: 3px solid rgba(167, 139, 250, 0.45);
    outline-offset: 3px;
}.tc-wp-tool-root .reddit-explorer-search-btn:disabled, .tc-wp-tool-root .reddit-explorer-stream-audio-btn:disabled, .tc-wp-tool-root .reddit-explorer-download-btn:disabled{
    opacity: 0.58;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}.tc-wp-tool-root .reddit-explorer-new-search-btn{
    background: var(--gradient-accent) !important;
    min-width: 132px;
}.tc-wp-tool-root .reddit-explorer-loading{
    text-align: center;
    padding: 32px 18px;
    color: var(--text-primary);
    font-size: 15px;
    display: none;
}.tc-wp-tool-root .reddit-explorer-spinner{
    border: 4px solid rgba(148, 163, 184, 0.22);
    border-top: 4px solid var(--primary-light);
    border-radius: 50%;
    width: 46px;
    height: 46px;
    animation: spin 0.85s linear infinite;
    margin: 18px auto;
}.tc-wp-tool-root .reddit-explorer-error-message{
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(252, 165, 165, 0.34);
    color: #FECACA;
    padding: 16px 18px;
    border-radius: 16px;
    text-align: center;
    margin: 18px 0 0;
    font-weight: 650;
    display: none;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-user-info{
    padding: 26px;
    border-radius: 24px;
    margin-bottom: 34px;
    display: none;
    animation: slideInDown 0.7s ease-out;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-user-info::before{
    background: var(--gradient-secondary);
}.tc-wp-tool-root .reddit-explorer-user-header{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}.tc-wp-tool-root .reddit-explorer-user-avatar{
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;
}.tc-wp-tool-root .reddit-explorer-user-avatar::before{
    content: '';
    position: absolute;
    top: -70%;
    left: -70%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.16), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}.tc-wp-tool-root .reddit-explorer-user-details h2{
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--text-primary);
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.2;
}.tc-wp-tool-root .reddit-explorer-user-description{
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
}.tc-wp-tool-root .reddit-explorer-user-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap: 14px;
    margin-top: 22px;
}.tc-wp-tool-root .reddit-explorer-stat-card{
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-stat-card::before, .tc-wp-tool-root .reddit-explorer-stat-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}.tc-wp-tool-root .reddit-explorer-stat-card:hover, .tc-wp-tool-root .reddit-explorer-stat-item:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(251, 191, 36, 0.38);
}.tc-wp-tool-root .reddit-explorer-stat-number{
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 4px;
    line-height: 1.2;
}.tc-wp-tool-root .reddit-explorer-stat-label{
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 650;
    text-transform: capitalize !important;
}.tc-wp-tool-root .reddit-explorer-posts-section{
    display: none;
}.tc-wp-tool-root .reddit-explorer-section-title{
    color: var(--text-primary);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-section-title::before{
    background: var(--gradient-accent);
}.tc-wp-tool-root .reddit-explorer-posts-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 20px;
}.tc-wp-tool-root .reddit-explorer-post-card{
    border-radius: 22px;
    padding: 20px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.55s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}.tc-wp-tool-root .reddit-explorer-post-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(8, 11, 24, 0.45);
    border-color: rgba(167, 139, 250, 0.52);
}.tc-wp-tool-root .reddit-explorer-post-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}.tc-wp-tool-root .reddit-explorer-subreddit-info{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-subreddit-badge{
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-post-type{
    background: var(--gradient-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: capitalize !important;
}.tc-wp-tool-root .reddit-explorer-post-meta{
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-align: right;
}.tc-wp-tool-root .reddit-explorer-post-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}.tc-wp-tool-root .reddit-explorer-badge{
    background: var(--gradient-secondary);
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 750;
    box-shadow: var(--shadow-sm);
    animation: none;
    text-transform: capitalize !important;
    letter-spacing: 0;
}.tc-wp-tool-root .reddit-explorer-badge.admin, .tc-wp-tool-root .admin{
    background: var(--gradient-accent);
}.tc-wp-tool-root .reddit-explorer-badge.stickied, .tc-wp-tool-root .stickied{
    background: var(--gradient-secondary);
}.tc-wp-tool-root .reddit-explorer-badge.archived, .tc-wp-tool-root .archived{
    background: linear-gradient(135deg, #64748B, #334155);
}.tc-wp-tool-root .reddit-explorer-badge.locked, .tc-wp-tool-root .locked{
    background: linear-gradient(135deg, #F97316, #DC2626);
}.tc-wp-tool-root .reddit-explorer-badge.nsfw, .tc-wp-tool-root .nsfw{
    background: linear-gradient(135deg, #A855F7, #7C3AED);
}.tc-wp-tool-root .reddit-explorer-post-title{
    font-size: clamp(1rem, 2.4vw, 1.22rem);
    font-weight: 750;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.42;
}.tc-wp-tool-root .reddit-explorer-post-content{
    margin-bottom: 18px;
    flex-grow: 1;
}.tc-wp-tool-root .reddit-explorer-post-text{
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 14px;
}.tc-wp-tool-root .reddit-explorer-media-container{
    margin: 14px 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background: #020617;
    border: 1px solid rgba(255, 255, 255, 0.08);
}.tc-wp-tool-root .reddit-explorer-image-preview{
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    display: block;
}.tc-wp-tool-root .reddit-explorer-image-preview:hover{
    transform: scale(1.02);
    filter: brightness(1.06);
}.tc-wp-tool-root .reddit-explorer-video-container{
    position: relative;
    width: 100%;
    background: #020617;
    border-radius: 18px;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-video-player{
    width: 100%;
    height: 260px;
    border-radius: 18px;
    display: block;
}.tc-wp-tool-root .reddit-explorer-media-controls{
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
    align-items: center;
}.tc-wp-tool-root .reddit-explorer-control-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 750;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn{
    background: var(--gradient-secondary);
    color: #fff;
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn.loading{
    background: linear-gradient(135deg, #64748B, #334155);
}.tc-wp-tool-root .reddit-explorer-download-btn{
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .reddit-explorer-download-btn.downloading{
    background: var(--gradient-primary);
}.tc-wp-tool-root .reddit-explorer-external-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 11px 16px;
    border-radius: 14px;
    text-decoration: none;
    margin-top: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    font-weight: 750;
    box-shadow: var(--shadow-sm);
    font-size: 0.88rem;
}.tc-wp-tool-root .reddit-explorer-post-stats{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}.tc-wp-tool-root .reddit-explorer-stat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: rgba(30, 41, 59, 0.62);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-stat-value{
    font-weight: 900;
    font-size: 1.08rem;
    line-height: 1.2;
}.tc-wp-tool-root .reddit-explorer-upvotes .reddit-explorer-stat-value{
    color: var(--primary-light);
}.tc-wp-tool-root .reddit-explorer-comments .reddit-explorer-stat-value{
    color: var(--secondary-light);
}.tc-wp-tool-root .reddit-explorer-modal{
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.94);
    animation: fadeIn 0.25s ease;
    backdrop-filter: blur(8px);
}.tc-wp-tool-root .reddit-explorer-modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 1100px);
    max-width: 92vw;
    max-height: 88vh;
}.tc-wp-tool-root .reddit-explorer-modal img{
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}.tc-wp-tool-root .reddit-explorer-close{
    position: absolute;
    top: 18px;
    right: 28px;
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s ease, transform 0.2s ease;
}.tc-wp-tool-root .reddit-explorer-close:hover{
    color: var(--primary-light);
    transform: scale(1.06);
}.tc-wp-tool-root .reddit-explorer-download-progress{
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: rgba(15, 23, 42, 0.94);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    width: min(350px, calc(100vw - 32px));
    min-width: 0;
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    color: var(--text-primary);
    backdrop-filter: blur(16px);
}.tc-wp-tool-root .reddit-explorer-download-progress.show{
    display: block;
    animation: slideInRight 0.35s ease-out;
}.tc-wp-tool-root .reddit-explorer-progress-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}.tc-wp-tool-root .reddit-explorer-progress-text{
    font-weight: 750;
    font-size: 14px;
    color: var(--text-primary);
}.tc-wp-tool-root .reddit-explorer-cancel-btn{
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(252, 165, 165, 0.30);
    color: #FECACA;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    font-weight: 700;
}.tc-wp-tool-root .reddit-explorer-cancel-btn:hover{
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-1px);
}.tc-wp-tool-root .reddit-explorer-progress-bar-container{
    width: 100%;
    height: 11px;
    background: rgba(148, 163, 184, 0.18);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.22);
}.tc-wp-tool-root .reddit-explorer-progress-bar-fill{
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 999px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 2px 12px rgba(167, 139, 250, 0.42);
}.tc-wp-tool-root .reddit-explorer-progress-details{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 550;
}.tc-wp-tool-root .reddit-explorer-expand-btn{
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 750;
    margin-top: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-video-play-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(8, 11, 24, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 5;
    backdrop-filter: blur(8px);
}.tc-wp-tool-root .reddit-explorer-video-play-overlay:hover{
    background: rgba(15, 23, 42, 0.94);
    transform: translate(-50%, -50%) scale(1.08);
}.tc-wp-tool-root .reddit-explorer-video-play-overlay.hidden{
    display: none;
}.tc-wp-tool-root .reddit-explorer-video-loading-overlay{
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 650;
    z-index: 10;
    backdrop-filter: blur(5px);
}.tc-wp-tool-root .reddit-explorer-video-loading-spinner{
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.28);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    margin-bottom: 10px;
}.tc-wp-tool-root .reddit-explorer-wrapper .fa, .tc-wp-tool-root .reddit-explorer-wrapper .fas, .tc-wp-tool-root .reddit-explorer-wrapper .far, .tc-wp-tool-root .reddit-explorer-wrapper .fab, .tc-wp-tool-root .reddit-explorer-wrapper .fa-solid, .tc-wp-tool-root .reddit-explorer-wrapper .fa-regular, .tc-wp-tool-root .reddit-explorer-wrapper .fa-brands{
    display: inline-block;
    font-style: normal;
    line-height: 1;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", sans-serif;
    font-weight: 900;
}@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-7px) scale(1.015);
    }
}@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(80%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}@media (max-width: 1200px) {.tc-wp-tool-root .reddit-explorer-posts-grid{
        grid-template-columns: 1fr;
    }.tc-wp-tool-root .reddit-explorer-features-grid{
        grid-template-columns: repeat(2, 1fr);
    }}@media (max-width: 992px) {.tc-wp-tool-root .reddit-explorer-container{
        max-width: 860px;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 2.15rem;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.55rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 1.1rem;
    }.tc-wp-tool-root .reddit-explorer-search-form{
        flex-direction: column !important;
        align-items: stretch;
    }.tc-wp-tool-root .reddit-explorer-search-btn, .tc-wp-tool-root .reddit-explorer-search-input{
        width: 100% !important;
        max-width: 100% !important;
    }}@media (max-width: 768px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 22px 14px 38px;
    }.tc-wp-tool-root .reddit-explorer-header{
        padding: 18px 0 8px;
        margin-bottom: 22px;
    }.tc-wp-tool-root .reddit-explorer-features-grid{
        grid-template-columns: 1fr;
        gap: 12px;
    }.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card{
        padding: 20px;
        border-radius: 20px;
    }.tc-wp-tool-root .reddit-explorer-search-form{
        display: flex;
        flex-direction: column !important;
        gap: 12px;
        margin-bottom: 16px;
    }.tc-wp-tool-root .reddit-explorer-search-input{
        height: 52px !important;
        min-height: 52px !important;
        max-height: 52px !important;
        line-height: 52px !important;
        padding: 0 16px !important;
        font-size: 14px !important;
    }.tc-wp-tool-root .reddit-explorer-search-btn{
        height: 52px;
        min-height: 52px;
        width: 100%;
        min-width: 0;
        padding: 0 18px;
    }.tc-wp-tool-root .reddit-explorer-user-header{
        align-items: flex-start;
        gap: 14px;
    }.tc-wp-tool-root .reddit-explorer-user-stats{
        grid-template-columns: repeat(2, 1fr);
    }.tc-wp-tool-root .reddit-explorer-post-stats{
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }.tc-wp-tool-root .reddit-explorer-media-controls{
        flex-direction: column;
        align-items: stretch;
    }.tc-wp-tool-root .reddit-explorer-control-btn, .tc-wp-tool-root .reddit-explorer-external-link{
        width: 100%;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.85rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 14px;
        margin-bottom: 18px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.35rem;
        padding: 16px;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 1rem;
    }.tc-wp-tool-root .reddit-explorer-download-progress{
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }}@media (max-width: 600px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 18px 12px 34px;
    }.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card{
        padding: 18px;
    }.tc-wp-tool-root .reddit-explorer-posts-grid{
        grid-template-columns: 1fr;
        gap: 16px;
    }.tc-wp-tool-root .reddit-explorer-logo{
        gap: 10px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 16px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 56px;
        height: 56px;
        font-size: 1.65rem;
        border-radius: 18px;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.65rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 13px;
    }.tc-wp-tool-root .reddit-explorer-feature-card{
        padding: 14px 12px;
    }.tc-wp-tool-root .reddit-explorer-video-player{
        height: 220px;
    }.tc-wp-tool-root .reddit-explorer-modal-content{
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
    }.tc-wp-tool-root .reddit-explorer-close{
        top: 12px;
        right: 16px;
        font-size: 34px;
    }}@media (max-width: 480px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 14px 10px 30px;
    }.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card{
        padding: 16px;
        border-radius: 18px;
    }.tc-wp-tool-root .reddit-explorer-search-input{
        height: 50px !important;
        min-height: 50px !important;
        max-height: 50px !important;
        line-height: 50px !important;
    }.tc-wp-tool-root .reddit-explorer-search-btn{
        height: 50px;
        min-height: 50px;
        font-size: 13px;
    }.tc-wp-tool-root .reddit-explorer-post-stats, .tc-wp-tool-root .reddit-explorer-user-stats{
        grid-template-columns: 1fr;
    }.tc-wp-tool-root .reddit-explorer-user-header{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 48px;
        height: 48px;
        font-size: 22px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.42rem;
        width: 100%;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.15rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.96rem;
    }.tc-wp-tool-root .reddit-explorer-post-header{
        flex-direction: column;
        align-items: flex-start;
    }.tc-wp-tool-root .reddit-explorer-post-meta{
        text-align: left;
    }.tc-wp-tool-root .reddit-explorer-progress-header, .tc-wp-tool-root .reddit-explorer-progress-details{
        align-items: flex-start;
        flex-direction: column;
    }}@media (max-width: 400px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 12px 8px 28px;
    }.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card{
        padding: 14px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 44px;
        height: 44px;
        font-size: 20px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.28rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 12.5px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.05rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.92rem;
    }}@media (max-width: 375px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 10px 7px 26px;
    }.tc-wp-tool-root .reddit-explorer-search-container, .tc-wp-tool-root .reddit-explorer-user-info, .tc-wp-tool-root .reddit-explorer-post-card{
        padding: 12px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 42px;
        height: 42px;
        font-size: 19px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.2rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 12px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.9rem;
    }}.tc-wp-tool-root{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  z-index: 0 !important;
}