* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #1a1a1a;
            color: #dfe6e9;
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
            z-index: -1;
            pointer-events: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(26, 26, 26, 0.9);
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            border-bottom: 2px solid #ff3e41;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 32px;
            font-weight: bold;
            color: #f9ca24;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: 'Impact', sans-serif;
            text-shadow: 3px 3px 0 #ff3e41;
            transform: skew(-5deg);
            display: inline-block;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            color: #dfe6e9;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: bold;
            position: relative;
        }
        
        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff3e41;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a:hover {
            color: #f9ca24;
        }
        
        .burger {
            display: none;
            cursor: pointer;
            position: relative;
            width: 30px;
            height: 25px;
        }
        
        .burger span {
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #f9ca24;
            border-radius: 3px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .burger span:nth-child(1) {
            top: 0px;
        }
        
        .burger span:nth-child(2) {
            top: 8px;
            width: 70%;
        }
        
        .burger span:nth-child(3) {
            top: 16px;
        }
        
        .burger.active span:nth-child(1) {
            top: 8px;
            transform: rotate(135deg);
        }
        
        .burger.active span:nth-child(2) {
            opacity: 0;
            left: -60px;
        }
        
        .burger.active span:nth-child(3) {
            top: 8px;
            transform: rotate(-135deg);
        }
        
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('../img/20.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            text-align: center;
            color: #dfe6e9;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 62, 65, 0.05),
                rgba(255, 62, 65, 0.05) 10px,
                rgba(249, 202, 36, 0.05) 10px,
                rgba(249, 202, 36, 0.05) 20px
            );
            z-index: 1;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 64px;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #f9ca24;
            font-family: 'Impact', sans-serif;
            text-shadow: 4px 4px 0 #ff3e41;
            transform: skew(-5deg);
            position: relative;
            display: inline-block;
        }
        
        .hero h1::after {
            content: "FITNESS";
            position: absolute;
            bottom: -15px;
            right: -30px;
            font-size: 24px;
            color: #ff3e41;
            background-color: #1a1a1a;
            padding: 0 10px;
            transform: rotate(5deg);
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            letter-spacing: 1px;
            color: #dfe6e9;
            position: relative;
        }
        
        .hero p::before {
            content: "▶";
            position: absolute;
            left: -20px;
            color: #ff3e41;
        }
        
        .btn {
            display: inline-block;
            background-color: #ff3e41;
            color: #1a1a1a;
            padding: 15px 35px;
            border-radius: 0;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', sans-serif;
            position: relative;
            border: 3px solid #ff3e41;
            box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
        }
        
        .btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.1),
                rgba(255, 255, 255, 0.1) 10px,
                rgba(255, 255, 255, 0.05) 10px,
                rgba(255, 255, 255, 0.05) 20px
            );
            z-index: -1;
        }
        
        .btn:hover {
            background-color: #f9ca24;
            color: #1a1a1a;
            transform: translate(-5px, -5px);
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
        }
        
        .about {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .about::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,62,65,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 48px;
            color: #f9ca24;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', sans-serif;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #ff3e41;
        }
        
        .section-title p {
            font-size: 18px;
            color: #dfe6e9;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
            position: relative;
            padding: 30px;
            background-color: rgba(255, 62, 65, 0.1);
            border-left: 5px solid #ff3e41;
        }
        
        .about-text h3 {
            font-size: 28px;
            color: #f9ca24;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .about-text h3::before {
            content: "▶";
            position: absolute;
            left: -20px;
            color: #ff3e41;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: #dfe6e9;
        }
        
        .about-image {
            flex: 1;
            position: relative;
            overflow: hidden;
            border: 5px solid #ff3e41;
            box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.5);
            transform: rotate(2deg);
        }
        
        .about-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
            filter: saturate(1.2) contrast(1.1);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .products {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .products::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(249,202,36,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .products .section-title h2 {
            color: #f9ca24;
        }
        
        .products .section-title p {
            color: #dfe6e9;
        }
        
        .product-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .product-card {
            background-color: #1a1a1a;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            border: 3px solid #1a1a1a;
            position: relative;
        }
        
        .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.03),
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.01) 10px,
                rgba(255, 255, 255, 0.01) 20px
            );
            z-index: 1;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            border-color: #ff3e41;
        }
        
        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            filter: saturate(1.2) contrast(1.1);
            transition: all 0.3s ease;
        }
        
        .product-card:hover img {
            transform: scale(1.05);
        }
        
        .product-card-content {
            padding: 25px;
            position: relative;
            z-index: 2;
        }
        
        .product-card-content h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #f9ca24;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .product-card-content h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff3e41;
        }
        
        .product-card-content p {
            margin-bottom: 20px;
            color: #dfe6e9;
        }
        
        .prices {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .prices::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,62,65,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .price-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .price-card {
            background-color: #1a1a1a;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid #1a1a1a;
            position: relative;
        }
        
        .price-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.03),
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.01) 10px,
                rgba(255, 255, 255, 0.01) 20px
            );
            z-index: 1;
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            border-color: #f9ca24;
        }
        
        .price-card-header {
            background-color: #ff3e41;
            color: #1a1a1a;
            padding: 25px;
            position: relative;
            z-index: 2;
        }
        
        .price-card-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 10px,
                rgba(0, 0, 0, 0.05) 10px,
                rgba(0, 0, 0, 0.05) 20px
            );
            z-index: -1;
        }
        
        .price-card-header h3 {
            font-size: 26px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
        }
        
        .price {
            font-size: 42px;
            font-weight: bold;
            color: #1a1a1a;
            font-family: 'Impact', sans-serif;
        }
        
        .price-card-content {
            padding: 30px;
            position: relative;
            z-index: 2;
        }
        
        .price-card-content ul {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .price-card-content li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #dfe6e9;
            position: relative;
            padding-left: 20px;
        }
        
        .price-card-content li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #f9ca24;
        }
        
        .gallery {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .gallery::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(249,202,36,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .gallery .section-title h2 {
            color: #f9ca24;
        }
        
        .gallery .section-title p {
            color: #dfe6e9;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 0;
            height: 250px;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
            border: 3px solid #1a1a1a;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            border-color: #ff3e41;
            transform: rotate(-2deg);
        }
        
        .gallery-item:nth-child(even):hover {
            transform: rotate(2deg);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
            filter: saturate(1.2) contrast(1.1);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-item::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }
        
        .gallery-item:hover::after {
            opacity: 1;
        }
        
        .feedback {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .feedback::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,62,65,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .feedback-slider {
            position: relative;
            max-width: 800px;
            margin: 50px auto 0;
            overflow: hidden;
        }
        
        .feedback-item {
            background-color: #1a1a1a;
            border-radius: 0;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
            display: none;
            border: 3px solid #ff3e41;
            position: relative;
        }
        
        .feedback-item::before {
            content: "";
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 100px;
            color: #f9ca24;
            font-family: 'Impact', sans-serif;
            opacity: 0.5;
        }
        
        .feedback-item.active {
            display: block;
        }
        
        .feedback-item img {
            width: 80px;
            height: 80px;
            border-radius: 0;
            margin: 0 auto 20px;
            object-fit: cover;
            border: 3px solid #f9ca24;
            transform: rotate(5deg);
        }
        
        .feedback-item h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #f9ca24;
            text-transform: uppercase;
            font-family: 'Impact', sans-serif;
        }
        
        .feedback-item p {
            font-style: italic;
            color: #dfe6e9;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }
        
        .feedback-item .rating {
            color: #f9ca24;
            font-size: 20px;
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 0;
            background-color: #636e72;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            transform: rotate(45deg);
        }
        
        .slider-dot.active {
            background-color: #ff3e41;
            transform: rotate(45deg) scale(1.2);
        }
        
        .faq {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(249,202,36,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .faq .section-title h2 {
            color: #f9ca24;
        }
        
        .faq .section-title p {
            color: #dfe6e9;
        }
        
        .faq-items {
            max-width: 800px;
            margin: 50px auto 0;
        }
        
        .faq-item {
            background-color: #1a1a1a;
            border-radius: 0;
            margin-bottom: 20px;
            overflow: hidden;
            border: 1px solid #1a1a1a;
            transition: border-color 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: #ff3e41;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }
        
        .faq-question::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 62, 65, 0.05),
                rgba(255, 62, 65, 0.05) 10px,
                rgba(255, 62, 65, 0.02) 10px,
                rgba(255, 62, 65, 0.02) 20px
            );
            z-index: -1;
        }
        
        .faq-question h3 {
            font-size: 18px;
            color: #f9ca24;
            text-transform: uppercase;
            font-family: 'Impact', sans-serif;
        }
        
        .faq-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
            color: #ff3e41;
            font-weight: bold;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .contact {
            padding: 100px 0;
            background-color: #1a1a1a;
            color: #dfe6e9;
            position: relative;
        }
        
        .contact::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,62,65,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 50px auto 0;
            background-color: #1a1a1a;
            padding: 40px;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 3px solid #ff3e41;
            position: relative;
        }
        
        .contact-form::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 255, 255, 0.03),
                rgba(255, 255, 255, 0.03) 10px,
                rgba(255, 255, 255, 0.01) 10px,
                rgba(255, 255, 255, 0.01) 20px
            );
            z-index: -1;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #f9ca24;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #1a1a1a;
            border-radius: 0;
            font-size: 16px;
            transition: border-color 0.3s ease;
            background-color: #1a1a1a;
            color: #dfe6e9;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #ff3e41;
            outline: none;
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: center;
        }
        
        footer {
            background-color: #1a1a1a;
            color: #dfe6e9;
            padding: 50px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(249,202,36,0.1)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #f9ca24;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            position: relative;
        }
        
        .footer-column h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #ff3e41;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-column ul li::before {
            content: "▶";
            position: absolute;
            left: 0;
            color: #ff3e41;
        }
        
        .footer-column ul li a {
            color: #dfe6e9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: #f9ca24;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 2px solid #ff3e41;
            font-size: 14px;
            color: #636e72;
        }
        
        .disclaimer {
            background-color: #1a1a1a;
            padding: 20px;
            text-align: center;
            font-size: 14px;
            color: #636e72;
            border-top: 2px solid #ff3e41;
            position: relative;
        }
        
        .disclaimer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,62,65,0.05)" stroke-width="1"/></svg>');
            z-index: -1;
        }
        
        .cookie-banner {
            position: fixed;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: #1a1a1a;
            color: #dfe6e9;
            padding: 20px;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transform: translateY(150%);
            transition: transform 0.5s ease;
            border: 3px solid #ff3e41;
        }
        
        .cookie-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(255, 62, 65, 0.05),
                rgba(255, 62, 65, 0.05) 10px,
                rgba(255, 62, 65, 0.02) 10px,
                rgba(255, 62, 65, 0.02) 20px
            );
            z-index: -1;
        }
        
        .cookie-banner.show {
            transform: translateY(0);
        }
        
        .cookie-content {
            flex: 1;
            margin-right: 20px;
        }
        
        .cookie-content p {
            margin-bottom: 10px;
            font-size: 14px;
        }
        
        .cookie-content a {
            color: #f9ca24;
            text-decoration: none;
        }
        
        .cookie-buttons {
            display: flex;
            gap: 10px;
        }
        
        .cookie-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
        }
        
        .cookie-accept {
            background-color: #ff3e41;
            color: #1a1a1a;
            border: 2px solid #ff3e41;
        }
        
        .cookie-accept:hover {
            background-color: #f9ca24;
            border-color: #f9ca24;
        }
        
        .cookie-decline {
            background-color: transparent;
            color: #dfe6e9;
            border: 2px solid #dfe6e9;
        }
        
        .cookie-decline:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup.show {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-content {
            background-color: #1a1a1a;
            padding: 40px;
            border-radius: 0;
            text-align: center;
            max-width: 500px;
            width: 90%;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            border: 3px solid #f9ca24;
            position: relative;
        }
        
        .popup-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(249, 202, 36, 0.05),
                rgba(249, 202, 36, 0.05) 10px,
                rgba(249, 202, 36, 0.02) 10px,
                rgba(249, 202, 36, 0.02) 20px
            );
            z-index: -1;
        }
        
        .popup.show .popup-content {
            transform: scale(1);
        }
        
        .popup-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #f9ca24;
            text-transform: uppercase;
            font-family: 'Impact', sans-serif;
        }
        
        .popup-content p {
            margin-bottom: 30px;
            color: #dfe6e9;
        }
        
        .popup-close {
            background-color: #ff3e41;
            color: #1a1a1a;
            border: none;
            padding: 10px 20px;
            border-radius: 0;
            cursor: pointer;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Impact', sans-serif;
            border: 2px solid #ff3e41;
        }
        
        .popup-close:hover {
            background-color: #f9ca24;
            border-color: #f9ca24;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                background-color: #1a1a1a;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.5s ease;
                border-left: 3px solid #ff3e41;
                z-index: 1001;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .burger {
                display: block;
                z-index: 1002;
            }
            
            .hero h1 {
                font-size: 40px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .cookie-banner {
                flex-direction: column;
                text-align: center;
            }
            
            .cookie-content {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }

