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

:root {
    --primary-color: #00ff88;
    --primary-dark: #00cc6a;
    --secondary-color: #00d4ff;
    --accent-color: #ff0080;
    --bg-color: #0a0a0f;
    --bg-light: #151520;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --border-color: #2a2a3e;
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --danger-color: #ff3366;
    --neon-glow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Vazirmatn', sans-serif;
    background: #0a0a0f;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 128, 0.05) 0%, transparent 70%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 136, 0.03) 2px,
            rgba(0, 255, 136, 0.03) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(20px); }
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.loader-line {
    width: 8px;
    height: 60px;
    background: linear-gradient(180deg, #06b6d4, #3b82f6);
    border-radius: 4px;
    animation: loaderAnimation 1.2s ease-in-out infinite;
}

.loader-line:nth-child(1) {
    animation-delay: 0s;
}

.loader-line:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-line:nth-child(3) {
    animation-delay: 0.4s;
}

.loader-line:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes loaderAnimation {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        opacity: 0.5;
    }
    20% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.loader-text h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    animation: textPulse 2s ease-in-out infinite;
}

.loader-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    animation: textFade 2s ease-in-out infinite;
}

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

@keyframes textFade {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}


@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

main > section {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    width: 100vw;
    max-width: 100%;
    border-bottom: 2px solid var(--primary-color);
    box-shadow: var(--neon-glow);
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.logo {
    text-align: right;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.5);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    color: var(--text-secondary);
    font-size: 0.75rem;
    opacity: 0.8;
}


.social-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    white-space: nowrap;
}

.social-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.ping-display {
    margin-top: 15px;
}

.ping-card-small {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
}

.ping-label-small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.ping-value-small {
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    font-size: 1rem;
}

.ping-unit-small {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.5);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 136, 0.5); }
    100% { text-shadow: 0 0 30px rgba(0, 255, 136, 1), 0 0 60px rgba(0, 255, 136, 0.8); }
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

/* DNS Cards */
.dns-list {
    margin-bottom: 60px;
}

.dns-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dns-card {
    background: rgba(26, 26, 46, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dns-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.dns-card:hover::before {
    left: 100%;
}

.dns-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(26, 31, 58, 0.85));
}

.dns-card.featured {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary-color);
    box-shadow: var(--neon-glow);
    animation: pulseGlow 3s ease-in-out infinite;
}

.dns-card.featured:hover {
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.5);
    transform: translateY(-10px) scale(1.03);
}

.dns-card.coming-soon {
    background: rgba(255, 170, 0, 0.05);
    border: 2px solid var(--warning-color);
    opacity: 0.8;
    cursor: not-allowed;
}

.dns-card.coming-soon:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.5), 0 0 40px rgba(255, 170, 0, 0.3);
}

/* Pricing Plans Section */
.pricing-plans-section {
    margin-bottom: 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    background: rgba(26, 26, 46, 0.9);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.2);
}

.pricing-card.featured {
    border: 2px solid #ffc107;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
    background: rgba(26, 26, 46, 0.95);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.5);
    transform: translateY(-8px) scale(1.02);
}

.special-offer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    z-index: 10;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.pricing-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.price-original {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffc107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
    margin-bottom: 5px;
}

.price-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #ffc107;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 193, 7, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.buy-button-wrapper {
    position: relative;
    margin-top: 20px;
}

.buy-button {
    width: 100%;
    padding: 16px 30px;
    background: #ffc107;
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Vazirmatn', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.buy-button.blurred {
    filter: blur(4px);
    pointer-events: none;
    opacity: 0.6;
}

.blur-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 193, 7, 0.95);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.button-text {
    opacity: 0;
}

/* Custom DNS Section - Banner Style */
.custom-dns-section {
    margin-bottom: 60px;
    padding: 0 20px;
}

.custom-dns-banner {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.15) 0%, 
        rgba(255, 165, 0, 0.15) 50%,
        rgba(255, 0, 128, 0.15) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(255, 0, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.custom-dns-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.subscription-plans-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    filter: blur(2px);
}

