/* ULTIMATEUNBLOCKER - Premium Dark UI with Advanced Styling */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --dark-gradient: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2d2d2d 100%);
    --card-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.3);
    --shadow-glow-hover: 0 0 50px rgba(102, 126, 234, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark-gradient);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(245, 87, 108, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

/* Menu Button - Enhanced */
.menu-button {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    cursor: pointer;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
}

.menu-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.menu-button:active {
    transform: scale(0.95);
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #667eea, #f093fb);
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 10px;
}

.hamburger span:nth-child(3) {
    top: 20px;
}

.menu-button:hover .hamburger span:nth-child(1) {
    transform: translateY(-2px);
}

.menu-button:hover .hamburger span:nth-child(3) {
    transform: translateY(2px);
}

/* Menu Panel - Premium Design */
.menu-panel {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-right: 1px solid var(--glass-border);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding: 120px 30px 30px;
    overflow-y: auto;
}

.menu-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    z-index: -1;
}

.menu-panel.active {
    left: 0;
    box-shadow: 0 0 100px rgba(102, 126, 234, 0.2);
}

.menu-item {
    display: block;
    width: 100%;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: #ffffff;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: left 0.5s ease;
    z-index: -1;
}

.menu-item:hover::before {
    left: 0;
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

.menu-item:active {
    transform: translateX(5px) scale(0.98);
}

/* Coming Soon Sticker */
.coming-soon-sticker {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.coming-soon-sticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Overlay - Enhanced */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content - Premium Design */
.main-content {
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section {
    text-align: center;
    max-width: 900px;
    padding: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.03;
    animation: heroRotate 15s linear infinite;
    z-index: -1;
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo {
    width: 250px;
    height: 250px;
    margin: 0 auto 40px;
    filter: drop-shadow(0 0 50px rgba(102, 126, 234, 0.4));
    animation: logoFloat 4s ease-in-out infinite;
    border-radius: 20px;
    background: var(--glass-bg);
    padding: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Proxy Browser Section */
.proxy-browser-section {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: none; /* Initially hidden */
}

/* Full-screen proxy browser mode */
.proxy-browser-section.fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 997 !important;
    border-radius: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.proxy-browser-section.fullscreen .browser-content {
    min-height: calc(100vh - 80px); /* Account for header height */
    padding: 60px;
}

.proxy-browser-section.fullscreen .browser-placeholder {
    max-width: 600px;
}

.proxy-browser-section.fullscreen .browser-icon {
    font-size: 6rem;
}

.proxy-browser-section.fullscreen .browser-placeholder h3 {
    font-size: 2rem;
}

.proxy-browser-section.fullscreen .browser-placeholder p {
    font-size: 1.2rem;
}

.proxy-browser-section:hover {
    box-shadow: var(--shadow-glow);
}

.browser-header {
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-controls {
    display: flex;
    gap: 8px;
}

.browser-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.browser-btn:active {
    transform: scale(0.95);
}

.browser-vpn {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.2), rgba(34, 193, 195, 0.2));
    border: 1px solid rgba(34, 193, 195, 0.4);
}

.browser-vpn:hover {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.3), rgba(34, 193, 195, 0.3));
    border-color: rgba(34, 193, 195, 0.6);
    box-shadow: 0 0 15px rgba(34, 193, 195, 0.4);
}

.browser-vpn.active {
    background: linear-gradient(135deg, #22c1c3, #1a7f80);
    border-color: #22c1c3;
    box-shadow: 0 0 20px rgba(34, 193, 195, 0.5);
}

.browser-url-bar {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
}

.browser-url-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.browser-url-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.browser-url-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.browser-go-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-go-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.browser-close-btn {
    background: rgba(255, 67, 54, 0.1);
    border: 1px solid rgba(255, 67, 54, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ff4336;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.browser-close-btn:hover {
    background: rgba(255, 67, 54, 0.2);
    border-color: rgba(255, 67, 54, 0.5);
    transform: scale(1.1);
}

.browser-close-btn:active {
    transform: scale(0.95);
}

.browser-content {
    min-height: 400px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-placeholder {
    text-align: center;
    max-width: 400px;
}

.browser-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.browser-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.browser-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.browser-loading {
    text-align: center;
}

.browser-loading .loading-spinner {
    margin: 0 auto 20px;
}

.browser-loading p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.browser-result {
    text-align: center;
    max-width: 500px;
}

.result-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

.browser-result h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.browser-result p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
}

.browser-result-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 20px;
    padding: 12px 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.browser-result-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

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

/* Categories Section - Enhanced Design */
.categories-section {
    display: none;
    padding: 120px 30px 30px;
    min-height: 100vh;
    position: relative;
}

.categories-section.active {
    display: block;
    animation: sectionFadeIn 0.8s ease-out;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(102, 126, 234, 0.4);
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: cardShimmer 3s linear infinite;
}

@keyframes cardShimmer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover::after {
    opacity: 1;
}

.category-card:active {
    transform: translateY(-5px) scale(1.01);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: iconBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
}

.category-card:nth-child(2) .category-icon {
    animation-delay: 0.5s;
}

.category-card:nth-child(3) .category-icon {
    animation-delay: 1s;
}

.category-card:nth-child(4) .category-icon {
    animation-delay: 1.5s;
}

.category-card:nth-child(5) .category-icon {
    animation-delay: 2s;
}

.category-card:nth-child(6) .category-icon {
    animation-delay: 2.5s;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
}

.category-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
    background-clip: content-box;
}

/* Selection Styling */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: #ffffff;
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
    .menu-button {
        top: 20px;
        left: 20px;
        padding: 12px;
    }
    
    .hamburger {
        width: 25px;
        height: 20px;
    }
    
    .menu-panel {
        width: 300px;
        left: -300px;
        padding: 100px 20px 20px;
    }
    
    .hero-section {
        padding: 40px 30px;
        margin: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-card {
        padding: 30px;
    }
    
    .logo {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-name {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Links Popup */
.links-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.links-popup.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-card-hover);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.links-popup.active .popup-content {
    transform: translate(-50%, -50%) scale(1);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--glass-bg);
    border-bottom: 1px solid var(--glass-border);
}

.popup-title {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.popup-close {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.popup-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.link-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.link-item:hover::before {
    opacity: 0.1;
}

.link-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.link-item p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.link-item .link-url {
    color: #667eea;
    font-size: 0.8rem;
    word-break: break-all;
    opacity: 0.8;
}

.link-item .visit-btn {
    background: var(--primary-gradient);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
}

.link-item .visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.link-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    color: #ffc107;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { 
        opacity: 1; 
        background: rgba(255, 193, 7, 0.1);
    }
    50% { 
        opacity: 0.7; 
        background: rgba(255, 193, 7, 0.15);
    }
}

/* Additional Decorative Elements */
.floating-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Cards */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
}

h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

/* Enhanced Grid */
.grid {
    display: grid;
    gap: 30px;
}

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Enhanced Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-in-out;
}

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

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

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* Enhanced Selection */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: white;
}

/* Enhanced Focus States */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Loading States */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Browser Iframe Styles */
.browser-iframe-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
}

.browser-iframe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-iframe-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.browser-iframe-url {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.browser-iframe-status {
    color: #22c1c3;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 193, 195, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.browser-iframe-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-iframe-back:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.browser-iframe-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.browser-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Full Proxy Experience Styles */
.browser-full-proxy {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
}

.browser-proxy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-proxy-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.browser-proxy-url {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.browser-proxy-status {
    color: #22c1c3;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 193, 195, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.browser-proxy-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-proxy-back:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.browser-proxy-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.browser-proxy-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
    color: white;
    text-align: center;
}

.browser-proxy-frame {
    width: 100%;
    height: 100%;
}

.browser-proxy-object {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* Proxy Controls and Loading */
.browser-proxy-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proxy-retry-btn, .proxy-open-btn, .proxy-text-btn, .proxy-html-btn, .proxy-cloaked-btn, .proxy-enhanced-btn {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.proxy-retry-btn:hover, .proxy-open-btn:hover, .proxy-text-btn:hover, .proxy-html-btn:hover, .proxy-cloaked-btn:hover, .proxy-enhanced-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.proxy-open-btn {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.2), rgba(34, 193, 195, 0.2));
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.proxy-open-btn:hover {
    background: linear-gradient(135deg, rgba(34, 193, 195, 0.3), rgba(34, 193, 195, 0.3));
    border-color: rgba(34, 193, 195, 0.5);
}

.proxy-text-btn {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.proxy-text-btn:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.3), rgba(255, 152, 0, 0.3));
    border-color: rgba(255, 193, 7, 0.5);
}

.proxy-html-btn {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.proxy-html-btn:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
    border-color: rgba(76, 175, 80, 0.5);
}

.proxy-cloaked-btn {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.2), rgba(73, 80, 87, 0.2));
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.proxy-cloaked-btn:hover {
    background: linear-gradient(135deg, rgba(108, 117, 125, 0.3), rgba(73, 80, 87, 0.3));
    border-color: rgba(108, 117, 125, 0.5);
}

.browser-proxy-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: white;
    text-align: center;
    backdrop-filter: blur(5px);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* Content-Based Proxy Styles */
.browser-content-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
}

.browser-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-content-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.browser-content-url {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.browser-content-status {
    color: #22c1c3;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 193, 195, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.browser-content-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-content-back:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.browser-content-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.browser-content-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: white;
    text-align: center;
    backdrop-filter: blur(5px);
}

.browser-content-frame {
    width: 100%;
    height: 100%;
}

.proxy-content-sandbox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sandbox-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sandbox-url {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.sandbox-refresh {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 4px 8px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sandbox-refresh:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sandbox-content {
    flex: 1;
}

.sandbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.text-content-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    background: white;
    color: black;
}

.text-content-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.text-content-header h3 {
    margin: 0 0 5px 0;
    color: #333;
}

.text-content-header p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.text-content-body {
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 40px;
}

.error-content h3 {
    margin: 15px 0 10px 0;
    font-size: 1.5rem;
}

.error-content p {
    margin: 5px 0;
    opacity: 0.8;
}

/* Window-Based Proxy Styles */
.browser-window-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
}

.browser-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-window-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.browser-window-url {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.browser-window-status {
    color: #22c1c3;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(34, 193, 195, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgba(34, 193, 195, 0.3);
}

.browser-window-back {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 15px;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.browser-window-back:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.browser-window-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.browser-window-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    color: white;
    text-align: center;
    backdrop-filter: blur(5px);
}

.browser-window-content {
    width: 100%;
    height: 100%;
}

.window-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 40px;
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.window-preview h3 {
    margin: 15px 0 10px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.window-preview p {
    margin: 5px 0;
    opacity: 0.8;
    max-width: 500px;
}

.preview-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.preview-open-btn, .preview-enhanced-btn {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.2));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-open-btn:hover, .preview-enhanced-btn:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(240, 147, 251, 0.3));
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

.preview-enhanced-btn {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.preview-enhanced-btn:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
    border-color: rgba(76, 175, 80, 0.5);
}

.success-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: white;
    padding: 40px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.success-preview h3 {
    margin: 15px 0 10px 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4caf50;
}

.success-preview p {
    margin: 5px 0;
    opacity: 0.8;
    max-width: 500px;
}

.proxy-enhanced-btn {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.proxy-enhanced-btn:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3), rgba(139, 195, 74, 0.3));
    border-color: rgba(76, 175, 80, 0.5);
}

/* Direct Content Display Styles */
.direct-content-area {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: white;
}

.direct-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.direct-content-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.direct-content-title {
    font-weight: 600;
    font-size: 1rem;
}

.direct-content-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.direct-content-body {
    flex: 1;
    padding: 0;
    margin: 0;
    background: white;
}

.direct-content-body * {
    max-width: 100%;
}

.direct-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.direct-content-body a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.direct-content-body a:hover {
    text-decoration: underline;
}

.direct-content-body h1, .direct-content-body h2, .direct-content-body h3 {
    color: #2c3e50;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.direct-content-body table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

.direct-content-body th, .direct-content-body td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.direct-content-body th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.direct-content-body input[type="text"], .direct-content-body input[type="search"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin: 10px 0;
}

.direct-content-body button {
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.direct-content-body button:hover {
    background: #5a67d8;
}
