@charset "utf-8";

:root { --primary: #8b5cf6; --secondary: #3b82f6; --accent: #a855f7; --accent-light: #7e22ce; --dark: #0a0a0f; --darker: #050508; --glass: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); --text: #ffffff; --text-gray: #a1a1aa; --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); --success: #10b981; --warning: #f59e0b; --danger: #ef4444; }

* { margin: 0px; padding: 0px; box-sizing: border-box; font-family: Montserrat, sans-serif; scrollbar-width: thin; scrollbar-color: var(--primary) var(--dark); }

::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background: var(--dark); }

::-webkit-scrollbar-thumb { background: linear-gradient(var(--primary), var(--secondary)); border-radius: 4px; }

body { background-color: var(--dark); color: var(--text); overflow-x: hidden; position: relative; }

.bg-blobs { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; z-index: -2; background: radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.12), transparent 30%), radial-gradient(circle at 85% 30%, rgba(168, 85, 247, 0.12), transparent 30%); }

.header { position: fixed; top: 0px; width: 100%; padding: 20px 5%; z-index: 1000; background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; transition: var(--transition-smooth); }

.header:hover { background: rgba(10, 10, 15, 0.95); backdrop-filter: blur(30px); }

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.logo-img { width: 45px; height: 45px; border-radius: 10px; box-shadow: rgba(139, 92, 246, 0.5) 0px 0px 15px; transition: var(--transition-smooth); }

.logo:hover .logo-img { transform: rotate(360deg); box-shadow: rgba(168, 85, 247, 0.6) 0px 0px 25px; }

.logo-text { font-family: Orbitron, sans-serif; font-size: 1.4rem; font-weight: 900; text-transform: uppercase; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 1px; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: space-between; padding: 120px 5% 50px; max-width: 1400px; margin: 0px auto; position: relative; animation: 1.5s ease-out 0s 1 normal none running fadeIn; }

@keyframes fadeIn { 
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0px); }
}

.hero-content { flex: 1 1 0%; z-index: 2; }

.hero-title { font-family: Orbitron, sans-serif; font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }

.gradient-text { background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; }

.hero-subtitle { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; max-width: 600px; border-left: 3px solid var(--primary); padding-left: 20px; animation: 1s ease-out 0.3s 1 normal both running slideIn; }

@keyframes slideIn { 
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0px); }
}

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; background: linear-gradient(90deg, var(--primary), var(--secondary)); color: white; text-decoration: none; border-radius: 12px; font-weight: 700; font-size: 1.1rem; position: relative; overflow: hidden; transition: var(--transition-smooth); border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: rgba(139, 92, 246, 0.4) 0px 10px 25px; }

.btn::before { content: ""; position: absolute; top: 0px; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: 0.5s; }

.btn:hover { transform: translateY(-5px) scale(1.05); box-shadow: rgba(139, 92, 246, 0.6) 0px 15px 35px; }

.btn:hover::before { left: 100%; }

.hero-image-container { flex: 1 1 0%; display: flex; justify-content: center; position: relative; animation: 6s ease-in-out 0s infinite normal none running float; }

@keyframes float { 
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-image { width: 100%; max-width: 700px; border-radius: 20px; border: 2px solid var(--glass-border); box-shadow: rgba(139, 92, 246, 0.2) 0px 0px 50px; transition: var(--transition-smooth); }

.hero-image:hover { transform: scale(1.02); box-shadow: rgba(168, 85, 247, 0.3) 0px 0px 70px; border-color: var(--accent); }

section { padding: 100px 5%; animation: 1s ease-out 0s 1 normal none running fadeInUp; }

@keyframes fadeInUp { 
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0px); }
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-title { font-family: Orbitron, sans-serif; font-size: 2.5rem; margin-bottom: 15px; }

.section-desc { color: var(--text-gray); max-width: 600px; margin: 0px auto; }

.glass-card { background: rgba(20, 20, 25, 0.7); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 30px; transition: var(--transition-smooth); position: relative; overflow: hidden; }

.glass-card:hover { transform: translateY(-10px) scale(1.02); background: rgba(30, 30, 38, 0.8); border-color: var(--accent); box-shadow: rgba(139, 92, 246, 0.2) 0px 20px 40px; }

.glass-card::after { content: ""; position: absolute; inset: 0px; border-radius: 24px; box-shadow: rgba(139, 92, 246, 0.05) 0px 0px 20px inset; opacity: 0; transition: var(--transition-smooth); pointer-events: none; }

