@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 300;
src: url('/panel/rework/fonts/poppins-v23-latin-300.woff2') format('woff2');
}
@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
src: url('/panel/rework/fonts/poppins-v23-latin-regular.woff2') format('woff2');
}
@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
src: url('/panel/rework/fonts/poppins-v23-latin-500.woff2') format('woff2');
}
@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 600;
src: url('/panel/rework/fonts/poppins-v23-latin-600.woff2') format('woff2');
}
@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 700;
src: url('/panel/rework/fonts/poppins-v23-latin-700.woff2') format('woff2');
}
@font-face {
font-display: swap;
font-family: 'Poppins';
font-style: normal;
font-weight: 800;
src: url('/panel/rework/fonts/poppins-v23-latin-800.woff2') format('woff2');
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--gray-900: #111827;
--gray-800: #1f2937;
--gray-700: #374151;
--gray-600: #4b5563;
--gray-500: #6b7280;
--gray-400: #9ca3af;
--gray-300: #d1d5db;
--primary: #FF0000;
--primary-light: #FF3333;
--primary-dark: #CC0000;
--primary-hover: #B30000;
--rgba-primary-1: rgba(255, 0, 0, 0.1);
--rgba-primary-2: rgba(255, 0, 0, 0.2);
--rgba-primary-3: rgba(255, 0, 0, 0.3);
--success: #09BD3C;
--warning: #FFCF6D;
--danger: #FC2E53;
--text-primary: #ffffff;
--text-secondary: #9ca3af;
}

body {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #161717;
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

header {
background: rgba(22, 23, 23, 0.85);
border-bottom: 1px solid rgba(255, 0, 0, 0.15);
padding: 0;
position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(16px) saturate(180%);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
opacity: 0.5;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.25rem 0;
position: relative;
}

.logo {
display: flex;
align-items: center;
gap: 0.75rem;
text-decoration: none;
position: relative;
padding: 0.5rem 0;
transition: all 0.3s ease;
}

.logo img {
height: 2.5rem;
width: auto;
object-fit: contain;
filter: drop-shadow(0 0 6px rgba(255, 0, 0, 0.3));
transition: all 0.3s ease;
}

.logo:hover img {
filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
transform: scale(1.05);
}

.logo-text {
font-size: 1.5rem;
font-weight: 800;
color: var(--primary);
letter-spacing: -0.3px;
position: relative;
text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.logo:hover .logo-text {
text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}

.nav-links {
display: flex;
gap: 1.5rem;
align-items: center;
position: relative;
padding: 0.5rem 0;
}

.nav-links a:not(.btn-primary) {
color: var(--text-secondary);
text-decoration: none;
font-weight: 500;
padding: 0.5rem 0;
position: relative;
transition: all 0.3s ease;
font-size: 0.95rem;
}

.nav-links a:not(.btn-primary)::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:not(.btn-primary):hover {
color: var(--primary);
}

.nav-links a:not(.btn-primary):hover::after {
width: 100%;
}

.btn-primary {
background: linear-gradient(135deg, var(--primary), var(--primary-dark));
border: none;
color: #000;
padding: 1.125rem 2.25rem;
border-radius: 0.625rem;
text-decoration: none;
font-weight: 700;
font-family: 'Poppins', sans-serif;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
display: inline-block;
position: relative;
z-index: 10;
box-shadow: 
0 4px 14px rgba(255, 0, 0, 0.4),
0 0 0 0 rgba(255, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
line-height: 1.4;
position: relative;
overflow: hidden;
text-transform: uppercase;
font-size: 0.875rem;
letter-spacing: 0.5px;
white-space: nowrap;
}

.btn-primary::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-primary:hover::before {
left: 100%;
}

.btn-primary:hover {
background: linear-gradient(135deg, var(--primary-light), var(--primary));
transform: translateY(-3px) scale(1.02);
box-shadow: 
0 8px 24px rgba(255, 0, 0, 0.5),
0 0 0 4px rgba(255, 0, 0, 0.2),
inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
transform: translateY(-1px) scale(0.98);
}

.btn-primary:focus {
outline: none;
box-shadow: 
0 4px 14px rgba(255, 0, 0, 0.4),
0 0 0 4px rgba(255, 0, 0, 0.3),
inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero {
padding: 8rem 0 6rem;
text-align: center;
background: linear-gradient(135deg, #161717 0%, #1a1b1c 50%, #161717 100%);
position: relative;
overflow: hidden;
}

.hero::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 50%);
animation: pulse 8s ease-in-out infinite;
pointer-events: none;
}

.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
linear-gradient(45deg, transparent 30%, rgba(255, 0, 0, 0.03) 50%, transparent 70%),
linear-gradient(-45deg, transparent 30%, rgba(255, 0, 0, 0.03) 50%, transparent 70%);
background-size: 200% 200%;
animation: diagonalMove 20s linear infinite;
pointer-events: none;
}

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

@keyframes diagonalMove {
0% { background-position: 0% 0%, 100% 100%; }
100% { background-position: 100% 100%, 0% 0%; }
}

.hero h1 {
font-size: 4.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
color: #ffffff;
line-height: 1.1;
position: relative;
z-index: 1;
letter-spacing: -0.02em;
}

.hero h1 .highlight {
position: relative;
display: inline-block;
background: linear-gradient(135deg, var(--primary), var(--primary-light));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.6));
}

