/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Heebo', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    direction: rtl;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0520 0%, #000 100%);
}

.line {
    position: absolute;
    top: -50%;
    width: 2px;
    height: 200%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.4) 20%, 
        rgba(217, 70, 239, 0.8) 50%, 
        rgba(168, 85, 247, 0.4) 80%, 
        transparent 100%);
    animation: lineMove 4s infinite ease-in-out;
    filter: blur(1px);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

@keyframes lineMove {
    0%, 100% {
        transform: translateY(-50%);
        opacity: 0;
    }
    50% {
        transform: translateY(50%);
        opacity: 1;
    }
}

/* Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(168, 85, 247, 0.6);
    border-radius: 50%;
    animation: particleFloat 3s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: logoGlow 3s infinite ease-in-out;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(217, 70, 239, 0.9));
    }
}

/* Success Icon */
.success-icon {
    margin-bottom: 30px;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(217, 70, 239, 0.2));
    border: 3px solid #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.5),
                inset 0 0 40px rgba(168, 85, 247, 0.2);
}

.checkmark {
    width: 40px;
    height: 70px;
    border: solid #a855f7;
    border-width: 0 6px 6px 0;
    transform: rotate(45deg);
    animation: checkmarkDraw 0.8s ease-in-out;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.5),
                    inset 0 0 40px rgba(168, 85, 247, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(217, 70, 239, 0.8),
                    inset 0 0 60px rgba(217, 70, 239, 0.3);
    }
}

@keyframes checkmarkDraw {
    0% {
        height: 0;
    }
    100% {
        height: 70px;
    }
}

/* Content */
.content {
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #d946ef, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
    animation: titleGlow 2s infinite ease-in-out;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(217, 70, 239, 0.8));
    }
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #d8b4fe;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Message Box */
.message-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(217, 70, 239, 0.1));
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2),
                inset 0 0 40px rgba(168, 85, 247, 0.05);
    position: relative;
    overflow: hidden;
}

.message-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #a855f7, #d946ef, #f0abfc, #a855f7);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderGlow 3s linear infinite;
    background-size: 300% 300%;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.message-box:hover::before {
    opacity: 0.3;
}

.message-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e9d5ff;
    font-weight: 300;
}

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 60px 0 40px;
}

/* Social Section */
.social-section {
    margin: 60px 0;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 40px auto 0;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 25px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid;
    backdrop-filter: blur(10px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.social-btn:hover .btn-glow {
    left: 100%;
}

.instagram-btn {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.2), rgba(131, 58, 180, 0.2));
    border-color: #e1306c;
}

.instagram-btn:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.4), rgba(193, 53, 132, 0.4), rgba(131, 58, 180, 0.4));
    box-shadow: 0 10px 40px rgba(225, 48, 108, 0.5);
    transform: translateY(-5px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(17, 148, 81, 0.2));
    border-color: #25d366;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.4), rgba(17, 148, 81, 0.4));
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    transform: translateY(-5px);
}

.social-btn i {
    font-size: 2rem;
}

/* Footer Message */
.footer-message {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(217, 70, 239, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-message p {
    font-size: 1.4rem;
    color: #d8b4fe;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 300px;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .message-box {
        padding: 30px 20px;
    }

    .message-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .social-btn {
        padding: 20px 30px;
        font-size: 1.1rem;
    }

    .social-btn i {
        font-size: 1.5rem;
    }

    .footer-message p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .checkmark-circle {
        width: 90px;
        height: 90px;
    }

    .checkmark {
        width: 30px;
        height: 50px;
        border-width: 0 5px 5px 0;
    }
}

/* AOS Animation Overrides */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}
