
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #faf8f5;
            color: #2d2d2d;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: all 0.3s ease;
        }

        body.ltr {
            direction: ltr;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        /* Language Toggle Button */
        .language-toggle {
            position: fixed;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #b58a42, #9e7537);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(181, 138, 66, 0.3);
            z-index: 1000;
        }

        .language-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(181, 138, 66, 0.4);
        }

        body.ltr .language-toggle {
            right: auto;
            left: 20px;
        }

        .container {
            width: 100%;
            max-width: 500px;
        }

        /* Header Section */
        .header {
            text-align: center;
            margin-bottom: 50px;
        }

        .profile-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border: 3px solid #fcd34d;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 50px;
            box-shadow: 0 10px 30px rgba(181, 138, 66, 0.2);
        }

        .brand-name {
            font-size: 3.5rem;
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .tagline {
            font-size: 1.1rem;
            color: #6b6b6b;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin: 30px 0 40px;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, #fcd34d, transparent);
        }

        .divider-icon {
            color: #b58a42;
            font-size: 1.2rem;
        }

        /* Links Section */
        .links-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 50px;
        }

        .link-card {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: white;
            border: 1px solid #f3e8d8;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .link-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(181, 138, 66, 0.2);
            border-color: #fcd34d;
        }

        .link-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .link-card:hover .link-icon {
            transform: scale(1.1);
        }

        .link-icon.website {
            background: linear-gradient(135deg, #d97706, #b45309);
        }

        .link-icon.instagram {
            background: linear-gradient(135deg, #ec4899, #be185d);
        }

        .link-icon.whatsapp {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .link-icon.tiktok {
            background: linear-gradient(135deg, #1f2937, #111827);
        }

        .link-content {
            flex: 1;
            min-width: 0;
        }

        .link-title {
            font-size: 1rem;
            font-weight: 600;
            color: #2d2d2d;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .link-card:hover .link-title {
            color: #b58a42;
        }

        .link-description {
            font-size: 0.85rem;
            color: #6b6b6b;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .link-arrow {
            color: #b58a42;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .link-card:hover .link-arrow {
            transform: translateX(-5px);
        }

        /* Footer Section */
        .footer {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #f3e8d8;
        }

        .footer-text {
            font-size: 0.85rem;
            color: #6b6b6b;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 20px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            color: #6b6b6b;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 20px;
        }

        .social-link:hover {
            color: #b58a42;
        }

        .copyright {
            font-size: 0.75rem;
            color: #6b6b6b;
            margin-top: 15px;
        }

        /* Hidden content */
        .hidden {
            display: none;
        }

        /* Responsive */
        @media (max-width: 600px) {
            .brand-name {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1rem;
            }

            .link-card {
                padding: 16px;
            }

            .link-icon {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .link-title {
                font-size: 0.95rem;
            }

            .link-description {
                font-size: 0.8rem;
            }

            .language-toggle {
                top: 10px;
                right: 10px;
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            body.ltr .language-toggle {
                right: auto;
                left: 10px;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .header {
            animation: fadeIn 0.6s ease;
        }

        .link-card {
            animation: fadeIn 0.6s ease;
        }

        .link-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .link-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .link-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .link-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        /*ايقونات */
        .instagram-icon {
            font-size: 24px;
            color: #E1306C; /* لون إنستغرام */
            transition: 0.3s ease;
            cursor: pointer;
            }

            .instagram-icon:hover {
            color: #C13584;
            transform: scale(1.1);
            }
        
            .whatsapp-icon {
            font-size: 24px;
            color: #25D366; /* لون واتساب */
            transition: 0.3s ease;
            cursor: pointer;
            }

            .whatsapp-icon:hover {
            color: #1EBE5D;
            transform: scale(1.1);
            }
            .website-icon {
            font-size: 24px;
            color: #1e90ff; /* أزرق مناسب للويب */
            transition: 0.3s ease;
            cursor: pointer;
            }

            .website-icon:hover {
            color: #0b5ed7;
            transform: scale(1.1);
            }
            .tiktok-icon {
            font-size: 24px;
            color: #000000; /* لون تيك توك */
            transition: 0.3s ease;
            cursor: pointer;
            }

            .tiktok-icon:hover {
            color: #ff0050;
            transform: scale(1.1);
            }

            .facebook-icon {
            font-size: 24px;
            color: #1877F2;
            transition: 0.3s ease;
            }

            .facebook-icon:hover {
            color: #145dbf;
            transform: scale(1.1);
            }