.hero p {
font-size: 1.35rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
position: relative;
z-index: 1;
}

.stats-section {
padding: 4rem 0;
background: #1a1b1c;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin-top: 2rem;
}

.stats-grid .stat-card {
min-width: 0;
}

@media (max-width: 1200px) {
.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}

.stat-card {
background: linear-gradient(135deg, rgba(26, 27, 28, 0.8), rgba(26, 27, 28, 0.6));
border: 1px solid rgba(75, 74, 74, 0.5);
border-radius: 1rem;
padding: 1.75rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 
0 4px 6px -1px rgba(0, 0, 0, 0.2),
0 2px 4px -2px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
min-width: 0;
}

.stat-card::before {
display: none;
}

.stat-card::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
z-index: 0;
}

.stat-card:hover {
transform: translateY(-10px);
box-shadow: 
0 20px 50px rgba(255, 0, 0, 0.35),
0 0 0 1px rgba(255, 0, 0, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
border-color: var(--primary);
background: linear-gradient(135deg, rgba(26, 27, 28, 0.95), rgba(26, 27, 28, 0.85));
}


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

.stat-card h4 {
margin: 0;
}

.stat-card p {
margin: 0;
}

.stat-content {
display: flex;
align-items: center;
gap: 1rem;
position: relative;
z-index: 1;
}

.stat-icon {
width: 5.3125rem;
height: 5.3125rem;
min-width: 5.3125rem;
background: var(--rgba-primary-1);
border-radius: 3.125rem;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
font-size: 2rem;
}

.stat-icon.success {
background: rgba(9, 189, 60, 0.1);
color: var(--success);
}

.stat-icon.warning {
background: rgba(255, 207, 109, 0.1);
color: var(--warning);
}

.stat-icon.danger {
background: rgba(252, 46, 83, 0.1);
color: var(--danger);
}

.stat-body {
flex: 1;
min-width: 0;
overflow: visible;
}

.stat-label {
color: var(--text-secondary);
font-size: 0.875rem;
margin-bottom: 0.25rem;
font-weight: 400;
}

.stat-value {
font-size: clamp(1rem, 4vw, 1.75rem);
font-weight: 700;
color: #ffffff;
margin: 0;
line-height: 1.2;
white-space: nowrap;
display: block;
word-break: keep-all;
letter-spacing: -0.02em;
}

.stat-24h {
display: inline-flex;
align-items: center;
font-size: 0.75rem;
color: var(--text-secondary);
margin-top: 0.5rem;
font-weight: 500;
}

.stat-24h svg {
color: var(--primary);
opacity: 0.8;
}

@media (min-width: 1200px) {
.stat-value {
font-size: clamp(1.25rem, 1.5vw, 1.75rem);
}
}

@media (max-width: 768px) {
.stat-value {
font-size: clamp(1rem, 5vw, 1.5rem);
}
}

.plans-section {
padding: 4rem 0;
background: #161717;
}

.section-title-wrapper {
position: relative;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
margin-bottom: 1rem;
gap: 1rem;
}

.section-title-wrapper .live-badge {
justify-self: start;
}

.section-title-wrapper .reload-wrapper {
justify-self: end;
}

.section-title {
text-align: center;
font-size: 3rem;
font-weight: 800;
margin-bottom: 0;
color: #ffffff;
position: relative;
display: inline-block;
width: 100%;
}

.live-badge {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 0, 0, 0.1);
border: 1px solid var(--primary);
border-radius: 2rem;
padding: 0.5rem 1rem;
font-size: 0.75rem;
font-weight: 700;
color: var(--primary);
text-transform: uppercase;
letter-spacing: 0.1em;
}

