
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial Black', Arial, sans-serif;
            background: #ffffff;
            color: #000000;
            line-height: 1.4;
            overflow-x: hidden;
        }

        .red-accent { color: #cc0000; }
        .yellow-accent { color: #ffcc00; }
        .black-bg { background: #000000; color: #ffffff; }
        .red-bg { background: #cc0000; color: #ffffff; }
        .yellow-bg { background: #ffcc00; color: #000000; }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: #000000;
            border-bottom: 4px solid #cc0000;
            z-index: 1000;
            padding: 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 2rem;
            font-weight: 900;
            color: #ffcc00;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: skew(-10deg);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 0;
        }

        nav a {
            display: block;
            padding: 1rem 1.5rem;
            background: #cc0000;
            color: #ffffff;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 0.9rem;
            transition: all 0.2s;
            border-left: 2px solid #ffffff;
            transform: skew(-5deg);
            margin-left: -2px;
        }

        nav a:first-child {
            border-left: none;
        }

        nav a:hover {
            background: #ffcc00;
            color: #000000;
            transform: skew(5deg) scale(1.1);
            z-index: 10;
            position: relative;
        }

        .burger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: #cc0000;
            padding: 0.5rem;
            transform: skew(-10deg);
        }

        .burger span {
            width: 25px;
            height: 3px;
            background: #ffcc00;
            margin: 2px 0;
            transition: 0.3s;
            transform: skew(10deg);
        }

        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #cc0000 0%, #000000 50%, #ffcc00 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 80px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%),
                linear-gradient(-45deg, transparent 40%, rgba(255,204,0,0.3) 40%, rgba(255,204,0,0.3) 60%, transparent 60%);
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 900;
            color: #ffffff;
            text-shadow: 4px 4px 0px #000000;
            text-transform: uppercase;
            letter-spacing: 4px;
            transform: perspective(500px) rotateX(20deg);
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            background: #ffcc00;
            color: #000000;
            padding: 1rem 2rem;
            display: inline-block;
            transform: skew(-10deg);
            font-weight: 800;
            margin-bottom: 2rem;
            border: 4px solid #000000;
        }

        .cta-primary {
            display: inline-block;
            background: #cc0000;
            color: #ffffff;
            padding: 1.5rem 3rem;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.3rem;
            text-transform: uppercase;
            border: 4px solid #000000;
            transition: all 0.3s;
            transform: skew(-5deg);
            position: relative;
        }

        .cta-primary::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: -8px;
            bottom: -8px;
            background: #ffcc00;
            z-index: -1;
            transition: all 0.3s;
        }

        .cta-primary:hover {
            transform: skew(-5deg) scale(1.05) translateY(-4px);
        }

        .cta-primary:hover::after {
            transform: translate(-4px, -4px);
        }

        section {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 4em auto !important;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: 10px;
            bottom: 10px;
            background: #cc0000;
            z-index: -1;
            transform: skew(-5deg);
        }

        .about {
            background: #ffffff;
            border: 8px solid #000000;
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            background: #ffcc00;
            z-index: -1;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image {
            position: relative;
            transform: skew(-5deg);
            overflow: hidden;
            border: 6px solid #cc0000;
        }

        .about-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transform: skew(5deg) scale(1.2);
        }

        .about-text h3 {
            font-size: 2rem;
            color: #cc0000;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            transform: skew(-3deg);
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .advantages {
            background: #000000;
            margin: 4rem 0;
        }

        .advantages h2 {
            color: #ffcc00;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .advantage-card {
            background: #ffffff;
            padding: 2rem;
            border: 4px solid #cc0000;
            position: relative;
            transform: skew(-3deg);
        }

        .advantage-card::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 8px;
            right: -8px;
            bottom: -8px;
            background: #ffcc00;
            z-index: -1;
        }

        .advantage-card h3 {
            color: #cc0000;
            font-size: 1.3rem;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            transform: skew(3deg);
        }

        .advantage-card p {
            color: #000000;
            font-weight: 600;
            transform: skew(3deg);
        }

        .products {
            background: #ffcc00;
            border-top: 8px solid #cc0000;
            border-bottom: 8px solid #cc0000;
        }

        .products h2 {
            color: #000000;
        }

        .product-showcase {
            text-align: center;
        }

        .album-cover {
            width: 300px;
            height: 300px;
            margin: 0 auto 2rem;
            background: #cc0000;
            border: 6px solid #000000;
            transform: rotate(45deg);
            overflow: hidden;
            position: relative;
        }

        .album-cover img {
            width: 140%;
            height: 140%;
            object-fit: cover;
            transform: rotate(-45deg) translate(-15%, -15%);
        }

        .product-info h3 {
            font-size: 2.5rem;
            color: #cc0000;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 0px #ffffff;
        }

        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .feature-tag {
            background: #cc0000;
            color: #ffffff;
            padding: 1rem;
            font-weight: 800;
            text-transform: uppercase;
            transform: skew(-5deg);
            border: 3px solid #000000;
            text-align: center;
        }

        .prices {
            background: #ffffff;
        }

        .prices h2 {
            color: #cc0000;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .price-card {
            background: #ffffff;
            border: 6px solid #000000;
            padding: 2rem;
            text-align: center;
            position: relative;
            transform: perspective(800px) rotateY(10deg);
            color: #fff !important;
        }

        .price-display{
            color: #fff !important;
        }

        .price-card.featured {
            transform: perspective(800px) rotateY(-10deg) scale(1.05);
            border-color: #cc0000;
            background: #ffcc00;
        }

        .price-card.featured::before {
            content: 'POPOLARE';
            position: absolute;
            top: -15px;
            right: -15px;
            background: #cc0000;
            color: #ffffff;
            padding: 0.5rem 1rem;
            font-weight: 900;
            font-size: 0.8rem;
            transform: rotate(15deg);
            border: 3px solid #000000;
        }

        .price-card::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            background: #cc0000;
            z-index: -1;
        }

        .price-card.featured::after {
            background: #000000;
        }

        .price-card h3 {
            font-size: 1.5rem;
            color: #cc0000;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .price-card.featured h3 {
            color: #000000;
        }

        .price-display {
            font-size: 3rem;
            font-weight: 900;
            color: #cc0000;
            margin: 1rem 0;
        }

        .price-card.featured .price-display {
            color: #000000;
        }

        .price-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .price-features li {
            padding: 0.5rem 0;
            font-weight: 600;
            border-bottom: 2px dotted #cccccc;
        }

        .price-features li::before {
            content: '▶';
            color: #cc0000;
            font-weight: 900;
            margin-right: 0.5rem;
        }

        .price-btn {
            display: inline-block;
            background: #000000;
            color: #ffffff;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            border: 3px solid #cc0000;
            transition: all 0.3s;
            transform: skew(-5deg);
        }

        .price-btn:hover {
            background: #cc0000;
            transform: skew(-5deg) scale(1.1);
        }

        .gallery {
            background: #000000;
        }

        .gallery h2 {
            color: #ffcc00;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .gallery-item {
            aspect-ratio: 1;
            overflow: hidden;
            border: 4px solid #ffcc00;
            position: relative;
            cursor: pointer;
            transform: skew(-5deg);
            transition: all 0.3s;
        }

        .gallery-item:nth-child(even) {
            transform: skew(5deg);
        }

        .gallery-item:hover {
            transform: skew(0deg) scale(1.05);
            border-color: #cc0000;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: skew(5deg) scale(1.2);
        }

        .gallery-item:nth-child(even) img {
            transform: skew(-5deg) scale(1.2);
        }

        .feedback {
            background: #ffffff;
        }

        .feedback h2 {
            color: #cc0000;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .review-card {
            background: #ffcc00;
            padding: 2rem;
            border: 4px solid #000000;
            position: relative;
            transform: rotate(1deg);
        }

        .review-card:nth-child(even) {
            transform: rotate(-1deg);
            background: #cc0000;
            color: #ffffff;
        }

        .review-card::before {
            content: '"';
            font-size: 4rem;
            color: #cc0000;
            position: absolute;
            top: -10px;
            left: 10px;
            line-height: 1;
            font-weight: 900;
        }

        .review-card:nth-child(even)::before {
            color: #ffcc00;
        }

        .review-text {
            font-weight: 600;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .review-author {
            font-weight: 900;
            text-transform: uppercase;
            color: #000000;
        }

        .review-card:nth-child(even) .review-author {
            color: #ffcc00;
        }

        .why-us {
            background: #cc0000;
            margin: 4rem 0;
        }

        .why-us h2 {
            color: #ffffff;
        }

        .reasons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .reason-item {
            background: #ffffff;
            padding: 2rem;
            border: 4px solid #ffcc00;
            text-align: center;
            transform: perspective(600px) rotateX(10deg);
        }

        .reason-number {
            font-size: 3rem;
            font-weight: 900;
            color: #cc0000;
            display: block;
            margin-bottom: 1rem;
        }

        .reason-title {
            font-size: 1.3rem;
            font-weight: 900;
            color: #000000;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .faq {
            background: #ffcc00;
            border-top: 8px solid #000000;
        }

        .faq h2 {
            color: #000000;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin: 1rem 0;
            border: 3px solid #000000;
            background: #ffffff;
        }

        .faq-question {
            padding: 1.5rem;
            font-weight: 800;
            cursor: pointer;
            user-select: none;
            position: relative;
            color: #000000;
            text-transform: uppercase;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            font-size: 2rem;
            font-weight: 900;
            color: #cc0000;
            transition: transform 0.3s;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            background: #cc0000;
            color: #ffffff;
            transition: max-height 0.3s;
        }

        .faq-answer.active {
            max-height: 200px;
        }

        .faq-answer p {
            padding: 1.5rem;
            font-weight: 600;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .contact-section {
            background: #000000;
            margin: 4rem 0;
        }

        .contact-section h2 {
            color: #ffcc00;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            padding: 2rem;
            border: 6px solid #cc0000;
            position: relative;
        }

        .contact-form::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 10px;
            right: -10px;
            bottom: -10px;
            background: #ffcc00;
            z-index: -1;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            color: #000000;
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 3px solid #000000;
            font-family: inherit;
            font-weight: 600;
            transform: skew(-2deg);
        }

        .form-group input:focus {
            outline: none;
            border-color: #cc0000;
            transform: skew(0deg);
        }

        .submit-btn {
            width: 100%;
            background: #cc0000;
            color: #ffffff;
            padding: 1.5rem;
            border: 4px solid #000000;
            font-family: inherit;
            font-weight: 900;
            font-size: 1.2rem;
            text-transform: uppercase;
            cursor: pointer;
            transform: skew(-5deg);
            transition: all 0.3s;
        }

        .submit-btn:hover {
            background: #000000;
            color: #ffcc00;
            transform: skew(-5deg) scale(1.02);
        }

        .disclaimer {
            background: #f5f5f5;
            padding: 2rem;
            border: 3px dashed #cc0000;
            margin: 3rem 2rem;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
            transform: skew(-1deg);
        }

        .disclaimer h3 {
            color: #cc0000;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        footer {
            background: #000000;
            color: #ffffff;
            padding: 3rem 2rem;
            border-top: 8px solid #cc0000;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            color: #ffcc00;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
            transform: skew(-5deg);
        }

        .footer-section p,
        .footer-section a {
            color: #ffffff;
            text-decoration: none;
            margin-bottom: 0.5rem;
            font-weight: 600;
            display: block;
        }

        .footer-section a:hover {
            color: #ffcc00;
        }

        .cookie-popup {
            position: fixed;
            bottom: 0;
            left: 2rem;
            right: 2rem;
            max-width: 500px;
            margin: 0 auto;
            background: #cc0000;
            color: #ffffff;
            border: 4px solid #000000;
            padding: 2rem;
            z-index: 10000;
            transition: bottom 0.5s;
            transform: skew(-3deg);
            display: none;
        }

        .cookie-popup.show {
            display: block;
        }

        .cookie-popup h4 {
            color: #ffcc00;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .cookie-buttons {
            margin-top: 1rem;
            display: flex;
            gap: 1rem;
        }

        .cookie-btn {
            padding: 0.8rem 1.5rem;
            border: 3px solid #ffffff;
            background: transparent;
            color: #ffffff;
            font-family: inherit;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cookie-btn:hover {
            background: #ffffff;
            color: #cc0000;
        }

        .cookie-btn.accept {
            background: #ffcc00;
            color: #000000;
            border-color: #ffcc00;
        }

        .cookie-btn.accept:hover {
            background: #ffffff;
            color: #cc0000;
            border-color: #ffffff;
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            background: #ffffff;
            margin: 10% auto;
            padding: 3rem;
            border: 8px solid #cc0000;
            width: 80%;
            max-width: 500px;
            text-align: center;
            position: relative;
            transform: skew(-5deg);
        }

        .modal-content::after {
            content: '';
            position: absolute;
            top: 15px;
            left: 15px;
            right: -15px;
            bottom: -15px;
            background: #ffcc00;
            z-index: -1;
        }

        .close-modal {
            color: #cc0000;
            float: right;
            font-size: 2rem;
            font-weight: 900;
            cursor: pointer;
            line-height: 1;
            transform: skew(5deg);
        }

        .close-modal:hover {
            color: #000000;
        }

        .modal h3 {
            color: #cc0000;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .modal-cta {
            display: inline-block;
            background: #cc0000;
            color: #ffffff;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 800;
            text-transform: uppercase;
            border: 3px solid #000000;
            margin-top: 1rem;
            transition: all 0.3s;
        }

        .modal-cta:hover {
            background: #000000;
            color: #ffcc00;
        }

        @media (max-width: 768px) {
            .burger {
                display: flex;
            }

            nav ul {
                position: fixed;
                top: 88px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 88px);
                background: #cc0000;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                transition: left 0.3s;
                padding-top: 2rem;
            }

            nav ul.active {
                left: 0;
            }

            nav a {
                width: 80%;
                text-align: center;
                margin: 0.5rem 0;
                transform: skew(0deg);
            }

            .hero h1 {
                transform: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .album-cover {
                width: 200px;
                height: 200px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .price-card {
                transform: none;
            }

            .price-card.featured {
                transform: scale(1.02);
            }

            .cookie-popup {
                left: 1rem;
                right: 1rem;
                transform: skew(0deg);
            }

            section {
                padding: 2rem 1rem;
            }
        }

