 * {
            font-family: 'Poppins', sans-serif;
        }

        h1,
        h2,
        h3,
        .heading {
            font-family: 'Montserrat', sans-serif;
        }

        body {
            background-color: #0C0520;
            color: #ffffff;
        }

        .text-green {
            color: #29FFAE;
        }

        /* Neon glow effects */
        .glow-neon-purple {
            box-shadow: 0 0 20px rgba(125, 60, 255, 0.4);
        }

        .glow-neon-green {
            box-shadow: 0 0 20px rgba(41, 255, 174, 0.3);
        }

        .glow-text-green {
            color: #29FFAE;
            text-shadow: 0 0 10px rgba(41, 255, 174, 0.5);
        }

        .glow-text-gold {
            color: #FFB300;
        }

        .btn-neon-green {
            background-color: #29FFAE;
            color: #0C0520;
            border: none;
            border-radius: 25px;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(41, 255, 174, 0.3);
        }

        .btn-neon-green:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(41, 255, 174, 0.6);
        }

        .btn-outline-green {
            background: transparent;
            color: #29FFAE;
            border: 2px solid #29FFAE;
            border-radius: 25px;
            padding: 10px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-outline-green:hover {
            background-color: rgba(41, 255, 174, 0.1);
        }

        .card-dark {
            background: rgba(125, 60, 255, 0.1);
            border: 1px solid rgba(125, 60, 255, 0.3);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            padding: 24px;
        }

        .gradient-hero {
            background: linear-gradient(135deg, rgba(125, 60, 255, 0.2) 0%, rgba(255, 179, 0, 0.1) 100%);
        }

        /* Mobile hamburger menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #29FFAE;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: rgba(12, 5, 32, 0.95);
                border-bottom: 1px solid rgba(125, 60, 255, 0.3);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                z-index: 50;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                text-decoration: none;
                color: #cfcfcf;
                font-weight: 500;
                transition: color 0.3s ease;
            }

            .nav-links a:hover {
                color: #29FFAE;
            }
        }

        /* Hero section spacing */
        .hero-content {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .hero-text .subtitle {
            font-size: 0.95rem;
            color: #cfcfcf;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .bounceeffect {
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            animation: phoneFloat 4s ease-in-out infinite;
        }

        /* Prize cards */
        .prize-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(12, 5, 32, 0.6);
            border: 1px solid rgba(125, 60, 255, 0.2);
            border-radius: 12px;
        }

        .prize-icon {
            width: 60px;
            height: 60px;
            background: rgba(125, 60, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .prize-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: #29FFAE;
        }

        .prize-label {
            font-size: 0.85rem;
            color: #cfcfcf;
            margin-top: 4px;
        }

        .hero-section {
            background: linear-gradient(90deg, rgba(12, 5, 32, 1), 70%, rgba(0, 0, 0, 0.5)), url(asset/vectorbg.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }

        @media (max-width: 640px) {
            .hero-text h1 {
                font-size: 1.8rem;
            }

            .hero-section {
                padding: 20px 16px 40px 16px;
            }
        }

        /* contest section style  */

        :root {
            --color-dark-bg: #0e0b26;
            --color-card-purple: #28184E;
            --color-accent-green: #9BF400;
            --color-neon-yellow: #FFD232;
            --color-purple-from: #5A1E86;
            --color-purple-to: #28184E;
            --color-text-white: #ffffff;
            --color-text-muted: #cfcfcf;
        }

        /* Bonus Card Styles */
        .bonus-card {
            background: linear-gradient(135deg, rgba(90, 30, 134, 0.15) 0%, rgba(40, 24, 78, 0.3) 100%);
            border: 1px solid rgba(155, 244, 0, 0.15);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .bonus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(155, 244, 0, 0.3), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .bonus-card:hover {
            border-color: rgba(155, 244, 0, 0.4);
            box-shadow: 0 0 20px rgba(155, 244, 0, 0.15), 0 0 40px rgba(90, 30, 134, 0.2);
            transform: translateY(-4px);
        }

        .bonus-card:hover::before {
            opacity: 1;
        }

        /* Bonus Card Header */
        .bonus-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

        .bonus-card-text {
            flex: 1;
        }

        .bonus-category {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .bonus-title {
            font-size: 1.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--color-accent-green) 0%, var(--color-neon-yellow) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .bonus-subtitle {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            line-height: 1.4;
        }

        /* Bonus Image Placeholder */
        .bonus-image-placeholder {
            width: 100px;
            height: 100px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 2rem;
            flex-shrink: 0;
            position: relative;
            overflow: hidden;
        }

        .bonus-image-placeholder::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(155, 244, 0, 0.1) 0%, rgba(90, 30, 134, 0.1) 100%);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 1;
            }
        }

        /* Bonus Button */
        .bonus-btn {
            background-color: var(--color-accent-green);
            color: #0e0b26;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(155, 244, 0, 0.2);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            align-self: flex-start;
        }

        .bonus-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(155, 244, 0, 0.4);
            background-color: var(--color-neon-yellow);
        }

        /* Section Heading */
        .promotions-section {
            text-align: start;
            margin-bottom: 48px;
        }

        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-accent-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1rem;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0;
        }

        /* Responsive Grid */
        .bonus-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        @media (min-width: 640px) {
            .bonus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .bonus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1280px) {
            .bonus-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile adjustments */
        @media (max-width: 640px) {
            .section-title {
                font-size: 2rem;
            }

            .section-description {
                font-size: 0.9rem;
            }

            .bonus-card {
                padding: 20px;
            }

            .bonus-title {
                font-size: 1.1rem;
            }

            .bonus-image-placeholder {
                width: 80px;
                height: 80px;
                font-size: 1.75rem;
            }
        }

        /* Scroll animation */
        .bonus-card {
            opacity: 0;
            transform: translateY(20px);
            animation: slideInUp 0.6s ease forwards;
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bonus-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .bonus-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .bonus-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .bonus-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .bonus-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .bonus-card:nth-child(6) {
            animation-delay: 0.6s;
        }


        /* safe and secure ensure section  */

        /* Custom color variables */
        :root {
            --color-dark-bg: #0e0b26;
            --color-card-purple: #28184E;
            --color-accent-green: #9BF400;
            --color-neon-yellow: #FFD232;
            --color-purple-from: #5A1E86;
            --color-purple-to: #28184E;
            --color-text-white: #ffffff;
            --color-text-muted: #cfcfcf;
        }

        /* Withdrawals Section */
        .withdrawals-section {
            position: relative;
            overflow: hidden;
            padding: 60px 33px;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

        /* Background gradient animation */
        .withdrawals-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(90, 30, 134, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-30px);
            }
        }

        /* Decorative elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
            animation: floatAroundScreen 15s ease-in-out infinite;
        }

        .floating-element.elem-1 {
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, #FF1493 0%, #9D00FF 100%);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .floating-element.elem-2 {
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, #7D3CFF 0%, #5A1E86 100%);
            top: 15%;
            left: 12%;
            animation-delay: 2s;
        }

        .floating-element.elem-3 {
            width: 40px;
            height: 40px;
            background: #00CED1;
            top: 5%;
            right: 15%;
            animation-delay: 1s;
        }

        .floating-element.elem-4 {
            width: 60px;
            height: 60px;
            background: #FF69B4;
            bottom: 20%;
            right: 5%;
            animation-delay: 3s;
        }

        .floating-element.elem-5 {
            width: 50px;
            height: 50px;
            background: #00CED1;
            bottom: 15%;
            right: 25%;
            animation-delay: 2s;
        }

        .floating-element.star {
            width: 10px;
            height: 10px;
            background: #9BF400;
            top: 20%;
            right: 30%;
            animation-delay: 0.5s;
        }

        .floating-element.star-2 {
            width: 12px;
            height: 12px;
            background: #FFD232;
            top: 35%;
            right: 10%;
            animation-delay: 1.5s;
        }

        .floating-element.star-3 {
            width: 8px;
            height: 8px;
            background: #9BF400;
            top: 25%;
            left: 8%;
            animation-delay: 3s;
        }

        @keyframes floatAroundScreen {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(20px, -20px) scale(1.1);
            }

            50% {
                transform: translate(-10px, 10px) scale(0.9);
            }

            75% {
                transform: translate(15px, 20px) scale(1);
            }
        }

        /* Section content */
        .withdrawals-content {
            position: relative;
            z-index: 10;
            max-width: 7xl;
            margin: 0 auto;
            padding: 0 16px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        /* Left content */
        .withdrawals-text {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .withdrawals-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--color-accent-green);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .withdrawals-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            color: var(--color-text-white);
        }

        .withdrawals-description {
            font-size: 1rem;
            color: var(--color-text-muted);
            line-height: 1.6;
        }

        .withdrawals-btn {
            background-color: var(--color-accent-green);
            color: #0e0b26;
            border: none;
            border-radius: 25px;
            padding: 12px 28px;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(155, 244, 0, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .withdrawals-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(155, 244, 0, 0.5);
            background-color: var(--color-neon-yellow);
        }

        /* Right side - 3D Phone Mockup */
        .phone-mockup-container {
            position: relative;
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .phone-mockup {
            position: relative;
            width: 280px;
            height: 380px;
            background: linear-gradient(135deg, #7D3CFF 0%, #5A1E86 100%);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 20px 60px rgba(125, 60, 255, 0.4), 0 0 40px rgba(155, 244, 0, 0.2);
            transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
            animation: phoneFloat 4s ease-in-out infinite;
        }

        @keyframes phoneFloat {

            0%,
            100% {
                transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0);
            }

            50% {
                transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px);
            }
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #5A1E86 0%, #3d0f60 100%);
            border-radius: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .phone-content {
            text-align: center;
            z-index: 10;
        }

        .phone-icon {
            font-size: 3rem;
            margin-bottom: 12px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .phone-text {
            font-size: 0.8rem;
            font-weight: 600;
            color: #ffffff;
        }

        /* Floating coins around phone */
        .coin {
            position: absolute;
            width: 50px;
            height: 50px;
            background: radial-gradient(circle at 30% 30%, #FFD700, #FFA500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
            animation: floatCoin 3s ease-in-out infinite;
        }

        .coin:nth-child(1) {
            top: -20px;
            left: 50%;
            animation-delay: 0s;
        }

        .coin:nth-child(2) {
            top: 20px;
            left: 100%;
            animation-delay: 0.5s;
        }

        .coin:nth-child(3) {
            top: 100px;
            left: 110%;
            animation-delay: 1s;
        }

        .coin:nth-child(4) {
            top: 180px;
            left: 105%;
            animation-delay: 1.5s;
        }

        @keyframes floatCoin {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            50% {
                transform: translate(15px, -15px) rotate(180deg);
            }
        }

        /* Stats Grid */
        .stats-grid {
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-top: 40px;
        }

        .stat-card {
            background: linear-gradient(135deg, rgba(125, 60, 255, 0.15) 0%, rgba(40, 24, 78, 0.3) 100%);
            border-radius: 20px;
            padding: 24px;
            text-align: center;
            border: 1px solid rgba(155, 244, 0, 0.2);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .stat-card:nth-child(1) {
            background: linear-gradient(135deg, rgba(220, 50, 80, 0.3), rgba(180, 30, 60, 0.2));
            border-color: rgba(220, 50, 80, 0.4);
        }

        .stat-card:nth-child(2) {
            background: linear-gradient(135deg, rgba(30, 80, 180, 0.3), rgba(20, 60, 150, 0.2));
            border-color: rgba(30, 80, 180, 0.4);
        }

        .stat-card:nth-child(3) {
            background: linear-gradient(135deg, rgba(30, 150, 80, 0.3), rgba(20, 120, 60, 0.2));
            border-color: rgba(30, 150, 80, 0.4);
        }

        .stat-card:nth-child(4) {
            background: linear-gradient(135deg, rgba(180, 120, 30, 0.3), rgba(150, 100, 20, 0.2));
            border-color: rgba(180, 120, 30, 0.4);
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(155, 244, 0, 0.15);
            border-color: rgba(155, 244, 0, 0.4);
        }

        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 12px;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .withdrawals-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .withdrawals-title {
                font-size: 2rem;
            }

            .phone-mockup-container {
                height: 350px;
            }

            .phone-mockup {
                width: 240px;
                height: 320px;
            }
        }

        @media (max-width: 768px) {
            .withdrawals-section {
                padding: 40px 0px;
                min-height: auto;
            }

            .withdrawals-title {
                font-size: 1.75rem;
            }

            .withdrawals-description {
                font-size: 0.95rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .stat-card {
                padding: 16px;
            }

            .stat-value {
                font-size: 1.5rem;
            }

            .stat-icon {
                font-size: 2rem;
            }
        }


        /* Custom Neon Glow Effects */
        .neon-glow-purple {
            box-shadow: 0 0 20px rgba(125, 60, 255, 0.4), 0 0 40px rgba(125, 60, 255, 0.2);
        }

        .neon-glow-green {
            box-shadow: 0 0 20px rgba(41, 255, 174, 0.4), 0 0 40px rgba(41, 255, 174, 0.2);
        }

        .neon-glow-gold {
            box-shadow: 0 0 20px rgba(255, 179, 0, 0.4), 0 0 40px rgba(255, 179, 0, 0.2);
        }

        /* Card Hover Effects */
        .step-card {
            transition: all 0.4s ease;
            background: transparent;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-10px);
        }

        .step-card:hover .step-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Arrow Animation */
        .arrow-connector {
            animation: pulse 2s ease-in-out infinite;
            position: relative;
        }

        .arrow-connector svg {
            filter: drop-shadow(0 0 10px currentColor);
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.6;
                transform: translateX(0);
            }

            50% {
                opacity: 1;
                transform: translateX(10px);
            }
        }

        /* Icon Container Styles */
        .icon-container {
            background: linear-gradient(135deg, #7D3CFF, #5a2bc9);
            position: relative;
            overflow: hidden;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .icon-container.circle-shape {
            clip-path: circle(50% at 50% 50%);
        }

        .icon-container.hexagon-shape {
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .icon-container.star-shape {
            clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
        }

        .icon-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                left: -50%;
            }

            50%,
            100% {
                left: 150%;
            }
        }

        /* Responsive Icon Sizes */
        .step-icon {
            font-size: 3rem;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            transition: all 0.3s ease;
        }

        @media (max-width: 640px) {
            .step-icon {
                font-size: 2.5rem;
            }
        }

        /* Floating Background Shapes */
        .floating-shape {
            position: absolute;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(2) {
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            animation-delay: 4s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }



        /* Newsletter Section Gradient */
        .newsletter-gradient {
            background: linear-gradient(135deg, rgba(125, 60, 255, 0.3), rgba(41, 255, 174, 0.2));
            border: 2px solid rgba(125, 60, 255, 0.4);
            backdrop-filter: blur(10px);
        }

        /* Input Field Styles */
        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            border-color: #29FFAE;
            box-shadow: 0 0 20px rgba(41, 255, 174, 0.3);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        /* Subscribe Button */
        .subscribe-btn {
            background: linear-gradient(135deg, #7D3CFF, #5a2bc9);
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(125, 60, 255, 0.4);
        }

        .subscribe-btn:hover {
            background: linear-gradient(135deg, #8e4dff, #6b3cd9);
            box-shadow: 0 6px 25px rgba(125, 60, 255, 0.6);
            transform: translateY(-2px);
        }

        /* Social Icons */
        .social-icon {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            /* background: linear-gradient(135deg, #7D3CFF, #29FFAE); */
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(125, 60, 255, 0.7);
        }

        /* Decorative Illustrations */
        .rocket-illustration {
            animation: float-rocket 3s ease-in-out infinite;
        }

        @keyframes float-rocket {

            0%,
            100% {
                transform: translateY(0) rotate(-10deg);
            }

            50% {
                transform: translateY(-20px) rotate(-5deg);
            }
        }

        .person-illustration {
            animation: celebrate 2s ease-in-out infinite;
        }

        @keyframes celebrate {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
            }

            50% {
                transform: scale(1.05) rotate(5deg);
            }
        }

        /* Footer Link Hover */
        .footer-link {
            transition: all 0.2s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #7D3CFF, #29FFAE);
            transition: width 0.3s ease;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        .footer-link:hover {
            color: #29FFAE;
        }

        /* Floating Coins */
        .floating-coin {
            position: absolute;
            animation: float-coin 4s ease-in-out infinite;
        }

        @keyframes float-coin {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-15px) rotate(180deg);
            }
        }

        /* Language Dropdown */
        .language-select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .language-select:focus {
            outline: none;
            border-color: #7D3CFF;
            box-shadow: 0 0 15px rgba(125, 60, 255, 0.4);
        }