.plan-bg {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    font-family: 'Vazirmatn', sans-serif;
    white-space: nowrap;
    animation: planFade 4s ease-in-out infinite;
}

.plan-bg:nth-child(1) {
    animation-delay: 0s;
}

.plan-bg:nth-child(2) {
    animation-delay: 1s;
}

.plan-bg:nth-child(3) {
    animation-delay: 2s;
}

.plan-bg:nth-child(4) {
    animation-delay: 3s;
}

@keyframes planFade {
    0%, 100% {
        opacity: 0.1;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.05);
    }
}

.custom-dns-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.coming-soon-badge-large {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 2px solid rgba(255, 170, 0, 0.5);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: comingSoonPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
    backdrop-filter: blur(10px);
}

@keyframes comingSoonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 170, 0, 0.5);
        transform: scale(1.05);
    }
}

.custom-dns-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(255, 0, 128, 0.5),
        0 0 40px rgba(255, 0, 128, 0.3);
    background: linear-gradient(135deg, #ffffff, rgba(255, 0, 128, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-dns-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.coming-soon-content {
    text-align: center;
    padding: 20px 0;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.6));
}

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

.coming-soon-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.coming-soon-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 40px rgba(0, 255, 136, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 60px rgba(0, 255, 136, 0.5); }
}

.dns-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dns-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge.fast {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge.reliable {
    background: rgba(99, 102, 241, 0.2);
    color: #6366f1;
}

.badge.secure {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.badge.featured-badge {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3), rgba(0, 212, 255, 0.3));
    color: #67e8f9;
    border: 1px solid rgba(0, 255, 136, 0.5);
    animation: shimmer 2s ease-in-out infinite;
}

.badge.public-badge {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.5);
}

.badge.coming-soon-badge {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.badge.premium-badge {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3), rgba(255, 165, 0, 0.3));
    color: #ff6b6b;
    border: 1px solid rgba(255, 0, 128, 0.6);
    animation: premiumGlow 2s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% { box-shadow: 0 0 10px rgba(255, 0, 128, 0.4); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.8), 0 0 30px rgba(255, 165, 0, 0.4); }
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.dns-info {
    margin-bottom: 15px;
}

.dns-item {
    margin-bottom: 15px;
}

.dns-item label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.dns-value {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dns-value code {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 15px;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.dns-value code:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.copy-btn {
    padding: 10px 20px;
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.copy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: #000;
    transform: scale(1.08);
    box-shadow: var(--neon-glow);
}

.copy-btn:active {
    transform: scale(0.98);
}

.dns-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.plan-features-simple {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.plan-features-simple li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.plan-features-simple li:last-child {
    border-bottom: none;
}

.plan-features-simple li:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.coming-soon-btn {
    opacity: 0.7;
    cursor: not-allowed !important;
    pointer-events: none;
}

.coming-soon-btn:hover {
    transform: none !important;
    background: rgba(0, 255, 136, 0.1) !important;
    color: var(--primary-color) !important;
}

.dns-card.coming-soon-blur {
    position: relative;
    pointer-events: none;
    cursor: not-allowed;
    overflow: hidden;
}

.dns-card.coming-soon-blur:hover {
    transform: none;
}

.card-content-blurred {
    filter: blur(3px);
    opacity: 0.7;
    pointer-events: none;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    z-index: 10;
    pointer-events: none;
}

.coming-soon-text {
    background: rgba(255, 170, 0, 0.9);
    color: #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 170, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: comingSoonPulse 2s ease-in-out infinite;
}

@keyframes comingSoonPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 170, 0, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 170, 0, 0.8);
        transform: scale(1.05);
    }
}

