            body {
                background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                min-height: 100vh;
                /* padding: 20px 0; */
            }


            .ip-hero {
                /* background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); */
                background: linear-gradient(135deg, #126082 0%, #0d4d66 50%, #2089b6 100%);
                border-radius: 40px;
                padding: 60px 40px;
                margin: 40px auto;
                box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
                position: relative;
                overflow: hidden;
                text-align: center;
            }

            .ip-hero::before {
                content: '';
                position: absolute;
                top: -50%;
                right: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
                animation: float 20s ease-in-out infinite;
            }

            @keyframes float {

                0%,
                100% {
                    transform: translate(0, 0) rotate(0deg);
                }

                33% {
                    transform: translate(30px, -30px) rotate(120deg);
                }

                66% {
                    transform: translate(-20px, 20px) rotate(240deg);
                }
            }

            .ip-hero-content {
                position: relative;
                z-index: 1;
            }

            .ip-hero-title {
                color: #fff;
                font-size: 48px;
                font-weight: 800;
                margin-bottom: 20px;
                text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
                letter-spacing: -1px;
            }

            .ip-hero-title i {
                color: #ffd700;
                margin-right: 15px;
                font-size: 44px;
            }

            .ip-display {
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 20px;
                padding: 30px;
                margin: 30px 0;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
                border: 3px solid rgba(255, 255, 255, 0.3);
            }

            .ip-address {
                font-size: 42px;
                font-weight: 700;
                color: #667eea;
                text-align: center;
                margin: 20px 0;
                font-family: 'Courier New', monospace;
                letter-spacing: 2px;
                text-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
            }

            .ip-info-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 25px;
                margin-top: 40px;
            }

            .ip-info-card {
                background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
                border-radius: 20px;
                padding: 25px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
                border: 2px solid #e9ecef;
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .ip-info-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            }

            .ip-info-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
                border-color: #667eea;
            }

            .ip-info-label {
                color: #6c757d;
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .ip-info-label i {
                color: #667eea;
                font-size: 14px;
            }

            .ip-info-value {
                color: #212529;
                font-size: 20px;
                font-weight: 700;
                word-break: break-word;
            }

            .ip-info-value code {
                background: #f8f9fa;
                padding: 4px 8px;
                border-radius: 6px;
                font-size: 16px;
                color: #667eea;
                font-weight: 600;
            }

            .error-message {
                background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
                border-radius: 20px;
                padding: 50px 40px;
                text-align: center;
                box-shadow: 0 15px 40px rgba(255, 107, 107, 0.3);
                color: #fff;
            }

            .error-message i {
                font-size: 64px;
                margin-bottom: 20px;
                opacity: 0.9;
            }

            .error-message h2 {
                font-size: 32px;
                font-weight: 700;
                margin-bottom: 15px;
            }

            .error-message p {
                font-size: 18px;
                opacity: 0.95;
                line-height: 1.6;
            }

            .badge-eu {
                display: inline-block;
                padding: 4px 12px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                background: #28a745;
                color: #fff;
            }

            .badge-robot {
                display: inline-block;
                padding: 4px 12px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                background: #dc3545;
                color: #fff;
            }

            .badge-human {
                display: inline-block;
                padding: 4px 12px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                background: #28a745;
                color: #fff;
            }

            @media (max-width: 768px) {
                .ip-hero-title {
                    font-size: 36px;
                }

                .ip-address {
                    font-size: 28px;
                }

                .ip-info-grid {
                    grid-template-columns: 1fr;
                }
            }