 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;800&display=swap');
        
        :root {
            --bg: #0a0a1a;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.15);
            --clr-1: #00c2ff;
            --clr-2: #33ff8c;
            --clr-3: #ffc640;
            --clr-4: #e54cff;
            --clr-5: #ff4c7c;
            --text-glow: rgba(255, 255, 255, 0.8);
            --blur: 1.2rem;
            --fs: clamp(2.8rem, 7vw, 6.5rem);
            --fs-sm: clamp(1.2rem, 3vw, 1.5rem);
        }
        .buttons-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.response-btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.response-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.response-btn:hover::before {
    opacity: 1;
}

.response-btn:active {
    transform: scale(0.95);
}

.response-btn i {
    font-size: 1.4rem;
}

.yes-btn {
    background: linear-gradient(135deg, var(--clr-5), #ff2e63);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.yes-btn:hover {
    background: linear-gradient(135deg, #ff2e63, var(--clr-5));
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 76, 124, 0.4), 
                0 0 40px rgba(255, 76, 124, 0.3);
}

.no-btn {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.no-btn:hover {
    background: linear-gradient(135deg, #495057, #343a40);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(108, 117, 125, 0.4);
}

/* انیمیشن برای دکمه بله */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 76, 124, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 76, 124, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 76, 124, 0);
    }
}

.yes-btn {
    animation: pulse 2s infinite;
}

/* استایل برای موبایل */
@media (max-width: 768px) {
    .buttons-container {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .response-btn {
        min-width: 250px;
        padding: 1rem 2rem;
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: var(--bg);
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(0, 194, 255, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(51, 255, 140, 0.1) 0%, transparent 20%),
                radial-gradient(circle at 40% 80%, rgba(255, 198, 64, 0.1) 0%, transparent 20%);
            color: #fff;
            font-family: 'Vazirmatn', 'Inter', 'Segoe UI', Tahoma, sans-serif;
            overflow-x: hidden;
            position: relative;
        }
        
        .background-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
            }
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            z-index: 10;
            position: relative;
        }
        
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 2.5rem;
            border: 1px solid var(--glass-border);
            padding: 3.5rem 2.5rem;
            width: 100%;
            max-width: 900px;
            box-shadow: 
                0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 80px rgba(0, 194, 255, 0.1),
                inset 0 0 20px rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
            margin-bottom: 2.5rem;
            transition: transform 0.5s ease;
        }
        
        .glass-card:hover {
            transform: translateY(-10px);
        }
        
        .title-container {
            position: relative;
            margin-bottom: 3rem;
        }
        
        .main-title {
            font-size: var(--fs);
            font-weight: 900;
            text-align: center;
            line-height: 1.3;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff 30%, var(--clr-1) 60%, var(--clr-4));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 5px 15px rgba(0, 194, 255, 0.2);
            position: relative;
            z-index: 3;
            padding: 0 1rem;
        }
        
        .name-highlight {
            color: var(--clr-3);
            display: inline-block;
            position: relative;
        }
        
        .name-highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            right: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 198, 64, 0.3);
            border-radius: 4px;
            z-index: -1;
        }
        
        .subtitle {
            font-size: var(--fs-sm);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 1.5rem;
            line-height: 1.6;
            font-weight: 400;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .heart-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2.5rem 0;
        }
        
        .heart {
            font-size: 4.5rem;
            color: var(--clr-5);
            animation: heartbeat 1.5s infinite ease-in-out;
            filter: drop-shadow(0 0 20px rgba(255, 76, 124, 0.5));
            margin: 0 1.5rem;
        }
        
        @keyframes heartbeat {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.15);
            }
        }
        
        .aurora {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            mix-blend-mode: overlay;
            pointer-events: none;
            border-radius: 2.5rem;
            overflow: hidden;
        }
        
        .aurora__item {
            overflow: hidden;
            position: absolute;
            width: 60vw;
            height: 60vw;
            border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            filter: blur(var(--blur));
            opacity: 0.7;
        }
        
        .aurora__item:nth-of-type(1) {
            background: linear-gradient(135deg, var(--clr-1), transparent 70%);
            top: -30%;
            right: -10%;
            animation: aurora-border 8s ease-in-out infinite,
                aurora-1 18s ease-in-out infinite alternate;
        }
        
        .aurora__item:nth-of-type(2) {
            background: linear-gradient(135deg, var(--clr-3), transparent 70%);
            left: -10%;
            top: 10%;
            animation: aurora-border 8s ease-in-out infinite,
                aurora-2 22s ease-in-out infinite alternate;
        }
        
        .aurora__item:nth-of-type(3) {
            background: linear-gradient(135deg, var(--clr-2), transparent 70%);
            right: 0;
            bottom: -20%;
            animation: aurora-border 8s ease-in-out infinite,
                aurora-3 15s ease-in-out infinite alternate;
        }
        
        .aurora__item:nth-of-type(4) {
            background: linear-gradient(135deg, var(--clr-4), transparent 70%);
            left: -20%;
            bottom: -30%;
            animation: aurora-border 8s ease-in-out infinite,
                aurora-4 25s ease-in-out infinite alternate;
        }
        
        @keyframes aurora-1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, 50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 80px) rotate(240deg);
            }
        }
        
        @keyframes aurora-2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(-50px, 30px) rotate(120deg);
            }
            66% {
                transform: translate(40px, -40px) rotate(240deg);
            }
        }
        
        @keyframes aurora-3 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(40px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-30px, 50px) rotate(240deg);
            }
        }
        
        @keyframes aurora-4 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(-60px, 20px) rotate(120deg);
            }
            66% {
                transform: translate(20px, -60px) rotate(240deg);
            }
        }
        
        @keyframes aurora-border {
            0% {
                border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            }
            25% {
                border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
            }
            50% {
                border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
            }
            75% {
                border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
            }
            100% {
                border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
            }
        }
        
        .footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 2rem;
            z-index: 10;
            position: relative;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 1rem 2rem;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .social-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 194, 255, 0.2);
        }
        
        .social-link i {
            margin-left: 0.8rem;
            font-size: 1.3rem;
        }
        
        .message {
            font-size: 1.1rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            max-width: 700px;
        }
        
       
        
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @media (max-width: 768px) {
            .glass-card {
                padding: 2.5rem 1.5rem;
                border-radius: 2rem;
            }
            
            .heart {
                font-size: 3.5rem;
            }
            
            .main-title {
                font-size: clamp(2.2rem, 6vw, 4rem);
            }
        }
        
        @media (max-width: 480px) {
            .glass-card {
                padding: 2rem 1.2rem;
            }
            
            .main-title {
                font-size: clamp(1.8rem, 5vw, 3rem);
            }
            
            .heart {
                font-size: 3rem;
                margin: 0 1rem;
            }
        }
        
    