.glass-card:hover::after { opacity: 1; }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 30px; max-width: 1400px; margin: 0px auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1400px; margin: 0px auto; }

.feature-card { text-align: center; }

.feature-icon-box { width: 70px; height: 70px; background: rgba(139, 92, 246, 0.1); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0px auto 20px; font-size: 1.8rem; color: var(--primary); border: 1px solid rgba(139, 92, 246, 0.3); transition: var(--transition-smooth); }

.feature-card:hover .feature-icon-box { background: var(--primary); color: white; transform: rotate(360deg) scale(1.1); box-shadow: rgba(139, 92, 246, 0.5) 0px 0px 30px; }

.product-card { padding: 0px; display: flex; flex-direction: column; cursor: pointer; }

.product-img-box { position: relative; height: 220px; overflow: hidden; border-bottom: 1px solid var(--glass-border); }

.product-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }

.product-card:hover .product-img { transform: scale(1.15); }

.product-content { padding: 25px; flex: 1 1 0%; display: flex; flex-direction: column; }

.price-tag { font-family: Orbitron, sans-serif; font-size: 1.5rem; color: var(--accent); font-weight: 700; margin: 10px 0px 20px; text-shadow: rgba(168, 85, 247, 0.4) 0px 0px 10px; transition: var(--transition-smooth); }

.product-card:hover .price-tag { transform: scale(1.1); color: var(--primary); }

.btn-sm { margin-top: auto; padding: 12px; text-align: center; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: white; text-decoration: none; transition: var(--transition-smooth); font-weight: 600; cursor: pointer; }

.btn-sm:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: rgba(139, 92, 246, 0.4) 0px 5px 15px; }

.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }

.review-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); transition: var(--transition-smooth); }

.glass-card:hover .review-avatar { transform: rotate(360deg); border-color: var(--accent); }

.stars { color: rgb(251, 191, 36); font-size: 0.9rem; margin-bottom: 10px; }

.about-card h3 { margin: 15px 0px 10px; }

.footer { background: var(--darker); padding: 60px 5% 30px; border-top: 1px solid var(--glass-border); text-align: center; }

.footer-links { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }

.social-btn { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: var(--transition-smooth); text-decoration: none; }

.social-btn:hover { background: var(--primary); transform: translateY(-5px) rotate(360deg); box-shadow: rgba(139, 92, 246, 0.4) 0px 5px 15px; }

.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 1400px; margin: 0px auto; }

.game-container { position: relative; border-radius: 24px; overflow: hidden; background: rgba(20, 20, 25, 0.8); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); padding: 20px; }

.game-canvas-container { position: relative; width: 100%; height: 350px; background: rgb(15, 15, 20); border-radius: 16px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s; touch-action: manipulation; }

.game-canvas-container:focus { outline: none; border-color: var(--accent); }

#dinoCanvas, #blastCanvas { display: block; width: 100%; height: 100%; background: rgb(15, 15, 20); object-fit: contain; }

.game-overlay { position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); pointer-events: none; opacity: 0; transition: opacity 0.3s; }

.game-canvas-container.game-active .game-overlay { opacity: 0; pointer-events: none; }

.game-canvas-container:not(.game-active) .game-overlay { opacity: 1; pointer-events: none; }

.game-overlay-text { font-size: 2rem; font-weight: 700; margin-bottom: 10px; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; text-align: center; }

.game-overlay-sub { color: var(--text-gray); font-size: 1rem; text-align: center; }

.game-score { position: absolute; top: 10px; right: 20px; font-family: Orbitron, sans-serif; font-size: 1.2rem; color: var(--accent); text-shadow: rgba(168, 85, 247, 0.4) 0px 0px 10px; z-index: 10; }

.game-highscore { position: absolute; top: 10px; left: 20px; font-family: Orbitron, sans-serif; font-size: 1rem; color: var(--success); text-shadow: rgba(16, 185, 129, 0.4) 0px 0px 10px; z-index: 10; }

.game-hint { display: flex; align-items: center; gap: 10px; margin-top: 15px; color: var(--text-gray); font-size: 0.9rem; padding: 10px 20px; background: rgba(255, 255, 255, 0.03); border-radius: 30px; border: 1px solid var(--glass-border); flex-wrap: wrap; }

