:root {
            --primary: #FF5E7D;
            --secondary: #47B8E0;
            --accent: #FFD166;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --retro-blue: #00C4CC;
            --retro-pink: #FF2D75;
            --retro-yellow: #FFD300;
            --retro-purple: #8A2BE2;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Courier New', monospace;
        }
        
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            padding-top: 80px;
            background-image: 
                linear-gradient(to right, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.9)),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-attachment: fixed;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 46, 0.95);
            z-index: 1000;
            padding: 15px 0;
            border-bottom: 3px solid var(--retro-pink);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: var(--retro-yellow);
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--retro-blue);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s;
            position: relative;
        }
        
        nav ul li a:hover {
            color: var(--retro-pink);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--retro-pink);
            transition: width 0.3s;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .burger {
            display: none;
            cursor: pointer;
        }
        
        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--light);
            margin: 5px;
            transition: all 0.3s ease;
        }
        
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        h1, h2, h3 {
            font-family: 'Arial', sans-serif;
            margin-bottom: 20px;
            color: var(--retro-blue);
        }
        
        h1 {
            font-size: 48px;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 3px 3px 0 var(--retro-pink);
        }
        
        h2 {
            font-size: 36px;
            border-bottom: 2px solid var(--retro-pink);
            padding-bottom: 10px;
            display: inline-block;
        }
        
        h3 {
            font-size: 24px;
            color: var(--retro-yellow);
        }
        
        p {
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--retro-pink);
            color: var(--light);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            margin-top: 20px;
        }
        
        .btn:hover {
            background-color: var(--retro-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .hero {
            text-align: center;
            padding: 150px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 45, 117, 0.2) 0%, rgba(26, 26, 46, 0.9) 70%);
            z-index: -1;
        }
        
        .hero h1 {
            font-size: 64px;
            margin-bottom: 30px;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero p {
            font-size: 22px;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--retro-blue);
            animation: fadeIn 2s ease-out;
        }
        
        .about {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 60px;
            margin: 40px auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s;
        }
        
        .about-image:hover {
            transform: scale(1.05);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .products {
            text-align: center;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s;
            border: 1px solid var(--retro-purple);
            position: relative;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 45, 117, 0.2);
            border-color: var(--retro-pink);
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--retro-pink), var(--retro-blue));
        }
        
        .product-card h3 {
            color: var(--retro-yellow);
            margin-bottom: 15px;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        
        .prices {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 60px;
            margin: 40px auto;
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            border: 2px solid var(--retro-purple);
            transition: all 0.3s;
            position: relative;
        }
        
        .price-card.popular {
            border-color: var(--retro-pink);
            transform: scale(1.05);
        }
        
        .price-card.popular::after {
            content: 'POPULÁRNE';
            position: absolute;
            top: -15px;
            right: 20px;
            background-color: var(--retro-pink);
            color: var(--light);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        
        .price-card h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--retro-blue);
        }
        
        .price {
            font-size: 48px;
            font-weight: bold;
            color: var(--retro-yellow);
            margin-bottom: 20px;
        }
        
        .price span {
            font-size: 16px;
            color: var(--light);
        }
        
        .price-features {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .price-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .price-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--retro-pink);
            font-weight: bold;
        }
        
        .gallery {
            text-align: center;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(255, 45, 117, 0.3);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .feedback {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 60px;
            margin: 40px auto;
        }
        
        .feedback-slider {
            position: relative;
            margin-top: 50px;
            overflow: hidden;
        }
        
        .slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .slide {
            min-width: 100%;
            padding: 20px;
        }
        
        .feedback-card {
            background-color: var(--dark);
            border-radius: 10px;
            padding: 30px;
            border: 1px solid var(--retro-purple);
            position: relative;
        }
        
        .feedback-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 60px;
            color: var(--retro-pink);
            opacity: 0.3;
            font-family: Georgia, serif;
        }
        
        .feedback-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .feedback-author {
            display: flex;
            align-items: center;
        }
        
        .feedback-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--retro-yellow);
            margin-bottom: 5px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--retro-blue);
            margin: 0;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--retro-purple);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .slider-dot.active {
            background-color: var(--retro-pink);
            transform: scale(1.2);
        }
        
        .faq {
            text-align: center;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid var(--retro-purple);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
            color: var(--retro-blue);
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: rgba(255, 45, 117, 0.2);
        }
        
        .faq-question::after {
            content: '+';
            font-size: 24px;
            color: var(--retro-pink);
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(26, 26, 46, 0.5);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .contact-form {
            background-color: rgba(26, 26, 46, 0.8);
            border-radius: 10px;
            padding: 60px;
            margin: 40px auto;
            max-width: 800px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: var(--retro-blue);
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border-radius: 5px;
            border: 1px solid var(--retro-purple);
            background-color: rgba(26, 26, 46, 0.5);
            color: var(--light);
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--retro-pink);
            box-shadow: 0 0 10px rgba(255, 45, 117, 0.5);
        }
        
        .form-submit {
            text-align: center;
        }
        
        footer {
            background-color: var(--dark);
            padding: 60px 20px 30px;
            border-top: 3px solid var(--retro-pink);
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--retro-yellow);
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--retro-blue);
        }
        
        .footer-about p {
            margin-bottom: 20px;
        }
        
        .footer-links h3,
        .footer-contact h3 {
            color: var(--retro-blue);
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: var(--light);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: var(--retro-pink);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: var(--retro-pink);
            margin-right: 10px;
            margin-top: 3px;
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid var(--retro-purple);
            color: var(--retro-blue);
        }
        
        .disclaimer {
            background-color: rgba(255, 45, 117, 0.1);
            padding: 20px;
            border-radius: 5px;
            margin-top: 50px;
            font-size: 14px;
            border-left: 3px solid var(--retro-pink);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background-color: var(--dark);
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            position: relative;
            border: 2px solid var(--retro-pink);
        }
        
        .modal-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .modal-close:hover {
            color: var(--retro-pink);
        }
        
        .modal h3 {
            color: var(--retro-yellow);
            margin-bottom: 20px;
        }
        
        .modal p {
            margin-bottom: 30px;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--dark);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            border-top: 2px solid var(--retro-pink);
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-text {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-btn {
            background-color: var(--retro-pink);
            color: var(--light);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .cookie-btn:hover {
            background-color: var(--retro-blue);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 992px) {
            h1 {
                font-size: 42px;
            }
            
            h2 {
                font-size: 32px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .hero {
                padding: 120px 20px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: left 0.5s;
                z-index: 999;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 20px 0;
            }
            
            .burger {
                display: block;
            }
            
            .burger.active .line1 {
                transform: rotate(-45deg) translate(-5px, 6px);
            }
            
            .burger.active .line2 {
                opacity: 0;
            }
            
            .burger.active .line3 {
                transform: rotate(45deg) translate(-5px, -6px);
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .about, .prices, .feedback, .contact-form {
                padding: 40px 20px;
            }
            
            .price-card.popular {
                transform: scale(1);
            }
        }
        
        @media (max-width: 576px) {
            h1 {
                font-size: 32px;
            }
            
            h2 {
                font-size: 28px;
            }
            
            .hero {
                padding: 100px 20px;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
        }

