/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Tahoma', 'Arial', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow-x: hidden;
    position: relative;
    direction: rtl;
    text-align: right;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Free Badge Styles */
.free-badge {
    position: absolute;
    top: -20px;
    left: 30px;
    background: linear-gradient(45deg, #00d4aa, #00b894);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.free-text {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00d4aa, #00b894, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #dfe6e9;
    opacity: 0.9;
}

.description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0 1rem;
}

.description::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 3rem;
    color: #00d4aa;
    font-family: serif;
    opacity: 0.6;
}

.description::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    left: -5px;
    font-size: 3rem;
    color: #00d4aa;
    font-family: serif;
    opacity: 0.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: #dfe6e9;
}

.feature i {
    color: #00d4aa;
    font-size: 1.2rem;
}

.enroll-btn {
    background: linear-gradient(45deg, #00d4aa, #00b894);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.enroll-btn::before {
    content: '';
    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;
}

.enroll-btn:hover::before {
    left: 100%;
}

.enroll-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 212, 170, 0.6);
}

.enroll-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.enroll-btn i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .content {
        padding: 3rem 1.5rem;
    }
    
    .free-badge {
        top: -15px;
        left: 20px;
        width: 70px;
        height: 70px;
    }
    
    .free-text {
        font-size: 0.9rem;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .description {
        font-size: 1.1rem;
        padding: 0 0.5rem;
    }
    
    .description::before {
        right: -2px;
        font-size: 2.5rem;
    }
    
    .description::after {
        left: -2px;
        font-size: 2.5rem;
        bottom: -20px;
    }
    
    .enroll-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .features {
        gap: 0.8rem;
    }
    
    .feature {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .enroll-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .free-badge {
        top: -10px;
        left: 15px;
        width: 60px;
        height: 60px;
    }
    
    .free-text {
        font-size: 0.8rem;
    }
    
    .features {
        gap: 0.6rem;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .description {
        font-size: 1rem;
        padding: 0 0.3rem;
    }
    
    .description::before {
        right: -1px;
        font-size: 2rem;
        top: -8px;
    }
    
    .description::after {
        left: -1px;
        font-size: 2rem;
        bottom: -15px;
    }
}
