@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: #ff4500;
    --primary-light: #ff7a45;
    --primary-dark: #c93400;
    --secondary-color: #2563eb;
    --secondary-light: #60a5fa;
    --secondary-dark: #1d4ed8;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #b45309;
    --success-color: #10b981;
    --success-light: #34d399;
    --danger-color: #ef4444;
    --danger-light: #f97316;
    --warning-color: #f59e0b;
    --warning-light: #fbbf24;
    --bg-primary: #fff7ed;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.92);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 69, 0, 0.2);
    --text-primary: #172033;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-accent: #ff4500;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 14px 34px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 22px 55px rgba(15, 23, 42, 0.16);
    --gradient-primary: linear-gradient(135deg, #ff4500, #f97316);
    --gradient-secondary: linear-gradient(135deg, #2563eb, #0f172a);
    --gradient-accent: linear-gradient(135deg, #10b981, #2563eb);
}.tc-wp-tool-root .reddit-explorer-wrapper *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.tc-wp-tool-root .reddit-explorer-wrapper{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #fff7ed 0%, #ffffff 48%, #eef6ff 100%);
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}.tc-wp-tool-root .reddit-explorer-wrapper::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 16% 18%, rgba(255, 69, 0, 0.12) 0%, transparent 28%),
        radial-gradient(circle at 84% 28%, rgba(37, 99, 235, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 50% 86%, rgba(16, 185, 129, 0.08) 0%, transparent 35%);
    z-index: 0;
    pointer-events: none;
}.tc-wp-tool-root .reddit-explorer-container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 28px 20px 48px;
    position: relative;
    z-index: 1;
}.tc-wp-tool-root .reddit-explorer-header{
    text-align: center;
    margin-bottom: 32px;
    padding: 34px 0 24px;
    animation: slideInDown 1s ease-out;
}.tc-wp-tool-root .reddit-explorer-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}.tc-wp-tool-root .reddit-explorer-logo-icon{
    width: 78px;
    height: 78px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 34px;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-logo-icon::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}.tc-wp-tool-root .reddit-explorer-logo-text{
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff4500, #0f172a 58%, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0;
    text-shadow: none;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-subtitle{
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}.tc-wp-tool-root .reddit-explorer-features-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 36px;
}.tc-wp-tool-root .reddit-explorer-feature-card{
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}.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, 69, 0, 0.12), transparent);
    transition: left 0.5s;
}.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-lg);
    border-color: var(--primary-color);
}.tc-wp-tool-root .reddit-explorer-feature-icon{
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: white;
}.tc-wp-tool-root .reddit-explorer-feature-title{
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 14px;
}.tc-wp-tool-root .reddit-explorer-search-container{
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 28px;
    animation: slideInUp 1s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-search-container::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;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    flex-direction: row;
    align-items: stretch;
}.tc-wp-tool-root .reddit-explorer-search-input{
    flex: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 15px 18px !important;
    border: 2px solid rgba(255, 69, 0, 0.22) !important;
    border-radius: 14px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    color: var(--text-primary) !important;
    font-family: inherit !important;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}.tc-wp-tool-root .reddit-explorer-search-input:focus{
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(255, 69, 0, 0.14), inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
    transform: translateY(-1px);
}.tc-wp-tool-root .reddit-explorer-search-input::placeholder{
    color: var(--text-muted);
    font-weight: 400;
}.tc-wp-tool-root .reddit-explorer-search-btn{
    padding: 15px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 142px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    font-family: inherit;
    white-space: nowrap;
}.tc-wp-tool-root .reddit-explorer-search-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s;
}.tc-wp-tool-root .reddit-explorer-search-btn:hover::before{
    left: 100%;
}.tc-wp-tool-root .reddit-explorer-search-btn:hover:not(:disabled){
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}.tc-wp-tool-root .reddit-explorer-search-btn:focus-visible{
    outline: 3px solid rgba(255, 69, 0, 0.24);
    outline-offset: 3px;
}.tc-wp-tool-root .reddit-explorer-search-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}.tc-wp-tool-root .reddit-explorer-new-search-btn{
    background: var(--gradient-secondary) !important;
    min-width: 130px;
}.tc-wp-tool-root .reddit-explorer-user-info{
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 28px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 36px;
    display: none;
    animation: slideInDown 0.8s ease-out;
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-user-info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}.tc-wp-tool-root .reddit-explorer-user-header{
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}.tc-wp-tool-root .reddit-explorer-user-avatar{
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-user-avatar::before{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: rotate(45deg);
    animation: shine 4s infinite;
}.tc-wp-tool-root .reddit-explorer-user-details{
    min-width: 0;
    flex: 1;
}.tc-wp-tool-root .reddit-explorer-user-details h2{
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 900;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-user-description{
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
}.tc-wp-tool-root .reddit-explorer-user-stats{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
    margin-top: 24px;
}.tc-wp-tool-root .reddit-explorer-stat-card{
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.16);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-stat-card::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{
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .reddit-explorer-stat-number{
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 6px;
}.tc-wp-tool-root .reddit-explorer-stat-label{
    font-size: 0.86rem;
    color: var(--text-secondary);
    font-weight: 700;
}.tc-wp-tool-root .reddit-explorer-posts-section{
    display: none;
}.tc-wp-tool-root .reddit-explorer-section-title{
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 18px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-section-title::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    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: 22px;
}.tc-wp-tool-root .reddit-explorer-post-card{
    background: var(--bg-card);
    border: 1px solid rgba(255, 69, 0, 0.16);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-post-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 18px 18px 0 0;
}.tc-wp-tool-root .reddit-explorer-post-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    border-color: var(--primary-color);
}.tc-wp-tool-root .reddit-explorer-post-header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}.tc-wp-tool-root .reddit-explorer-subreddit-info{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-subreddit-badge{
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-post-type{
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: capitalize;
}.tc-wp-tool-root .reddit-explorer-post-meta{
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-align: right;
    flex: 0 0 auto;
}.tc-wp-tool-root .reddit-explorer-post-badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}.tc-wp-tool-root .reddit-explorer-badge{
    background: var(--gradient-secondary);
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    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, #f59e0b, #b45309);
}.tc-wp-tool-root .reddit-explorer-badge.nsfw, .tc-wp-tool-root .nsfw{
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}.tc-wp-tool-root .reddit-explorer-post-title{
    font-size: 1.34rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-primary);
    line-height: 1.35;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-post-content{
    margin-bottom: 18px;
    flex-grow: 1;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-post-text{
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 14px;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-media-container{
    margin: 15px 0;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    background: #0f172a;
}.tc-wp-tool-root .reddit-explorer-image-preview{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
}.tc-wp-tool-root .reddit-explorer-image-preview:hover{
    transform: scale(1.02);
}.tc-wp-tool-root .reddit-explorer-video-container{
    position: relative;
    width: 100%;
    background: #0f172a;
    border-radius: 14px;
    overflow: hidden;
}.tc-wp-tool-root .reddit-explorer-video-player{
    width: 100%;
    height: 250px;
    border-radius: 14px;
    display: block;
}.tc-wp-tool-root .reddit-explorer-media-controls{
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
    align-items: center;
}.tc-wp-tool-root .reddit-explorer-control-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-control-btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.5s;
}.tc-wp-tool-root .reddit-explorer-control-btn:hover::before{
    left: 100%;
}.tc-wp-tool-root .reddit-explorer-control-btn:focus-visible{
    outline: 3px solid rgba(37, 99, 235, 0.22);
    outline-offset: 3px;
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn{
    background: var(--gradient-secondary);
    color: white;
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}.tc-wp-tool-root .reddit-explorer-stream-audio-btn.loading, .tc-wp-tool-root .loading{
    background: linear-gradient(135deg, #64748b, #334155);
}.tc-wp-tool-root .reddit-explorer-download-btn{
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-md);
}.tc-wp-tool-root .reddit-explorer-download-btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}.tc-wp-tool-root .reddit-explorer-download-btn:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}.tc-wp-tool-root .reddit-explorer-download-btn.downloading, .tc-wp-tool-root .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: white;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    max-width: 100%;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-external-link:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}.tc-wp-tool-root .reddit-explorer-post-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}.tc-wp-tool-root .reddit-explorer-stat-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(37, 99, 235, 0.14);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}.tc-wp-tool-root .reddit-explorer-stat-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}.tc-wp-tool-root .reddit-explorer-stat-item:hover{
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}.tc-wp-tool-root .reddit-explorer-stat-value{
    font-weight: 900;
    font-size: 1.16rem;
    overflow-wrap: anywhere;
}.tc-wp-tool-root .reddit-explorer-upvotes .reddit-explorer-stat-value{
    color: var(--primary-color);
}.tc-wp-tool-root .reddit-explorer-comments .reddit-explorer-stat-value{
    color: var(--secondary-color);
}.tc-wp-tool-root .reddit-explorer-loading{
    text-align: center;
    padding: 36px 16px;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: none;
}.tc-wp-tool-root .reddit-explorer-spinner{
    border: 4px solid rgba(15, 23, 42, 0.12);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}.tc-wp-tool-root .reddit-explorer-error-message{
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #b91c1c;
    padding: 18px;
    border-radius: 14px;
    text-align: center;
    margin: 18px 0 0;
    font-weight: 700;
    display: none;
    font-size: 14px;
}.tc-wp-tool-root .reddit-explorer-modal{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.94);
    animation: fadeIn 0.3s ease;
    padding: 24px;
}.tc-wp-tool-root .reddit-explorer-modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: min(94%, 1100px);
    max-height: 90%;
}.tc-wp-tool-root .reddit-explorer-modal img{
    width: 100%;
    height: auto;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}.tc-wp-tool-root .reddit-explorer-close{
    position: absolute;
    top: 20px;
    right: 32px;
    color: #ffffff;
    font-size: 44px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease, transform 0.3s ease;
}.tc-wp-tool-root .reddit-explorer-close:hover{
    color: var(--primary-light);
    transform: scale(1.05);
}.tc-wp-tool-root .reddit-explorer-download-progress{
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 22px;
    width: min(350px, calc(100vw - 32px));
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    color: var(--text-primary);
}.tc-wp-tool-root .reddit-explorer-download-progress.show, .tc-wp-tool-root .show{
    display: block;
    animation: slideInRight 0.4s ease-out;
}.tc-wp-tool-root .reddit-explorer-progress-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}.tc-wp-tool-root .reddit-explorer-progress-text{
    font-weight: 800;
    font-size: 14px;
    color: var(--text-primary);
}.tc-wp-tool-root .reddit-explorer-cancel-btn{
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #b91c1c;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-family: inherit;
}.tc-wp-tool-root .reddit-explorer-cancel-btn:hover{
    background: rgba(239, 68, 68, 0.16);
}.tc-wp-tool-root .reddit-explorer-progress-bar-container{
    width: 100%;
    height: 12px;
    background: rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.08);
}.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 8px rgba(255, 69, 0, 0.3);
}.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: 600;
}.tc-wp-tool-root .reddit-explorer-expand-btn{
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}.tc-wp-tool-root .reddit-explorer-expand-btn:hover{
    transform: translateY(-2px);
    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(15, 23, 42, 0.76);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 5;
}.tc-wp-tool-root .reddit-explorer-video-play-overlay:hover{
    background: rgba(15, 23, 42, 0.92);
    transform: translate(-50%, -50%) scale(1.08);
}.tc-wp-tool-root .reddit-explorer-video-play-overlay.hidden, .tc-wp-tool-root .hidden{
    display: none;
}.tc-wp-tool-root .reddit-explorer-video-loading-overlay{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.84);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    font-weight: 700;
    z-index: 10;
}.tc-wp-tool-root .reddit-explorer-video-loading-spinner{
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.02);
    }
}@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(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(34px);
    }
    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.05);
    }
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}@media (max-width: 1200px) {.tc-wp-tool-root .reddit-explorer-posts-grid{
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    }.tc-wp-tool-root .reddit-explorer-features-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }}@media (max-width: 992px) {.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 2.5rem;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.8rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 1.2rem;
    }.tc-wp-tool-root .reddit-explorer-search-form{
        flex-direction: column;
    }.tc-wp-tool-root .reddit-explorer-search-btn{
        width: 100%;
    }}@media (max-width: 768px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 22px 16px 40px;
    }.tc-wp-tool-root .reddit-explorer-header{
        padding: 28px 0 18px;
        margin-bottom: 26px;
    }.tc-wp-tool-root .reddit-explorer-features-grid{
        grid-template-columns: 1fr;
        gap: 14px;
    }.tc-wp-tool-root .reddit-explorer-user-header{
        align-items: flex-start;
    }.tc-wp-tool-root .reddit-explorer-user-stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }.tc-wp-tool-root .reddit-explorer-post-stats{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }.tc-wp-tool-root .reddit-explorer-post-header{
        flex-direction: column;
        align-items: stretch;
    }.tc-wp-tool-root .reddit-explorer-post-meta{
        text-align: left;
    }.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%;
        justify-content: center;
    }.tc-wp-tool-root .reddit-explorer-search-form{
        flex-direction: column;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 2rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 16px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.6rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 1.1rem;
    }.tc-wp-tool-root .reddit-explorer-download-progress{
        right: 16px;
        bottom: 16px;
    }}@media (max-width: 600px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 18px 14px 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;
    }.tc-wp-tool-root .reddit-explorer-logo{
        gap: 12px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-radius: 14px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 60px;
        height: 60px;
        flex-basis: 60px;
        font-size: 2rem;
        border-radius: 14px;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.8rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 14px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.4rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 1rem;
    }}@media (max-width: 480px) {.tc-wp-tool-root .reddit-explorer-post-stats{
        grid-template-columns: 1fr;
    }.tc-wp-tool-root .reddit-explorer-user-stats{
        grid-template-columns: 1fr;
    }.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: 15px;
        border-radius: 16px;
    }.tc-wp-tool-root .reddit-explorer-user-header{
        gap: 14px;
    }.tc-wp-tool-root .reddit-explorer-search-input, .tc-wp-tool-root .reddit-explorer-search-btn{
        min-height: 48px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 52px;
        height: 52px;
        font-size: 24px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 1.7rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.55rem;
    }.tc-wp-tool-root .reddit-explorer-user-details h2{
        font-size: 1.45rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 13px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.2rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.95rem;
    }.tc-wp-tool-root .reddit-explorer-progress-header, .tc-wp-tool-root .reddit-explorer-progress-details{
        flex-direction: column;
        align-items: flex-start;
    }.tc-wp-tool-root .reddit-explorer-cancel-btn{
        width: 100%;
    }}@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: 12px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 48px;
        height: 48px;
        font-size: 22px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 1.55rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.38rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 12px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1.1rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.9rem;
    }}@media (max-width: 375px) {.tc-wp-tool-root .reddit-explorer-container{
        padding: 10px 6px 24px;
    }.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: 10px;
    }.tc-wp-tool-root .reddit-explorer-logo-icon{
        width: 44px;
        height: 44px;
        font-size: 20px;
    }.tc-wp-tool-root .reddit-explorer-user-avatar{
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 1.35rem;
    }.tc-wp-tool-root .reddit-explorer-logo-text{
        font-size: 1.18rem;
    }.tc-wp-tool-root .reddit-explorer-subtitle{
        font-size: 11px;
    }.tc-wp-tool-root .reddit-explorer-section-title{
        font-size: 1rem;
    }.tc-wp-tool-root .reddit-explorer-post-title{
        font-size: 0.85rem;
    }}.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;
}