/* Instructions */
.instructions {
    margin-bottom: 60px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Vazirmatn', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.tab-btn:hover {
    background: rgba(6, 182, 212, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content ol {
    padding-right: 20px;
}

.tab-content li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.tab-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Features */
.features {
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 31, 58, 0.95), rgba(26, 31, 58, 0.85));
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(6, 182, 212, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--primary-color);
    width: 100vw;
    max-width: 100%;
    margin-top: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    left: 0;
    right: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #67e8f9;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    font-weight: 500;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* DNS Status Notification */
.dns-status-notification {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #591e1d;
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 400px;
    min-width: 300px;
}

.dns-status-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.dns-status-notification.connected {
    background: rgba(0, 255, 136, 0.15);
    border-color: rgba(0, 255, 136, 0.4);
}

.dns-status-notification.disconnected {
    background: #591e1d;
    border-color: rgba(212, 175, 55, 0.4);
    border-width: 1.5px;
}

.dns-status-notification.loading {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
}

.dns-status-notification.loading .notification-icon-wrapper {
    background: #00d4ff;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.notification-icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #f05050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(240, 80, 80, 0.4);
}

.dns-status-notification.connected .notification-icon-wrapper {
    background: #00ff88;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.4);
}

.notification-icon {
    width: 20px;
    height: 20px;
    color: white;
    fill: currentColor;
    display: block;
}

.dns-status-notification.connected .notification-icon {
    width: 18px;
    height: 18px;
}

.notification-content {
    flex: 1;
}

.notification-text {
    color: #f05050;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Vazirmatn', sans-serif;
}

.dns-status-notification.connected .notification-text {
    color: #00ff88;
}

.dns-status-notification.loading .notification-text {
    color: #00d4ff;
}

/* Responsive for notification */
@media (max-width: 768px) {
    .dns-status-notification {
        top: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .dns-status-notification {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 12px 16px;
        gap: 12px;
    }
    
    .notification-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .notification-icon {
        font-size: 16px;
    }
    
    .notification-text {
        font-size: 0.85rem;
    }
}

/* Unblocked Sites */
.unblocked-sites {
    margin-bottom: 60px;
}

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

.site-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.site-card:hover::before {
    left: 100%;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(6, 182, 212, 0.25);
    border-color: var(--primary-color);
}

.site-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.site-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-align: center;
}

.site-card ul {
    list-style: none;
    padding: 0;
}

.site-card li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding-right: 10px;
}

.site-card li:last-child {
    border-bottom: none;
}

.site-card li:hover {
    color: #67e8f9;
    padding-right: 15px;
}

.site-card li::before {
    content: '✓';
    color: var(--success-color);
    margin-left: 8px;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 1200px) {
    .container > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .dns-cards {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo {
        text-align: center;
        width: 100%;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    .header-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tabs {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .sites-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .loader-text h2 {
        font-size: 1.5rem;
    }

    .loader-line {
        width: 6px;
        height: 50px;
    }

    .ping-card-small {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .ping-value-small {
        font-size: 0.9rem;
    }

    .coming-soon-icon {
        font-size: 3rem;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .custom-dns-banner {
        padding: 40px 20px;
    }

    .custom-dns-title {
        font-size: 1.8rem;
    }

    .custom-dns-description {
        font-size: 0.95rem;
    }

    .subscription-plans-bg {
        gap: 20px;
        flex-wrap: wrap;
    }

    .plan-bg {
        font-size: 2rem;
    }

    .coming-soon-badge-large {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container > * {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .dns-card {
        padding: 20px;
    }

    .site-card {
        padding: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .ping-card-small {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .dns-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 10px 14px;
    }

    .notification-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.8rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .dns-card {
        padding: 20px;
    }

    .site-card {
        padding: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .status-text-header {
        font-size: 0.7rem;
    }

    .custom-dns-banner {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .custom-dns-title {
        font-size: 1.5rem;
    }

    .custom-dns-description {
        font-size: 0.85rem;
    }

    .subscription-plans-bg {
        gap: 15px;
    }

    .plan-bg {
        font-size: 1.5rem;
    }

    .coming-soon-badge-large {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .pricing-card {
        padding: 25px;
    }

    .plan-title {
        font-size: 1.5rem;
    }

    .price-current {
        font-size: 1.8rem;
    }

    .special-offer-badge {
        top: 15px;
        left: 15px;
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