.live-dot {
width: 8px;
height: 8px;
background: var(--primary);
border-radius: 50%;
animation: livePulse 2s ease-in-out infinite;
box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
display: inline-block;
}

@keyframes livePulse {
0%, 100% {
opacity: 1;
transform: scale(1);
box-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
}
50% {
opacity: 0.6;
transform: scale(1.3);
box-shadow: 0 0 12px rgba(255, 0, 0, 0.9);
}
}

.reload-wrapper {
display: flex;
align-items: center;
color: var(--text-secondary);
font-size: 0.875rem;
}

.reload-icon-container {
position: relative;
width: 40px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}

.reload-icon {
width: 32px;
height: 32px;
transition: color 0.3s ease;
position: absolute;
}

.reload-icon-container:hover .reload-icon {
color: var(--primary);
}

.reload-icon.rotating {
animation: rotateReload 1s linear infinite;
}

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

.reload-timer {
position: absolute;
font-weight: 800;
font-size: 0.9rem;
color: var(--primary);
z-index: 1;
line-height: 1;
text-shadow: 0 0 6px rgba(255, 0, 0, 0.6);
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: var(--primary);
border-radius: 2px;
}

.section-subtitle {
text-align: center;
color: var(--text-secondary);
margin-bottom: 3rem;
font-size: 1.2rem;
margin-top: 2rem;
}

.plans-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 3rem;
}

.plans-grid .plan-card {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}

@media (max-width: 1200px) {
.plans-grid {
grid-template-columns: repeat(2, 1fr);
}
}

.plan-card {
background: linear-gradient(135deg, rgba(26, 27, 28, 0.8), rgba(26, 27, 28, 0.6));
border: 1px solid rgba(75, 74, 74, 0.5);
border-radius: 1rem;
padding: 2.5rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
box-shadow: 
0 4px 6px -1px rgba(0, 0, 0, 0.2),
0 2px 4px -2px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
backdrop-filter: blur(10px);
min-width: 0;
word-wrap: break-word;
box-sizing: border-box;
}

.plan-card .mb-3 {
margin-bottom: 1rem;
}

.plan-card::before {
display: none;
}


.plan-card::after {
content: '';
position: absolute;
top: -100%;
left: -100%;
width: 300%;
height: 300%;
background: conic-gradient(from 0deg, transparent, rgba(255, 0, 0, 0.1), transparent);
animation: rotate 8s linear infinite;
opacity: 0;
transition: opacity 0.4s ease;
pointer-events: none;
z-index: 1;
}

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

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

.plan-card:hover {
transform: translateY(-10px);
box-shadow: 
0 20px 50px rgba(255, 0, 0, 0.35),
0 0 0 1px rgba(255, 0, 0, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
border-color: var(--primary);
background: linear-gradient(135deg, rgba(26, 27, 28, 0.95), rgba(26, 27, 28, 0.85));
}


.plan-card h5 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--text-primary);
}

.plan-card h5 img {
height: 1.5em;
vertical-align: middle;
margin-right: 6px;
}

.plan-price {
display: flex;
align-items: baseline;
margin-bottom: 1.75rem;
flex-wrap: nowrap;
min-width: 0;
max-width: 100%;
white-space: nowrap;
}

.plan-price-currency {
font-weight: 600;
font-size: 1.875rem;
line-height: 1;
color: var(--primary);
flex-shrink: 0;
align-self: baseline;
}

.plan-price-value {
font-size: clamp(1.5rem, 3vw, 2.25rem);
line-height: 1;
font-weight: 800;
letter-spacing: -0.025em;
color: var(--primary);
flex-shrink: 0;
white-space: nowrap;
}

.plan-price-time {
font-size: clamp(0.7rem, 1vw, 0.9rem);
font-weight: 400;
color: var(--text-secondary);
margin-left: 0.25rem;
white-space: nowrap;
flex-shrink: 0;
}

.plan-features {
list-style: none;
margin: 0 0 1.75rem 0;
padding: 0;
}

.plan-features li {
margin-top: 1.25rem;
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
border-bottom: 1px solid #4B4A4A;
}

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

