
        .container78 {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .disclaimer-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
        }

        .disclaimer-content {
            background: var(--white);
            border-radius: 24px;
            box-shadow: var(--shadow);
            padding: 60px;
            position: relative;
            overflow: hidden;
            transform: translateY(40px);
            opacity: 0;
            animation: contentReveal 1s ease-out 0.5s forwards;
        }

        .disclaimer-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            pointer-events: none;
        }

        .disclaimer-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .disclaimer-header h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            transform: translateY(30px);
            opacity: 0;
            animation: titleReveal 1s ease-out 0.2s forwards;
        }

        .disclaimer-intro {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 50px;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: introReveal 1s ease-out 0.4s forwards;
        }

        .disclaimer-sections {
            position: relative;
        }

        .disclaimer-section {
            margin-bottom: 40px;
            position: relative;
            transform: translateX(-30px);
            opacity: 0;
            transition: transform 0.3s ease;
        }

        .disclaimer-section:hover {
            transform: translateX(10px);
        }

        .disclaimer-section h2 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }

        .disclaimer-section:hover h2 {
            color: var(--secondary-color);
        }

        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border-radius: 50%;
            margin-right: 15px;
            font-weight: bold;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .section-number::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(-100%);
            animation: shimmer 3s infinite;
        }

        .disclaimer-section:hover .section-number {
            transform: scale(1.1);
        }

        .disclaimer-section p {
            color: var(--text-dark);
            font-size: 1.1rem;
            padding-left: 51px;
            line-height: 1.8;
        }

        .disclaimer-section:nth-child(1) { animation: sectionReveal 0.8s ease-out 0.6s forwards; }
        .disclaimer-section:nth-child(2) { animation: sectionReveal 0.8s ease-out 0.8s forwards; }
        .disclaimer-section:nth-child(3) { animation: sectionReveal 0.8s ease-out 1s forwards; }
        .disclaimer-section:nth-child(4) { animation: sectionReveal 0.8s ease-out 1.2s forwards; }
        .disclaimer-section:nth-child(5) { animation: sectionReveal 0.8s ease-out 1.4s forwards; }
        .disclaimer-section:nth-child(6) { animation: sectionReveal 0.8s ease-out 1.6s forwards; }

        .update-info {
            text-align: right;
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #e5e7eb;
            color: var(--text-light);
            font-size: 1rem;
            transform: translateY(20px);
            opacity: 0;
            animation: updateReveal 1s ease-out 1.8s forwards;
        }

        .background-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.4;
        }

        .circle-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            top: -150px;
            right: -100px;
            animation: float1 20s infinite ease-in-out;
        }

        .circle-2 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            bottom: -100px;
            left: -100px;
            animation: float2 25s infinite ease-in-out;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            top: 50%;
            right: -100px;
            animation: float3 30s infinite ease-in-out;
        }

        /* Animations */
        @keyframes contentReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes titleReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes introReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes sectionReveal {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes updateReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(30px, -30px) scale(1.05); }
            50% { transform: translate(-20px, 20px) scale(0.95); }
            75% { transform: translate(40px, 10px) scale(1.02); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(-40px, 20px) scale(0.98); }
            50% { transform: translate(30px, -40px) scale(1.03); }
            75% { transform: translate(-20px, -10px) scale(0.97); }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(20px, 30px) scale(1.05); }
            66% { transform: translate(-30px, -20px) scale(0.95); }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .disclaimer-content {
                padding: 40px 25px;
            }
            
            .disclaimer-header h1 {
                font-size: 2.2rem;
            }
            
            .disclaimer-intro {
                font-size: 1.1rem;
            }
            
            .disclaimer-section h2 {
                font-size: 1.3rem;
            }
            
            .disclaimer-section p {
                font-size: 1rem;
                padding-left: 40px;
            }
            
            .section-number {
                width: 30px;
                height: 30px;
                margin-right: 10px;
            }
        }
