
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
        }

        .new-releases-section {
            background-color: #ffffff;
            padding: 0 60px 20px;
        }

        .section-title {
            color: #111111;
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -0.5px;
        }

        .new-releases-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .release-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            color: #ffffff;
            min-height: 420px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: #f5f5f5;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        .release-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.15);
        }

        .card-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            background-color: #f5f5f5;
            z-index: 1;
            transition: transform 0.5s ease;
        }
        .release-card:hover .card-bg {
            transform: scale(1.02);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.2) 100%);
            z-index: 2;
        }

        .card-content {
            position: relative;
            z-index: 3;
            padding: 32px 28px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 420px;
        }

        .card-title {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .card-desc {
            font-size: 15px;
            line-height: 1.5;
            margin-bottom: 24px;
            opacity: 0.95;
            max-width: 90%;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .card-btn {
            display: inline-block;
            padding: 10px 28px;
            border: 1.5px solid #ffffff;
            border-radius: 40px;
            color: #ffffff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            width: fit-content;
            background-color: rgba(0,0,0,0.4);
            backdrop-filter: blur(4px);
            cursor: pointer;
        }
        .card-btn:hover {
            background-color: #ffffff;
            color: #000000;
            border-color: #ffffff;
        }

        @media (max-width: 768px) {
            .new-releases-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-title {
                font-size: 22px;
            }
            .card-desc {
                max-width: 100%;
                font-size: 14px;
            }
            .card-content {
                padding: 24px 20px;
                min-height: 360px;
            }
            .release-card {
                min-height: 360px;
            }
        }

        .video-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(5px);
        }
        .modal-content {
            background-color: #111;
            border-radius: 24px;
            max-width: 900px;
            width: 90%;
            padding: 20px;
            position: relative;
            box-shadow: 0 25px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .modal-close {
            position: absolute;
            top: 12px;
            right: 20px;
            font-size: 32px;
            font-weight: bold;
            color: #fff;
            cursor: pointer;
            transition: 0.2s;
            z-index: 10;
            background: rgba(0,0,0,0.5);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .modal-close:hover {
            background: #e74c3c;
            color: white;
        }
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            margin-bottom: 20px;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        .view-product-btn {
            display: block;
            width: fit-content;
            margin: 0 auto;
            background-color: #f39c12;
            color: #1a1a1a;
            text-decoration: none;
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: bold;
            font-size: 18px;
            transition: 0.2s;
            text-align: center;
        }
        .view-product-btn:hover {
            background-color: #e67e22;
            transform: scale(1.02);
        }
        @media (max-width: 640px) {
            .modal-content {
                width: 95%;
                padding: 15px;
            }
            .view-product-btn {
                font-size: 16px;
                padding: 10px 24px;
            }
        }
    