:root {
--neon-blue: #00d4ff;
--electric-blue: #7b2cbf;
--primary-blue: #1a3d7c;
--dark-bg: #050812;
--dark-bg-secondary: #0a0e27;
--text-white: #ffffff;
--text-light: #b8c5d6;
--gradient-main: linear-gradient(135deg, #00d4ff, #7b2cbf);
}

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

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: var(--dark-bg);
color: var(--text-white);
line-height: 1.6;
overflow-x: hidden;
}

.parallax-container {
position: relative;
min-height: 100vh;
}

.parallax-layer {
position: absolute;
width: 100%;
}

.parallax-bg {
min-height: 100vh;
background: linear-gradient(135deg, #050812 0%, #0a0e27 50%, #1a1a3e 100%);
background-attachment: fixed;
z-index: 0;
}

.parallax-bg::before {
content: '';
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
}

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

.container-main {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.main-navigation {
background: rgba(10, 14, 39, 0.9);
backdrop-filter: blur(10px);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 2px solid var(--primary-blue);
box-shadow: 0 5px 30px rgba(0, 212, 255, 0.3);
}

.nav-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}

.logo-img {
width: 50px;
height: 50px;
border-radius: 50%;
border: 2px solid var(--neon-blue);
object-fit: cover;
}

.logo-text {
font-size: 1.5rem;
font-weight: bold;
color: var(--neon-blue);
text-transform: uppercase;
letter-spacing: 2px;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-link {
color: var(--text-light);
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
position: relative;
padding: 0.5rem 0;
}

.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-main);
transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
color: var(--neon-blue);
}

.nav-link:hover::after, .nav-link.active::after {
width: 100%;
}

.burger-menu {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
}

.burger-menu span {
width: 30px;
height: 3px;
background: var(--neon-blue);
transition: all 0.3s ease;
}

.hero-section {
min-height: 90vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
text-align: center;
}

.hero-overlay {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, transparent 0%, rgba(5, 8, 18, 0.8) 100%);
}

.hero-content {
position: relative;
z-index: 2;
max-width: 800px;
padding: 2rem;
}

.glitch-text {
font-size: 4rem;
font-weight: bold;
color: var(--neon-blue);
text-transform: uppercase;
letter-spacing: 5px;
animation: glitch 3s infinite;
text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 40px rgba(123, 44, 191, 0.6);
}

@keyframes glitch {
0%, 90%, 100% { transform: translateX(0); }
92% { transform: translateX(-2px); }
94% { transform: translateX(2px); }
96% { transform: translateX(-2px); }
98% { transform: translateX(2px); }
}

.hero-subtitle {
font-size: 1.8rem;
color: var(--text-light);
margin: 1.5rem 0;
}

.hero-description {
font-size: 1.1rem;
color: var(--text-light);
margin: 2rem 0;
}

.cta-button {
display: inline-block;
padding: 1.2rem 3rem;
background: var(--gradient-main);
color: var(--text-white);
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
margin-top: 2rem;
border: none;
cursor: pointer;
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

.grid-tech-overlay {
position: absolute;
width: 100%;
height: 100%;
background-image: 
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px),
repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
pointer-events: none;
}

.section-title {
font-size: 2.5rem;
color: var(--neon-blue);
text-align: center;
margin-bottom: 3rem;
text-transform: uppercase;
letter-spacing: 3px;
position: relative;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 3px;
background: var(--gradient-main);
}

.featured-products {
padding: 5rem 0;
}

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

.product-card {
background: rgba(10, 14, 39, 0.6);
border: 1px solid var(--primary-blue);
border-radius: 15px;
overflow: hidden;
transition: all 0.3s ease;
}

.product-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.product-image {
position: relative;
overflow: hidden;
height: 300px;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
transform: scale(1.1);
}

.product-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 212, 255, 0.9);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
opacity: 1;
}

.view-details {
color: var(--text-white);
font-weight: bold;
font-size: 1.2rem;
text-transform: uppercase;
}

.product-card h3 {
padding: 1.5rem 1.5rem 0.5rem;
color: var(--neon-blue);
font-size: 1.3rem;
}

.product-description {
padding: 0 1.5rem;
color: var(--text-light);
font-size: 0.95rem;
}

.product-price {
padding: 1rem 1.5rem 1.5rem;
color: var(--neon-blue);
font-size: 1.5rem;
font-weight: bold;
}

.admin-frame-section {
padding: 5rem 0;
background: rgba(5, 8, 18, 0.5);
}

.admin-iframe-wrapper {
position: relative;
width: 100%;
height: 600px;
border: 2px solid var(--primary-blue);
border-radius: 15px;
overflow: hidden;
background: rgba(10, 14, 39, 0.8);
}

.admin-demo-frame {
display: none;
}

.admin-overlay-demo {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}

.admin-mock-header {
background: linear-gradient(135deg, var(--neon-blue), var(--electric-blue));
padding: 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
}

.admin-logo {
font-size: 1.5rem;
font-weight: bold;
color: var(--text-white);
}

.admin-stats {
display: flex;
gap: 2rem;
}

.stat-box {
display: flex;
flex-direction: column;
text-align: center;
}

.stat-label {
font-size: 0.8rem;
opacity: 0.9;
}

.stat-value {
font-size: 1.5rem;
font-weight: bold;
}

.admin-mock-content {
display: flex;
flex: 1;
}

.admin-sidebar {
width: 200px;
background: rgba(10, 14, 39, 0.9);
padding: 1.5rem;
border-right: 1px solid var(--primary-blue);
}

.sidebar-item {
padding: 1rem;
margin-bottom: 0.5rem;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
color: var(--text-light);
}

.sidebar-item:hover, .sidebar-item.active {
background: rgba(0, 212, 255, 0.2);
color: var(--neon-blue);
}

.admin-main-panel {
flex: 1;
padding: 2rem;
}

.admin-main-panel h3 {
color: var(--neon-blue);
margin-bottom: 1.5rem;
}

.charts-grid {
display: flex;
justify-content: center;
}

.chart-placeholder {
display: flex;
align-items: flex-end;
gap: 1rem;
height: 300px;
}

.chart-bar {
width: 60px;
background: var(--gradient-main);
border-radius: 5px 5px 0 0;
animation: growBar 1s ease-out;
}

@keyframes growBar {
from { height: 0; }
}

.tech-features {
padding: 5rem 0;
}

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

.feature-box {
background: rgba(10, 14, 39, 0.6);
border: 1px solid var(--primary-blue);
border-radius: 15px;
padding: 2.5rem;
text-align: center;
transition: all 0.3s ease;
}

.feature-box:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-box h3 {
color: var(--neon-blue);
margin-bottom: 1rem;
font-size: 1.3rem;
}

.feature-box p {
color: var(--text-light);
line-height: 1.7;
}

.testimonials-section {
padding: 5rem 0;
background: rgba(5, 8, 18, 0.5);
}

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

.testimonial-card {
background: rgba(10, 14, 39, 0.6);
border: 1px solid var(--primary-blue);
border-radius: 15px;
padding: 2rem;
transition: all 0.3s ease;
}

.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.testimonial-rating {
color: #ffd700;
font-size: 1.5rem;
margin-bottom: 1rem;
}

.testimonial-text {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 0.3rem;
}

.testimonial-author strong {
color: var(--neon-blue);
}

.testimonial-author span {
color: var(--text-light);
font-size: 0.9rem;
}

.newsletter-section {
padding: 5rem 0;
}

.newsletter-box {
background: var(--gradient-main);
padding: 4rem;
border-radius: 20px;
text-align: center;
}

.newsletter-box h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

.newsletter-box p {
font-size: 1.1rem;
margin-bottom: 2rem;
}

.newsletter-form {
display: flex;
max-width: 600px;
margin: 0 auto;
gap: 1rem;
}

.newsletter-form input {
flex: 1;
padding: 1rem;
border: none;
border-radius: 50px;
font-size: 1rem;
}

.subscribe-btn {
padding: 1rem 2.5rem;
background: var(--dark-bg);
color: var(--text-white);
border: none;
border-radius: 50px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}

.subscribe-btn:hover {
transform: scale(1.05);
}

.main-footer {
background: rgba(10, 14, 39, 0.9);
border-top: 2px solid var(--primary-blue);
padding: 3rem 0 1rem;
margin-top: 5rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.footer-section h3, .footer-section h4 {
color: var(--neon-blue);
margin-bottom: 1rem;
}

.footer-section p {
color: var(--text-light);
line-height: 1.8;
margin-bottom: 1.5rem;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 0.8rem;
}

.footer-section ul li a {
color: var(--text-light);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: var(--neon-blue);
}

.social-links {
display: flex;
gap: 1rem;
}

.social-links a {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 212, 255, 0.1);
border: 1px solid var(--primary-blue);
border-radius: 50%;
color: var(--neon-blue);
transition: all 0.3s ease;
}

.social-links a:hover {
background: var(--neon-blue);
color: var(--dark-bg);
transform: translateY(-3px);
}

.contact-info li {
color: var(--text-light);
margin-bottom: 0.8rem;
}

.footer-bottom {
text-align: center;
padding: 2rem;
margin-top: 2rem;
border-top: 1px solid var(--primary-blue);
color: var(--text-light);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(10, 14, 39, 0.98);
border-top: 2px solid var(--neon-blue);
padding: 2rem;
z-index: 10000;
box-shadow: 0 -5px 30px rgba(0, 212, 255, 0.3);
display: none;
}

.cookie-banner.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from { transform: translateY(100%); }
to { transform: translateY(0); }
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
}

.cookie-content h3 {
color: var(--neon-blue);
margin-bottom: 1rem;
}

.cookie-content p {
color: var(--text-light);
margin-bottom: 1.5rem;
line-height: 1.6;
}

.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1rem;
}

.cookie-btn {
padding: 0.8rem 1.5rem;
border: none;
border-radius: 50px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
}

.accept-btn {
background: var(--gradient-main);
color: var(--text-white);
}

.customize-btn {
background: rgba(0, 212, 255, 0.2);
color: var(--neon-blue);
border: 1px solid var(--neon-blue);
}

.reject-btn {
background: transparent;
color: var(--text-light);
border: 1px solid var(--text-light);
}

.cookie-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cookie-link {
color: var(--neon-blue);
text-decoration: none;
}

.cookie-link:hover {
text-decoration: underline;
}

@media (max-width: 768px) {
.burger-menu {
display: flex;
}
.nav-menu {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: rgba(10, 14, 39, 0.98);
flex-direction: column;
padding: 2rem;
display: none;
border-top: 1px solid var(--primary-blue);
}
.nav-menu.active {
display: flex;
}
.glitch-text {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.3rem;
}
.newsletter-form {
flex-direction: column;
}
.products-grid, .features-grid, .testimonials-carousel {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.glitch-text {
font-size: 2rem;
}
.section-title {
font-size: 1.8rem;
}
.container-main {
padding: 0 1rem;
}
}