:root {
            --primary: #7209b7;
            --primary-light: #9d4edd;
            --primary-dark: #560bad;
            --secondary: #f72585;
            --secondary-light: #ff5ca8;
            --secondary-dark: #c7007c;
            --accent: #4cc9f0;
            --dark: #1a1a2e;
            --light: #ffffff;
            --gray: #f8f9fa;
            --text: #333333;
            --success: #38b000;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Quicksand', sans-serif;
            background-color: #EEEEEE;
            color: var(--text);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }
        
        .page-wrapper {
            position: relative;
            min-height: 100vh;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: radial-gradient(ellipse at bottom, var(--primary-light) 0%, var(--primary-dark) 100%);
            overflow: hidden;
        }
        
        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle var(--duration) infinite ease-in-out;
            opacity: 0;
        }
        
        @keyframes twinkle {
            0% { opacity: 0; transform: scale(0.5); }
            50% { opacity: 1; transform: scale(1); }
            100% { opacity: 0; transform: scale(0.5); }
        }
        
        .card-container {
            position: relative;
            z-index: 10;
            max-width: 450px;
            width: 100%;
            overflow: visible;
            perspective: 1000px;
        }
        
        .card {
            position: relative;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transform-style: preserve-3d;
            transition: all 0.5s ease;
            overflow: hidden;
            animation: cardFloat 3s infinite ease-in-out;
        }
        
        @keyframes cardFloat {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        .card:hover {
            transform: rotateX(5deg) rotateY(5deg);
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        }
        
        .card-header {
            position: relative;
            padding: 30px 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--light);
            text-align: center;
            border-radius: 16px 16px 0 0;
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            margin-bottom: -15px;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 5px;
            background: linear-gradient(to right, #ffffff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
            letter-spacing: 1px;
            transform: perspective(500px) rotateX(10deg);
        }
        
        .tagline {
            font-size: 16px;
            font-weight: 500;
            opacity: 0.9;
            margin-bottom: 10px;
        }
        
        .card-body {
            padding: 30px 25px;
            position: relative;
        }
        
        .badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: var(--secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
            transform: rotate(3deg);
            z-index: 100;
        }
        
        .rupee {
            position: relative;
            font-size: 32px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
            display: inline-block;
            text-shadow: 0 2px 5px rgba(0,0,0,0.1);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .offer-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .input-label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--primary-dark);
            font-size: 16px;
        }
        
        .input-field {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid rgba(114, 9, 183, 0.2);
            border-radius: 12px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
            font-family: 'Quicksand', sans-serif;
            font-weight: 500;
        }
        
        .input-field:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.15), inset 0 1px 3px rgba(0,0,0,0.1);
            outline: none;
            background: white;
        }
        
        .btn-submit {
            position: relative;
            display: block;
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            color: white;
            cursor: pointer;
            font-family: 'Quicksand', sans-serif;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary), var(--primary-light));
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            box-shadow: 0 5px 15px rgba(114, 9, 183, 0.3);
            transition: all 0.3s ease;
            margin-top: 10px;
            overflow: hidden;
            z-index: 1;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(114, 9, 183, 0.4);
        }
        
        .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 3px 15px rgba(114, 9, 183, 0.3);
        }
        
        .btn-submit::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            border-radius: 12px;
            z-index: -1;
            transition: all 0.3s ease;
            transform: scaleX(0);
            transform-origin: right;
            opacity: 0;
        }
        
        .btn-submit:hover::after {
            transform: scaleX(1);
            transform-origin: left;
            opacity: 0.1;
        }
        
        .btn-icon {
            margin-right: 10px;
        }
        
        .conditions-text {
            text-align: center;
            font-size: 14px;
            color: var(--primary-dark);
            opacity: 0.8;
            margin: 20px 0;
            line-height: 1.5;
        }
        
        .warning-text {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .warning-text i {
            margin-right: 8px;
        }
        
        .telegram-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            background: #0088cc;
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
            margin-top: 10px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .telegram-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
            z-index: -1;
        }
        
        .telegram-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
        }
        
        .telegram-btn:active {
            transform: translateY(0);
            box-shadow: 0 3px 15px rgba(0, 136, 204, 0.3);
        }
        
        .telegram-icon {
            font-size: 20px;
            margin-right: 10px;
        }
        
        .shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }
        
        /* Animated Wave Background */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            overflow: hidden;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white" /><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="white" /><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="white" /></svg>');
            background-size: cover;
            background-repeat: no-repeat;
            animation: wave 10s linear infinite;
            opacity: 0.8;
        }
        
        .wave:nth-child(2) {
            bottom: 0;
            animation: wave 15s linear reverse infinite;
            opacity: 0.5;
        }
        
        .wave:nth-child(3) {
            bottom: 0;
            animation: wave 20s linear infinite;
            opacity: 0.2;
        }
        
        @keyframes wave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1000px; }
        }