.game-hint i { color: var(--accent); }

.about-me-content { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0px auto; }

.about-me-avatar { width: 200px; height: 200px; border-radius: 50%; border: 3px solid var(--accent); box-shadow: rgba(139, 92, 246, 0.3) 0px 0px 50px; transition: var(--transition-smooth); object-fit: cover; }

.about-me-avatar:hover { transform: scale(1.05) rotate(5deg); box-shadow: rgba(168, 85, 247, 0.5) 0px 0px 70px; }

.about-me-text { flex: 1 1 0%; }

.about-me-name { font-family: Orbitron, sans-serif; font-size: 2.5rem; margin-bottom: 15px; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; }

.about-me-bio { color: var(--text-gray); line-height: 1.8; margin-bottom: 20px; font-size: 1.1rem; }

.about-me-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }

.stat-item { text-align: center; padding: 15px; background: rgba(255, 255, 255, 0.03); border-radius: 16px; border: 1px solid var(--glass-border); transition: var(--transition-smooth); }

.stat-item:hover { transform: translateY(-5px); border-color: var(--accent); background: rgba(139, 92, 246, 0.1); }

.stat-value { font-family: Orbitron, sans-serif; font-size: 1.8rem; color: var(--accent); margin-bottom: 5px; }

.stat-label { color: var(--text-gray); font-size: 0.9rem; }

.quote { margin-top: 30px; padding: 20px; background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1)); border-left: 4px solid var(--accent); border-radius: 0px 16px 16px 0px; font-style: italic; color: rgb(255, 255, 255); font-size: 1.1rem; }

.quote-author { margin-top: 10px; color: var(--accent); font-weight: 600; }

@media (max-width: 968px) {
  .games-grid { grid-template-columns: 1fr; }
  .about-me-content { flex-direction: column; text-align: center; }
  .about-me-stats { grid-template-columns: 1fr; }
  .game-canvas-container { height: 280px; }
  .game-overlay-text { font-size: 1.5rem; }
  .game-hint { font-size: 0.8rem; justify-content: center; }
}

@media (max-width: 480px) {
  .game-canvas-container { height: 240px; }
  .game-overlay-text { font-size: 1.3rem; }
  .game-overlay-sub { font-size: 0.8rem; }
  .game-hint span { font-size: 0.7rem; }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding-top: 120px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; padding: 0px; }
  .hero-image { margin-top: 50px; }
}

a.glass-card { display: block; text-decoration: none; color: inherit; }

a.glass-card:hover { text-decoration: none; color: inherit; }

#scrollToTop { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1001; box-shadow: rgba(139, 92, 246, 0.5) 0px 4px 15px; }

#scrollToTop.show { opacity: 1; visibility: visible; }

#scrollToTop:hover { transform: translateY(-5px); box-shadow: rgba(139, 92, 246, 0.8) 0px 8px 25px; }

.contact-copy { cursor: pointer; color: var(--accent); font-weight: 600; transition: var(--transition-smooth); position: relative; }

.contact-copy:hover { color: var(--primary); text-decoration: underline; }

.copy-tooltip { position: absolute; background: var(--primary); color: white; padding: 4px 10px; border-radius: 6px; font-size: 0.8rem; white-space: nowrap; top: -35px; left: 50%; transform: translateX(-50%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }

.copy-tooltip.show { opacity: 1; }

.mobile-menu-btn { display: none; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: white; font-size: 1.8rem; cursor: pointer; z-index: 1002; }

.nav-links { display: flex; gap: 25px; }

.nav-links a { color: var(--text-gray); text-decoration: none; font-weight: 500; transition: var(--transition-smooth); }

.nav-links a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links { position: fixed; top: 0px; right: -100%; width: 70%; height: 100vh; background: rgba(15, 15, 19, 0.95); backdrop-filter: blur(20px); flex-direction: column; padding: 100px 30px 30px; transition: right 0.4s; z-index: 1001; border-left: 1px solid var(--glass-border); }
  .nav-links.active { right: 0px; }
}

#catalogGrid { margin-top: 60px; }

.chip { padding: 8px 20px; border-radius: 30px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); color: var(--text-gray); cursor: pointer; transition: var(--transition-smooth); font-weight: 500; font-size: 0.9rem; }

.chip.active, .chip:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: rgba(139, 92, 246, 0.4) 0px 0px 15px; }

