 :root {
            --primary: rgb(9, 164, 159); /* Əsas rəng */
            --dark-bg: #121212; /* Arxa fon */
            --light-bg: #181818; 
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --verified-color: #1DA1F2; /* Doğrulama nişanı rəngi */
            --spotify-black: #121212;
            --spotify-dark: #282828;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
        body { background-color: var(--dark-bg); color: var(--text-primary); overflow-x: hidden; }

        /* Header (Minimal saxlayırıq) */
        header { 
            padding: 16px 32px; 
            background: var(--spotify-black);
            border-bottom: 1px solid #282828;
        }
        .logo a { 
            font-size: 20px; 
            font-weight: 700; 
            text-decoration: none; 
            color: var(--primary); 
        }

        /* BANNER HİSSƏSİ */
        .profile-banner {
            position: relative;
            background: linear-gradient(to bottom, #1E1E1E 0%, #121212 100%); /* Yüngül gradient */
            padding-top: 50px; 
            padding-bottom: 150px; /* Aşağıda yerləşən məzmun üçün yer */
            display: flex;
            align-items: flex-end;
        }
        .profile-content-wrapper {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: flex-end;
            gap: 30px;
            z-index: 2;
        }
        
        /* Şəkil stili */
        .profile-picture-lg {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: -50px; /* Mətnlə üst-üstə düşmək üçün */
        }
        .profile-picture-lg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Mətn stili */
        .profile-info {
            flex-grow: 1;
        }
        .verified-text-badge {
            background: var(--spotify-dark);
            color: var(--text-primary);
            padding: 5px 15px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }
        .verified-text-badge svg {
            width: 18px;
            height: 18px;
            fill: var(--verified-color);
        }
        
        .profile-info h1 {
            font-size: 72px; /* Çox böyük şrift */
            font-weight: 900;
            color: var(--text-primary);
            line-height: 1;
            margin-bottom: 8px;
        }
        .profile-subtext {
            color: var(--text-secondary);
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        /* ƏMƏLİYYAT DÜYMƏLƏRİ */
        .profile-actions {
            display: flex;
            gap: 15px;
            padding-bottom: 20px;
        }
        .action-button {
            background: var(--text-primary);
            color: var(--spotify-black);
            border: none;
            padding: 12px 30px;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.1s;
        }
        .action-button:hover {
            transform: scale(1.05);
        }
        .more-options {
            background: none;
            color: var(--text-secondary);
            border: 1px solid var(--text-secondary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
        }


        /* ƏSAS MƏZMUN (Məqalələr və Haqqında) */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 50px 32px 80px;
            display: grid;
            grid-template-columns: 1fr 2fr; /* Sol sidebar və sağ məqalələr */
            gap: 50px;
        }
        
        .sidebar-section h2, .articles-section h2 {
            color: var(--text-primary);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            border-bottom: 1px solid #282828;
            padding-bottom: 5px;
        }
        .sidebar-section p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Məqalələr stili */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        .article-card {
            background: var(--spotify-dark);
            border-radius: 8px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: background 0.2s;
        }
        .article-card:hover {
            background: #333;
        }
        .article-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .article-card-content {
            padding: 15px;
        }
        .article-card-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }
        .article-card-content p {
            font-size: 12px;
            color: var(--text-secondary);
        }

        /* Responsivlik */
        @media (max-width: 768px) {
            .profile-picture-lg {
                width: 150px;
                height: 150px;
            }
            .profile-info h1 {
                font-size: 40px;
            }
            .main-content {
                grid-template-columns: 1fr;
            }
            .profile-content-wrapper {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .profile-info {
                text-align: center;
            }
            .profile-actions {
                justify-content: center;
            }
        }