.plan-features li svg {
width: 1.25rem;
height: 1.25rem;
flex-shrink: 0;
}

.plan-features li .vnm-500 {
color: var(--success) !important;
}

.plan-features li .dvnm-500 {
color: var(--gray-600) !important;
}

.plan-features li .plan-spec {
line-height: 1.25;
color: var(--text-secondary);
}

.plan-features li .plan-nospec {
opacity: 0.5;
}

.plan-card-sale {
border-color: var(--primary);
box-shadow: 
0 4px 6px -1px rgba(0, 0, 0, 0.2),
0 2px 4px -2px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
overflow: hidden;
}


.plan-sale-badge {
position: absolute;
top: 0;
right: 0;
background: linear-gradient(135deg, var(--primary), #cc0000);
color: #ffffff;
padding: 0.5rem 1.5rem;
font-size: 0.7rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.1em;
box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
z-index: 10;
border-radius: 0 1rem 0 1rem;
}

.plan-card-sale {
overflow: visible;
}

.plan-card-sale::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 9;
background: transparent;
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.plan-price-old {
position: absolute;
top: -1.5rem;
left: 0;
font-size: 1.125rem;
color: var(--text-secondary);
text-decoration: line-through;
opacity: 0.6;
}

.plan-card-sale .plan-price {
position: relative;
margin-top: 1rem;
}

.plan-btn {
width: 100%;
text-align: center;
position: relative;
z-index: 10;
}

.features-section {
padding: 4rem 0;
background: #1a1b1c;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.feature-card {
background: linear-gradient(135deg, rgba(26, 27, 28, 0.8), rgba(26, 27, 28, 0.6));
border: 1px solid rgba(75, 74, 74, 0.5);
border-radius: 1rem;
padding: 2.5rem;
text-align: center;
box-shadow: 
0 4px 6px -1px rgba(0, 0, 0, 0.2),
0 2px 4px -2px rgba(0, 0, 0, 0.1),
inset 0 1px 0 rgba(255, 255, 255, 0.05);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
}

.feature-card::before {
display: none;
}


.feature-card::after {
content: '';
position: absolute;
inset: -2px;
border-radius: 1.25rem;
padding: 2px;
background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
opacity: 0;
transition: opacity 0.4s ease;
}

.feature-card:hover {
transform: translateY(-10px);
box-shadow: 
0 20px 50px rgba(255, 0, 0, 0.35),
0 0 0 1px rgba(255, 0, 0, 0.25),
inset 0 1px 0 rgba(255, 255, 255, 0.1);
border-color: var(--primary);
background: linear-gradient(135deg, rgba(26, 27, 28, 0.95), rgba(26, 27, 28, 0.85));
}


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

.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: var(--rgba-primary-1);
border-radius: 1.5rem;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
background: var(--rgba-primary-2);
transform: scale(1.1);
}

.feature-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}

.feature-desc {
color: var(--text-secondary);
}

footer {
background: #161717;
border-top: 1px solid #4B4A4A;
padding: 3rem 0;
text-align: center;
color: var(--text-secondary);
}

.footer-links {
display: flex;
justify-content: center;
gap: 2rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
padding: 0.5rem 0;
}

.footer-links a svg {
transition: transform 0.3s ease;
}

.footer-links a:hover {
color: var(--primary);
}

.footer-links a:hover svg {
transform: translateY(-2px);
}

footer p {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 0.25rem;
}

.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid var(--gray-700);
border-top-color: var(--primary);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}

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

@media (max-width: 768px) {
.container {
padding: 0 1rem;
}

nav {
padding: 0.75rem 0;
}

.hero h1 {
font-size: 2.5rem;
}

.nav-links {
gap: 0.75rem;
}

.nav-links a:not(.btn-primary) {
font-size: 0.85rem;
}

.btn-primary {
padding: 0.875rem 1.5rem;
font-size: 0.75rem;
}

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

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

.logo-text {
display: none;
}

.logo img {
height: 1.75rem;
}

.section-title-wrapper {
flex-wrap: wrap;
gap: 0.5rem;
}

.live-badge {
font-size: 0.65rem;
padding: 0.4rem 0.75rem;
}

.reload-wrapper {
font-size: 0.75rem;
}

.reload-icon-container {
width: 36px;
height: 36px;
}

.reload-icon {
width: 28px;
height: 28px;
}

.reload-timer {
font-size: 0.6rem;
font-weight: 700;
}
}