.product-badge { position: absolute; top: 10px; right: 10px; padding: 5px 12px; border-radius: 6px; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; color: rgb(0, 0, 0); backdrop-filter: blur(6px); box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px; z-index: 5; transition: transform 0.3s; }

.product-card:hover .product-badge { transform: scale(1.05); }

.badge-hit { background: linear-gradient(135deg, rgb(251, 191, 36), rgb(245, 158, 11)); color: rgb(15, 15, 19); }

.badge-new { background: linear-gradient(135deg, rgb(6, 182, 212), rgb(59, 130, 246)); color: rgb(255, 255, 255); }

.badge-limited { background: linear-gradient(135deg, rgb(239, 68, 68), rgb(185, 28, 28)); color: rgb(255, 255, 255); }

.badge-top { background: linear-gradient(135deg, rgb(168, 85, 247), rgb(126, 34, 206)); color: rgb(255, 255, 255); }

.badge-sale { background: linear-gradient(135deg, rgb(16, 185, 129), rgb(5, 150, 105)); color: rgb(255, 255, 255); }

.badge-exclusive { background: linear-gradient(135deg, rgb(236, 72, 153), rgb(190, 24, 93)); color: rgb(255, 255, 255); }

.badge-premium { background: linear-gradient(135deg, rgb(139, 92, 246), rgb(99, 102, 241)); color: rgb(255, 255, 255); }

.product-badge { position: absolute; top: 10px; right: 10px; padding: 5px 12px; border-radius: 6px; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.5px; color: rgb(0, 0, 0); backdrop-filter: blur(6px); box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 12px; z-index: 5; transition: transform 0.3s, box-shadow 0.3s; }

.product-card:hover .product-badge { transform: scale(1.08); box-shadow: rgba(0, 0, 0, 0.4) 0px 6px 18px; }

.badge-hit { background: linear-gradient(135deg, rgb(251, 191, 36), rgb(245, 158, 11)); color: rgb(15, 15, 19); }

.badge-new { background: linear-gradient(135deg, rgb(6, 182, 212), rgb(59, 130, 246)); color: rgb(255, 255, 255); }

.badge-limited { background: linear-gradient(135deg, rgb(239, 68, 68), rgb(185, 28, 28)); color: rgb(255, 255, 255); }

.badge-top { background: linear-gradient(135deg, rgb(168, 85, 247), rgb(126, 34, 206)); color: rgb(255, 255, 255); }

.badge-sale { background: linear-gradient(135deg, rgb(16, 185, 129), rgb(5, 150, 105)); color: rgb(255, 255, 255); }

.badge-exclusive { background: linear-gradient(135deg, rgb(236, 72, 153), rgb(190, 24, 93)); color: rgb(255, 255, 255); }

.badge-premium { background: linear-gradient(135deg, rgb(139, 92, 246), rgb(99, 102, 241)); color: rgb(255, 255, 255); }

.badge-coming { background: rgb(75, 85, 99); color: rgb(229, 231, 235); }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1000px; margin: 0px auto; }

.step { text-align: center; background: rgba(30, 30, 35, 0.4); border-radius: 20px; padding: 30px 20px; border: 1px solid var(--glass-border); transition: var(--transition-smooth); }

.step:hover { transform: translateY(-5px); border-color: var(--accent); }

.step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700; margin: 0px auto 15px; color: white; }

.faq-container { max-width: 800px; margin: 0px auto; }

.faq-item { border-bottom: 1px solid var(--glass-border); overflow: hidden; }

.faq-question { width: 100%; text-align: left; padding: 20px 10px; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: var(--text); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }

.faq-question:hover { color: var(--accent); }

.faq-question i { transition: transform 0.3s; font-size: 1rem; color: var(--accent); }

.faq-answer { max-height: 0px; overflow: hidden; transition: max-height 0.4s, padding 0.4s; padding: 0px 10px; color: var(--text-gray); }

.faq-item.active .faq-answer { max-height: 300px; padding: 10px 10px 20px; }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-container { max-width: 800px; margin: 0px auto; }

.faq-item { border-bottom: 1px solid var(--glass-border); overflow: hidden; }

.faq-question { width: 100%; text-align: left; padding: 20px 10px; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: var(--text); font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }

.faq-question:hover { color: var(--accent); }

.faq-question i { transition: transform 0.3s; font-size: 1rem; color: var(--accent); }

