
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(to top, #2a66af 0%, #001453 100%);
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        .close-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .close-btn:hover {
            transform: scale(1.1) rotate(90deg);
            background: rgba(255, 255, 255, 0.25);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            padding-bottom: 40px;
        }

        header { 
            text-align: center;
            margin-bottom: 40px;
        }

        .logo-container {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: #2e68b2;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .logo-container:hover {
            transform: scale(1.05);
        }

        .logo-container img {
            width: 70%;
            height: 70%;
            object-fit: cover;
        }

        .logo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .warning-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 24px;
            max-width: 680px; 
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .warning-icon {
            text-align: center;
            font-size: 48px; 
            margin-bottom: 0px;
        }

        .warning-icon img {
            height: 48px;
            width: auto;
        }

        .warning-title {
            color: rgb(255, 187, 0);
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
        }

        .warning-text {
            color: rgba(255, 255, 255, 0.95);
            text-align: center;
            line-height: 1.6;
            font-size: 16px;
        }

        .warning-text a {
            color: rgba(255, 183, 0, 0.9);
            font-weight: 500;
        }

        /* MASONRY LAYOUT */
        .masonry-grid {
            position: relative;
            width: 100%;
        }

        .masonry-column {
            float: left;
            width: 25%;
            padding: 0 10px;
        }

        .card {
            background: url('https://d-parking.it/patternP.png') center/cover rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeInCard 0.5s ease forwards;
        }

        @keyframes fadeInCard {
            to {
                opacity: 1;
            }
        }

        .masonry-grid::after {
            content: "";
            display: table;
            clear: both;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
            background: rgba(255, 255, 255, 0.15);
        }

        .card-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .card-content {
            padding: 20px;
        }

        .card-title {
            font-size: 1rem;
            color: rgb(255, 187, 0);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .card-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            font-weight: 500;
        }

        .card-meta-labels-container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .card-meta-label {
            display: inline-block;
            background-color: rgba(0, 128, 255, 0.4);
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.8rem;
            padding: 8px 15px;
            border-radius: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            white-space: nowrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .download-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
            pointer-events: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .card:hover .download-icon {
            opacity: 1;
        }

        .download-icon svg {
            width: 30px;
            height: 30px;
            fill: #2e68b2;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .masonry-column {
                width: 33.333%;
            }
        }

        @media (max-width: 768px) {
            .masonry-column {
                width: 50%;
            }
        }

        @media (max-width: 480px) {
            .masonry-column {
                width: 100%;
                padding: 0;
            }
            
            .warning-box {
                padding: 16px;
            }

            .warning-icon img {
                height: 36px;
            }

            .warning-title {
                font-size: 18px;
            }

            .warning-text {
                font-size: 14px;
            }
        }

        /* MODAL */
        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); 
            backdrop-filter: blur(5px);
            display: none; 
            align-items: center;
            justify-content: center;
            z-index: 2000; 
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-backdrop.show {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background: url('https://d-parking.it/patternP.png') center/cover rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 40px;
            max-width: 450px;
            text-align: center;
            box-shadow: 0 16px 64px rgba(0, 0, 0, 0.7);
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .modal-backdrop.show .modal-content {
            transform: scale(1);
        }

        .modal-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: #2e68b2;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
        }

        .modal-logo img {
            width: 60%;
            height: 60%;
            object-fit: cover;
        }

        .modal-title {
            color: rgb(255, 187, 0);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .modal-description {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .modal-close-btn {
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 10px 30px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .modal-close-btn:hover {
            background-color: #ffc933;
            transform: translateY(-2px);
        }