* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
}

body {
    font-family: 'Figtree', sans-serif;
    background: linear-gradient(135deg, #eee 0%, #ccc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.welcome-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

@media (max-width: 768px) {
    .welcome-card {
        grid-template-columns: 1fr;
    }
}

.left-panel {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-panel {
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.logo-container {
    margin-bottom: 40px;
}

.custom-logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.custom-logo svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo-placeholder {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-placeholder .logo-text {
    font-size: 40px;
    font-weight: bold;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.tagline {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 500;
}

.project-name {
    font-size: 32px;
    color: #1F2937;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-description {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #374151;
}

.features-list li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
}

.buttons-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3B82F6;
    border: 2px solid #3B82F6;
}

.btn-secondary:hover {
    background: #3B82F6;
    color: white;
}

.btn-icon {
    margin-right: 8px;
    font-size: 18px;
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tech-badge {
    background: #F3F4F6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: #4B5563;
    font-weight: 500;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
}

.version-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}