.faq-answer { max-height: 0px; overflow: hidden; transition: max-height 0.4s, padding 0.4s; padding: 0px 10px; color: var(--text-gray); }

.faq-item.active .faq-answer { max-height: 300px; padding: 10px 10px 20px; }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.order-modal-overlay { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }

.order-modal-overlay.active { opacity: 1; visibility: visible; }

.order-modal { background: rgba(25, 25, 30, 0.95); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 30px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 50px; }

.order-modal-close { position: absolute; top: 15px; right: 15px; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: var(--text-gray); font-size: 1.2rem; cursor: pointer; transition: color 0.3s; }

.order-modal-close:hover { color: var(--accent); }

.order-modal-header { text-align: center; margin-bottom: 25px; }

.order-modal-header h3 { font-family: Orbitron, sans-serif; font-size: 1.5rem; margin-bottom: 5px; }

#modalProductName { color: var(--accent); font-weight: 600; }

.order-modal-body { margin-bottom: 25px; }

.option-group { margin-bottom: 20px; }

.option-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text); }

.option-group select, .option-group textarea, .option-group input { width: 100%; padding: 12px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: var(--text); font-size: 0.95rem; outline: none; transition: border 0.3s; }

.option-group select:focus, .option-group textarea:focus, .option-group input:focus { border-color: var(--primary); }

.order-total { text-align: center; font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--accent); }

.order-hint { font-size: 0.8rem; color: var(--text-gray); text-align: center; margin-top: 10px; }

.order-modal-overlay { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }

.order-modal-overlay.active { opacity: 1; visibility: visible; }

.order-modal { background: rgba(25, 25, 30, 0.95); backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 30px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: rgba(0, 0, 0, 0.5) 0px 20px 50px; }

.order-modal-close { position: absolute; top: 15px; right: 15px; background: none; border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; color: var(--text-gray); font-size: 1.2rem; cursor: pointer; transition: color 0.3s; }

.order-modal-close:hover { color: var(--accent); }

.order-modal-header { text-align: center; margin-bottom: 25px; }

.order-modal-header h3 { font-family: Orbitron, sans-serif; font-size: 1.5rem; margin-bottom: 5px; }

#modalProductName { color: var(--accent); font-weight: 600; }

.order-modal-body { margin-bottom: 25px; }

.option-group { margin-bottom: 20px; }

.option-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text); }

.option-group select, .option-group textarea, .option-group input { width: 100%; padding: 12px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: var(--text); font-size: 0.95rem; outline: none; transition: border 0.3s; }

.option-group select:focus, .option-group textarea:focus, .option-group input:focus { border-color: var(--primary); }

.order-total { text-align: center; font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--accent); }

.order-hint { font-size: 0.8rem; color: var(--text-gray); text-align: center; margin-top: 10px; }

.order-modal-overlay { position: fixed; top: 0px; left: 0px; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(12px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; }

.order-modal-overlay.active { opacity: 1; visibility: visible; }

.order-modal { background: rgba(20, 20, 28, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 24px; padding: 40px 30px 30px; max-width: 520px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: rgba(0, 0, 0, 0.6) 0px 25px 60px, rgba(139, 92, 246, 0.2) 0px 0px 30px; animation: 0.3s ease 0s 1 normal none running modalSlideIn; }

@keyframes modalSlideIn { 
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.order-modal-close { position: absolute; top: 15px; right: 15px; background: rgba(255, 255, 255, 0.05); border-width: medium; border-style: none; border-color: currentcolor; border-image: initial; width: 36px; height: 36px; border-radius: 50%; color: var(--text-gray); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }

.order-modal-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }

.order-modal-header { text-align: center; margin-bottom: 30px; }

.order-modal-header h3 { font-family: Orbitron, sans-serif; font-size: 1.6rem; margin-bottom: 8px; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; -webkit-text-fill-color: transparent; }

#modalProductName { color: var(--accent); font-weight: 600; font-size: 1.1rem; }

.option-group { margin-bottom: 20px; }

.option-group label:first-child { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text); font-size: 0.95rem; }

.option-group select, .option-group input[type="text"], .option-group input[type="number"], .option-group textarea { width: 100%; padding: 12px 15px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--glass-border); border-radius: 12px; color: var(--text); font-size: 0.95rem; outline: none; transition: border 0.3s, box-shadow 0.3s; font-family: Montserrat, sans-serif; }

