 .offer-universe {
            min-height: 100vh;
            background: #0a0e27;
            position: relative;
            overflow: hidden;
            font-family: 'Poppins', monospace;
            padding: 50px 20px;
        }
        /* Animated starfield background */
        .offer-universe::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(1px 1px at 20% 30%, white, transparent),
                radial-gradient(1px 1px at 60% 70%, white, transparent),
                radial-gradient(1px 1px at 50% 50%, white, transparent),
                radial-gradient(1px 1px at 80% 10%, white, transparent),
                radial-gradient(1px 1px at 90% 60%, white, transparent),
                radial-gradient(1px 1px at 33% 80%, white, transparent),
                radial-gradient(1px 1px at 15% 90%, white, transparent);
            background-size: 200% 200%;
            background-position: 0% 0%;
            opacity: 0.3;
            animation: starfield 120s linear infinite;
        }
        @keyframes starfield {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }
        /* Grid overlay */
        .offer-universe::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }
        .offer-content-wrapper {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }
        /* Main heading section */
        .offer-hero {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeInDown 0.8s ease-out;
        }
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .offer-main-title {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: white;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin: 0;
        }
        @keyframes neonPulse {
            from {
                text-shadow: 
                    0 0 8px rgba(0, 255, 255, 0.8),
                    0 0 15px rgba(0, 255, 255, 0.5),
                    0 0 25px rgba(0, 255, 255, 0.3);
            }
            to {
                text-shadow: 
                    0 0 15px rgba(0, 255, 255, 1),
                    0 0 25px rgba(0, 255, 255, 0.7),
                    0 0 35px rgba(0, 255, 255, 0.5);
            }
        }
        .offer-accent {
            color: #ff00ff;
            text-shadow: 
                0 0 8px rgba(255, 0, 255, 0.8),
                0 0 15px rgba(255, 0, 255, 0.5);
        }
        .offer-subtitle {
            font-size: 18px;
            color: #8892b0;
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
            letter-spacing: 0.5px;
        }
        /* Terminal service list */
        .offer-terminal-zone {
            animation: slideInUp 0.8s ease-out 0.3s both;
        }
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .offer-terminal-container {
            background: rgba(10, 14, 39, 0.8);
            border: 2px solid rgba(0, 255, 255, 0.25);
            border-radius: 8px;
            padding: 0;
            overflow: hidden;
            backdrop-filter: blur(10px);
            box-shadow: 
                0 0 30px rgba(0, 255, 255, 0.15),
                inset 0 0 15px rgba(0, 0, 0, 0.5);
        }
        .offer-terminal-header {
            background: linear-gradient(90deg, rgba(0, 255, 255, 0.15), rgba(255, 0, 255, 0.15));
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px solid rgba(0, 255, 255, 0.2);
        }
        .offer-terminal-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ff00ff;
            box-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
        }
        .offer-terminal-dot:nth-child(2) {
            background: #00ffff;
            box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
        }
        .offer-terminal-dot:nth-child(3) {
            background: #00ff88;
            box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
        }
        .offer-terminal-body {
            padding: 25px;
        }
        .offer-service-entry {
            margin-bottom: 22px;
            padding: 20px;
            background: rgba(0, 255, 255, 0.03);
            border-left: 3px solid;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
            opacity: 0;
            animation: terminalLine 0.5s ease-out forwards;
        }
        .offer-service-entry:last-child {
            margin-bottom: 0;
        }
        .offer-service-entry:nth-child(1) {
            border-color: #00ffff;
            animation-delay: 0.5s;
        }
        .offer-service-entry:nth-child(2) {
            border-color: #ff00ff;
            animation-delay: 0.7s;
        }
        .offer-service-entry:nth-child(3) {
            border-color: #00ff88;
            animation-delay: 0.9s;
        }
        .offer-service-entry:nth-child(4) {
            border-color: #ffbf00;
            animation-delay: 1.1s;
        }
        @keyframes terminalLine {
            from {
                opacity: 0;
                transform: translateX(-15px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .offer-service-entry:hover {
            background: rgba(0, 255, 255, 0.06);
            transform: translateX(10px);
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.15);
        }
        .offer-service-header-line {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .offer-terminal-prompt {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #00ffff;
            opacity: 0.7;
            flex-shrink: 0;
        }
        .offer-service-title-text {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: 1.5px;
        }
        .offer-service-description-text {
            font-size: 13px;
            line-height: 1.7;
            color: #8892b0;
            margin: 0;
            font-family: 'Inter', monospace;
        }
        .offer-service-description-text::before {
            content: '> ';
            color: #00ffff;
            opacity: 0.5;
        }
        /* Scanline effect */
        .offer-scanline {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                transparent 50%,
                rgba(0, 255, 255, 0.015) 50%
            );
            background-size: 100% 4px;
            pointer-events: none;
            z-index: 10;
            animation: scanlineMove 8s linear infinite;
        }
        @keyframes scanlineMove {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(4px);
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .offer-universe {
                padding: 40px 15px;
            }
            .offer-hero {
                margin-bottom: 40px;
            }
            .offer-main-title {
                letter-spacing: 2px;
                font-size: clamp(28px, 6vw, 36px);
            }
            .offer-subtitle {
                font-size: 14px;
            }
            .offer-terminal-header {
                padding: 10px 15px;
            }
            .offer-terminal-dot {
                width: 10px;
                height: 10px;
            }
            .offer-terminal-body {
                padding: 20px;
            }
            .offer-service-entry {
                padding: 16px;
                margin-bottom: 18px;
            }
            .offer-terminal-prompt {
                font-size: 16px;
            }
            .offer-service-title-text {
                font-size: 14px;
                letter-spacing: 1px;
            }
            .offer-service-description-text {
                font-size: 12px;
            }
        }
        @media (max-width: 480px) {
            .offer-universe {
                padding: 30px 15px;
            }
            .offer-hero {
                margin-bottom: 30px;
            }
            .offer-main-title {
                font-size: 24px;
                letter-spacing: 1px;
            }
            .offer-subtitle {
                font-size: 13px;
                line-height: 1.5;
            }
            .offer-terminal-body {
                padding: 15px;
            }
            .offer-service-entry {
                padding: 14px;
                margin-bottom: 15px;
            }
            .offer-service-header-line {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .offer-terminal-prompt {
                font-size: 14px;
            }
            .offer-service-title-text {
                font-size: 13px;
            }
            .offer-service-description-text {
                font-size: 11px;
                line-height: 1.6;
            }
        }
        @media (min-width: 1200px) {
            .offer-content-wrapper {
                max-width: 1000px;
            }
            .offer-terminal-body {
                padding: 30px;
            }
            .offer-service-entry {
                padding: 24px;
                margin-bottom: 25px;
            }
            .offer-terminal-prompt {
                font-size: 20px;
            }
            .offer-service-title-text {
                font-size: 18px;
            }
            .offer-service-description-text {
                font-size: 14px;
            }
        }