 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(145deg, 
                #faf0ff 0%,    /* بنفسجي شفاف */
                #fff0f5 25%,   /* وردي شفاف */
                #f0fff4 50%,   /* أخضر شفاف */
                #f0faff 75%,   /* أزرق شفاف */
                #fff5f0 100%); /* خوخي شفاف */
            min-height: 100vh;
            padding: 30px 20px;
            position: relative;
        }

        /* طبقة خفيفة من قوس قزح */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            background: linear-gradient(90deg, 
                rgba(255, 200, 220, 0.2), 
                rgba(220, 255, 220, 0.2), 
                rgba(200, 220, 255, 0.2));
            pointer-events: none;
            z-index: 0;
        }

        /* رذاذ خفيف من الألوان */
        .color-dots {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .dot {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            filter: blur(50px);
            opacity: 0.15;
            animation: float 15s infinite alternate;
        }

        .dot1 { background: #ffb6c1; top: 10%; left: 5%; }
        .dot2 { background: #b0e0e6; bottom: 15%; right: 8%; animation-delay: 2s; }
        .dot3 { background: #f0e68c; top: 40%; right: 20%; animation-delay: 4s; }
        .dot4 { background: #dda0dd; bottom: 30%; left: 15%; animation-delay: 6s; }

        @keyframes float {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(40px, -30px) scale(1.2); }
        }

        /* هيدر صغير جداً */
        .mini-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto 30px;
            padding: 10px 25px;
            background: rgba(255,255,255,0.3);
            backdrop-filter: blur(5px);
            border-radius: 60px;
            position: relative;
            z-index: 10;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ff8a9f;
            text-shadow: 0 2px 5px rgba(255,150,200,0.2);
        }

        .logo span {
            font-size: 32px;
        }

        .mini-nav {
            display: flex;
            gap: 15px;
        }

        .mini-nav a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            transition: all 0.3s;
        }

        .mini-nav a:hover {
            background: #ffb6c1;
            color: white;
            transform: scale(1.1);
        }

        /* عنوان صغير لطيف */
        .welcome-text {
            text-align: center;
            margin: 40px 0 30px;
            position: relative;
            z-index: 10;
        }

        .welcome-text h2 {
            font-size: 36px;
            font-weight: 500;
            color: #8a7a9a;
            letter-spacing: 1px;
        }

        .welcome-text p {
            color: #a89bb5;
            font-size: 18px;
            margin-top: 8px;
        }

        /* شبكة الصور - الكروت تندمج مع الخلفية */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            padding: 10px;
        }

        /* بطاقة شفافة - تندمج مع الخلفية */
        .photo-card {
            background: rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
            animation: softRise 0.6s ease-out;
        }

        @keyframes softRise {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .photo-card:hover {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(8px);
            transform: translateY(-5px);
            border-color: rgba(255, 200, 220, 0.8);
            box-shadow: 0 12px 25px rgba(255, 150, 200, 0.1);
        }

        .photo-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: all 0.4s;
            opacity: 0.95;
        }

        .photo-card:hover .photo-image {
            transform: scale(1.02);
            opacity: 1;
        }

        .photo-info {
            padding: 15px 18px;
            background: transparent;
        }

        .baby-name {
            font-size: 22px;
            font-weight: 600;
            color: #5a4b64;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
        }

        .baby-name i {
            color: #ffb6c1;
            font-size: 18px;
            opacity: 0.8;
        }

        .baby-age {
            display: inline-block;
            padding: 4px 14px;
            background: transparent;  /* تم إزالة الخلفية الوردية */
            color: #9b8aa0;
            font-size: 13px;
            border: none;  /* تم إزالة الحدود */
        }

        /* تعليقات خفيفة */
        .comments-mini {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .comment-mini {
            background: rgba(255, 255, 255, 0.4);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 13px;
            color: #7a6b85;
            display: flex;
            align-items: center;
            gap: 4px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(2px);
        }

        .comment-mini i {
            color: #ffa5b9;
            font-size: 10px;
        }

        /* زر شفاف */
        .add-button {
            text-align: center;
            margin: 50px 0 30px;
            position: relative;
            z-index: 10;
        }

        .btn-soft {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 14px 40px;
            border-radius: 60px;
            font-size: 18px;
            color: #8a7a9a;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
        }

        .btn-soft:hover {
            background: rgba(255, 255, 255, 0.6);
            border-color: rgba(255, 200, 220, 0.6);
            transform: scale(1.02);
            color: #6b5c76;
        }

        /* فوتر خفيف */
        .soft-footer {
            text-align: center;
            padding: 30px 0 10px;
            color: #a89bb5;
            font-size: 14px;
            position: relative;
            z-index: 10;
        }

        .soft-footer i {
            color: #ffb6c1;
            margin: 0 3px;
            opacity: 0.7;
        }