.option-group select { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a1a1aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }

.option-group select:focus, .option-group input:focus, .option-group textarea:focus { border-color: var(--primary); box-shadow: rgba(139, 92, 246, 0.3) 0px 0px 15px; }

.custom-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; font-weight: 500; color: var(--text); margin-bottom: 8px; }

.custom-checkbox input { display: none; }

.custom-checkbox .checkmark { width: 22px; height: 22px; border: 2px solid var(--glass-border); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: 0.3s; background: rgba(255, 255, 255, 0.04); flex-shrink: 0; }

.custom-checkbox input:checked ~ .checkmark { background: var(--primary); border-color: var(--primary); box-shadow: rgba(139, 92, 246, 0.5) 0px 0px 10px; }

.custom-checkbox .checkmark::after { content: ""; display: none; width: 6px; height: 10px; border-style: solid; border-color: white; border-image: initial; border-width: 0px 2px 2px 0px; transform: rotate(45deg); margin-top: -2px; }

.custom-checkbox input:checked ~ .checkmark::after { display: block; }

.payment-group { display: flex; gap: 15px; margin-top: 10px; }

.payment-option { flex: 1 1 0%; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--glass-border); border-radius: 12px; padding: 12px; text-align: center; cursor: pointer; transition: 0.3s; color: var(--text-gray); font-weight: 600; }

.payment-option.active { border-color: var(--primary); background: rgba(139, 92, 246, 0.15); color: white; box-shadow: rgba(139, 92, 246, 0.3) 0px 0px 15px; }

.payment-option:hover { border-color: var(--primary); }

#sendOrderBtn { width: 100%; margin-top: 10px; }

.order-total { text-align: center; font-size: 1.3rem; font-weight: 700; margin: 20px 0px 15px; color: var(--accent); background: rgba(139, 92, 246, 0.1); padding: 10px; border-radius: 12px; }

.order-hint { font-size: 0.8rem; color: var(--text-gray); text-align: center; margin-top: 12px; }

.flash-timer { background: rgb(239, 68, 68); color: white; padding: 4px 8px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 5px; margin-left: 10px; }

.old-price { text-decoration: line-through; color: var(--text-gray); font-size: 1.2rem; margin-right: 10px; }

.hidden-reviews { display: none; }

.hidden-reviews.visible { display: contents; }

.btn-outline { background: transparent !important; border: 1px solid var(--primary) !important; color: white !important; box-shadow: none !important; }

.btn-outline:hover { background: var(--primary) !important; border-color: var(--primary) !important; color: white !important; }

.review-form-container { max-width: 500px; margin: 40px auto 0px; padding: 20px; background: rgba(20, 20, 28, 0.6); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: 16px; }

.review-form { display: flex; flex-direction: column; gap: 15px; }

.review-form textarea { padding: 12px 15px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border); border-radius: 10px; color: var(--text); font-family: inherit; font-size: 0.95rem; outline: none; transition: border 0.3s; }

.review-form textarea:focus { border-color: var(--primary); }

.live-orders-counter { display: inline-block; background: rgba(139, 92, 246, 0.15); border: 1px solid var(--primary); border-radius: 30px; padding: 8px 20px; font-weight: 600; color: var(--accent); margin-top: 15px; }

.live-orders-counter i { margin-right: 5px; animation: 1.5s ease 0s infinite normal none running pulse; }

@keyframes pulse { 
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.live-orders-block { margin: 40px 0px 30px; padding: 30px; background: rgba(139, 92, 246, 0.05); border-radius: 20px; text-align: center; border: 1px solid rgba(139, 92, 246, 0.15); }

.live-orders-inner { display: inline-flex; align-items: center; gap: 15px; font-size: 1.5rem; color: var(--text); }

.live-orders-icon { font-size: 2.5rem; }

.live-orders-text { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; justify-content: center; }

#ordersCount { font-family: Orbitron, sans-serif; color: var(--accent); font-size: 2.5rem; font-weight: 700; }

#ordersLabel { color: var(--accent); }

.live-orders-sub { display: block; width: 100%; font-size: 1rem; color: var(--text-gray); margin-top: 5px; }

.header { position: fixed; top: 0px; width: 100%; padding: 20px 5%; z-index: 1000; background: rgba(15, 15, 19, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; transition: 0.3s; }

.nav-links { display: flex; gap: 25px; margin-left: auto; }